mirror of
https://github.com/overte-org/overte.git
synced 2025-08-08 22:56:54 +02:00
added file headers
This commit is contained in:
parent
4ad10cb6cc
commit
23f584d9da
7 changed files with 76 additions and 1 deletions
|
@ -1,4 +1,14 @@
|
||||||
var ExportMenu = function (opts) {
|
//
|
||||||
|
// ExportMenu.js
|
||||||
|
// examples/libraries
|
||||||
|
//
|
||||||
|
// Copyright 2014 High Fidelity, Inc.
|
||||||
|
//
|
||||||
|
// Distributed under the Apache License, Version 2.0.
|
||||||
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
||||||
|
//
|
||||||
|
|
||||||
|
ExportMenu = function (opts) {
|
||||||
var self = this;
|
var self = this;
|
||||||
|
|
||||||
var windowDimensions = Controller.getViewportDimensions();
|
var windowDimensions = Controller.getViewportDimensions();
|
||||||
|
|
|
@ -1,3 +1,14 @@
|
||||||
|
//
|
||||||
|
// ModelImporter.js
|
||||||
|
// examples/libraries
|
||||||
|
//
|
||||||
|
// Copyright 2014 High Fidelity, Inc.
|
||||||
|
//
|
||||||
|
// Distributed under the Apache License, Version 2.0.
|
||||||
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
||||||
|
//
|
||||||
|
|
||||||
|
|
||||||
ModelImporter = function (opts) {
|
ModelImporter = function (opts) {
|
||||||
var self = this;
|
var self = this;
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,14 @@
|
||||||
|
//
|
||||||
|
// ToolTip.js
|
||||||
|
// examples/libraries
|
||||||
|
//
|
||||||
|
// Copyright 2014 High Fidelity, Inc.
|
||||||
|
//
|
||||||
|
// Distributed under the Apache License, Version 2.0.
|
||||||
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
||||||
|
//
|
||||||
|
|
||||||
|
|
||||||
function Tooltip() {
|
function Tooltip() {
|
||||||
this.x = 285;
|
this.x = 285;
|
||||||
this.y = 115;
|
this.y = 115;
|
||||||
|
|
|
@ -1,3 +1,13 @@
|
||||||
|
//
|
||||||
|
// dataViewHelpers.js
|
||||||
|
// examples/libraries
|
||||||
|
//
|
||||||
|
// Copyright 2014 High Fidelity, Inc.
|
||||||
|
//
|
||||||
|
// Distributed under the Apache License, Version 2.0.
|
||||||
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
||||||
|
//
|
||||||
|
|
||||||
if (typeof DataView.prototype.indexOf !== "function") {
|
if (typeof DataView.prototype.indexOf !== "function") {
|
||||||
DataView.prototype.indexOf = function (searchString, position) {
|
DataView.prototype.indexOf = function (searchString, position) {
|
||||||
var searchLength = searchString.length,
|
var searchLength = searchString.length,
|
||||||
|
|
|
@ -1,3 +1,14 @@
|
||||||
|
//
|
||||||
|
// httpMultiPart.js
|
||||||
|
// examples/libraries
|
||||||
|
//
|
||||||
|
// Copyright 2014 High Fidelity, Inc.
|
||||||
|
//
|
||||||
|
// Distributed under the Apache License, Version 2.0.
|
||||||
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
||||||
|
//
|
||||||
|
|
||||||
|
|
||||||
httpMultiPart = (function () {
|
httpMultiPart = (function () {
|
||||||
var that = {},
|
var that = {},
|
||||||
parts,
|
parts,
|
||||||
|
|
|
@ -1,3 +1,14 @@
|
||||||
|
//
|
||||||
|
// modelUploader.js
|
||||||
|
// examples/libraries
|
||||||
|
//
|
||||||
|
// Copyright 2014 High Fidelity, Inc.
|
||||||
|
//
|
||||||
|
// Distributed under the Apache License, Version 2.0.
|
||||||
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
||||||
|
//
|
||||||
|
|
||||||
|
|
||||||
modelUploader = (function () {
|
modelUploader = (function () {
|
||||||
var that = {},
|
var that = {},
|
||||||
modelFile,
|
modelFile,
|
||||||
|
|
|
@ -1,3 +1,14 @@
|
||||||
|
//
|
||||||
|
// progressDialog.js
|
||||||
|
// examples/libraries
|
||||||
|
//
|
||||||
|
// Copyright 2014 High Fidelity, Inc.
|
||||||
|
//
|
||||||
|
// Distributed under the Apache License, Version 2.0.
|
||||||
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
||||||
|
//
|
||||||
|
|
||||||
|
|
||||||
progressDialog = (function () {
|
progressDialog = (function () {
|
||||||
var that = {},
|
var that = {},
|
||||||
progressBackground,
|
progressBackground,
|
||||||
|
|
Loading…
Reference in a new issue