mirror of
https://github.com/nasa/openmct.git
synced 2025-01-03 03:46:42 +00:00
[Build] Remove use strict, global
Remove usages of use strict and global declarations that are no longer necessary with JSHint configuration, from files added/changed since #724
This commit is contained in:
parent
5e44bfc6c7
commit
5088453712
@ -19,10 +19,8 @@
|
|||||||
* this source code distribution or the Licensing information page available
|
* this source code distribution or the Licensing information page available
|
||||||
* at runtime from the About dialog for additional information.
|
* at runtime from the About dialog for additional information.
|
||||||
*****************************************************************************/
|
*****************************************************************************/
|
||||||
/*global define*/
|
|
||||||
|
|
||||||
define([], function () {
|
define([], function () {
|
||||||
"use strict";
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Policy suppressing links when the linked-to domain object is in
|
* Policy suppressing links when the linked-to domain object is in
|
||||||
|
@ -19,13 +19,11 @@
|
|||||||
* this source code distribution or the Licensing information page available
|
* this source code distribution or the Licensing information page available
|
||||||
* at runtime from the About dialog for additional information.
|
* at runtime from the About dialog for additional information.
|
||||||
*****************************************************************************/
|
*****************************************************************************/
|
||||||
/*global define*/
|
|
||||||
|
|
||||||
define([
|
define([
|
||||||
'zepto',
|
'zepto',
|
||||||
'text!../../res/templates/tree/tree-label.html'
|
'text!../../res/templates/tree/tree-label.html'
|
||||||
], function ($, labelTemplate) {
|
], function ($, labelTemplate) {
|
||||||
'use strict';
|
|
||||||
|
|
||||||
function TreeLabelView(gestureService) {
|
function TreeLabelView(gestureService) {
|
||||||
this.el = $(labelTemplate);
|
this.el = $(labelTemplate);
|
||||||
|
@ -19,7 +19,6 @@
|
|||||||
* this source code distribution or the Licensing information page available
|
* this source code distribution or the Licensing information page available
|
||||||
* at runtime from the About dialog for additional information.
|
* at runtime from the About dialog for additional information.
|
||||||
*****************************************************************************/
|
*****************************************************************************/
|
||||||
/*global define*/
|
|
||||||
|
|
||||||
define([
|
define([
|
||||||
'zepto',
|
'zepto',
|
||||||
@ -27,7 +26,6 @@ define([
|
|||||||
'./ToggleView',
|
'./ToggleView',
|
||||||
'./TreeLabelView'
|
'./TreeLabelView'
|
||||||
], function ($, nodeTemplate, ToggleView, TreeLabelView) {
|
], function ($, nodeTemplate, ToggleView, TreeLabelView) {
|
||||||
'use strict';
|
|
||||||
|
|
||||||
function TreeNodeView(gestureService, subtreeFactory, selectFn) {
|
function TreeNodeView(gestureService, subtreeFactory, selectFn) {
|
||||||
this.li = $('<li>');
|
this.li = $('<li>');
|
||||||
|
@ -19,14 +19,12 @@
|
|||||||
* this source code distribution or the Licensing information page available
|
* this source code distribution or the Licensing information page available
|
||||||
* at runtime from the About dialog for additional information.
|
* at runtime from the About dialog for additional information.
|
||||||
*****************************************************************************/
|
*****************************************************************************/
|
||||||
/*global define*/
|
|
||||||
|
|
||||||
define([
|
define([
|
||||||
'zepto',
|
'zepto',
|
||||||
'./TreeNodeView',
|
'./TreeNodeView',
|
||||||
'text!../../res/templates/tree/wait-node.html'
|
'text!../../res/templates/tree/wait-node.html'
|
||||||
], function ($, TreeNodeView, spinnerTemplate) {
|
], function ($, TreeNodeView, spinnerTemplate) {
|
||||||
'use strict';
|
|
||||||
|
|
||||||
function TreeView(gestureService, selectFn) {
|
function TreeView(gestureService, selectFn) {
|
||||||
this.ul = $('<ul class="tree"></ul>');
|
this.ul = $('<ul class="tree"></ul>');
|
||||||
|
@ -19,7 +19,6 @@
|
|||||||
* this source code distribution or the Licensing information page available
|
* this source code distribution or the Licensing information page available
|
||||||
* at runtime from the About dialog for additional information.
|
* at runtime from the About dialog for additional information.
|
||||||
*****************************************************************************/
|
*****************************************************************************/
|
||||||
/*global define,describe,beforeEach,jasmine,it,expect*/
|
|
||||||
|
|
||||||
define([
|
define([
|
||||||
'../../src/directives/MCTTree'
|
'../../src/directives/MCTTree'
|
||||||
|
@ -19,13 +19,11 @@
|
|||||||
* this source code distribution or the Licensing information page available
|
* this source code distribution or the Licensing information page available
|
||||||
* at runtime from the About dialog for additional information.
|
* at runtime from the About dialog for additional information.
|
||||||
*****************************************************************************/
|
*****************************************************************************/
|
||||||
/*global define,describe,beforeEach,jasmine,it,expect*/
|
|
||||||
|
|
||||||
define([
|
define([
|
||||||
'../../src/ui/TreeView',
|
'../../src/ui/TreeView',
|
||||||
'zepto'
|
'zepto'
|
||||||
], function (TreeView, $) {
|
], function (TreeView, $) {
|
||||||
'use strict';
|
|
||||||
|
|
||||||
describe("TreeView", function () {
|
describe("TreeView", function () {
|
||||||
var mockGestureService,
|
var mockGestureService,
|
||||||
|
@ -19,10 +19,8 @@
|
|||||||
* this source code distribution or the Licensing information page available
|
* this source code distribution or the Licensing information page available
|
||||||
* at runtime from the About dialog for additional information.
|
* at runtime from the About dialog for additional information.
|
||||||
*****************************************************************************/
|
*****************************************************************************/
|
||||||
/*global define*/
|
|
||||||
|
|
||||||
define([], function () {
|
define([], function () {
|
||||||
'use strict';
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Provides a cache for domain object models which exist in memory,
|
* Provides a cache for domain object models which exist in memory,
|
||||||
|
@ -19,10 +19,8 @@
|
|||||||
* this source code distribution or the Licensing information page available
|
* this source code distribution or the Licensing information page available
|
||||||
* at runtime from the About dialog for additional information.
|
* at runtime from the About dialog for additional information.
|
||||||
*****************************************************************************/
|
*****************************************************************************/
|
||||||
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
|
|
||||||
|
|
||||||
define(['../../src/models/ModelCacheService'], function (ModelCacheService) {
|
define(['../../src/models/ModelCacheService'], function (ModelCacheService) {
|
||||||
'use strict';
|
|
||||||
describe("ModelCacheService", function () {
|
describe("ModelCacheService", function () {
|
||||||
var testIds,
|
var testIds,
|
||||||
testModels,
|
testModels,
|
||||||
|
@ -20,9 +20,7 @@
|
|||||||
* at runtime from the About dialog for additional information.
|
* at runtime from the About dialog for additional information.
|
||||||
*****************************************************************************/
|
*****************************************************************************/
|
||||||
|
|
||||||
/*global define */
|
|
||||||
define([], function () {
|
define([], function () {
|
||||||
'use strict';
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Disallow duplication when the object to be duplicated is not
|
* Disallow duplication when the object to be duplicated is not
|
||||||
|
@ -20,9 +20,7 @@
|
|||||||
* at runtime from the About dialog for additional information.
|
* at runtime from the About dialog for additional information.
|
||||||
*****************************************************************************/
|
*****************************************************************************/
|
||||||
|
|
||||||
/*global define */
|
|
||||||
define([], function () {
|
define([], function () {
|
||||||
'use strict';
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Disallow moves when either the parent or the child are not
|
* Disallow moves when either the parent or the child are not
|
||||||
|
@ -19,7 +19,6 @@
|
|||||||
* this source code distribution or the Licensing information page available
|
* this source code distribution or the Licensing information page available
|
||||||
* at runtime from the About dialog for additional information.
|
* at runtime from the About dialog for additional information.
|
||||||
*****************************************************************************/
|
*****************************************************************************/
|
||||||
/*global spyOn*/
|
|
||||||
define(
|
define(
|
||||||
function () {
|
function () {
|
||||||
|
|
||||||
|
@ -20,7 +20,6 @@
|
|||||||
* at runtime from the About dialog for additional information.
|
* at runtime from the About dialog for additional information.
|
||||||
*****************************************************************************/
|
*****************************************************************************/
|
||||||
|
|
||||||
/*global jasmine*/
|
|
||||||
define(
|
define(
|
||||||
function () {
|
function () {
|
||||||
|
|
||||||
|
@ -20,12 +20,10 @@
|
|||||||
* at runtime from the About dialog for additional information.
|
* at runtime from the About dialog for additional information.
|
||||||
*****************************************************************************/
|
*****************************************************************************/
|
||||||
|
|
||||||
/*global define,describe,beforeEach,it,jasmine,expect,spyOn */
|
|
||||||
define([
|
define([
|
||||||
'../../src/policies/CopyPolicy',
|
'../../src/policies/CopyPolicy',
|
||||||
'../DomainObjectFactory'
|
'../DomainObjectFactory'
|
||||||
], function (CopyPolicy, domainObjectFactory) {
|
], function (CopyPolicy, domainObjectFactory) {
|
||||||
'use strict';
|
|
||||||
|
|
||||||
describe("CopyPolicy", function () {
|
describe("CopyPolicy", function () {
|
||||||
var testMetadata,
|
var testMetadata,
|
||||||
|
@ -20,12 +20,10 @@
|
|||||||
* at runtime from the About dialog for additional information.
|
* at runtime from the About dialog for additional information.
|
||||||
*****************************************************************************/
|
*****************************************************************************/
|
||||||
|
|
||||||
/*global define,describe,beforeEach,it,jasmine,expect,spyOn */
|
|
||||||
define([
|
define([
|
||||||
'../../src/policies/MovePolicy',
|
'../../src/policies/MovePolicy',
|
||||||
'../DomainObjectFactory'
|
'../DomainObjectFactory'
|
||||||
], function (MovePolicy, domainObjectFactory) {
|
], function (MovePolicy, domainObjectFactory) {
|
||||||
'use strict';
|
|
||||||
|
|
||||||
describe("MovePolicy", function () {
|
describe("MovePolicy", function () {
|
||||||
var testMetadata,
|
var testMetadata,
|
||||||
|
@ -20,7 +20,6 @@
|
|||||||
* at runtime from the About dialog for additional information.
|
* at runtime from the About dialog for additional information.
|
||||||
*****************************************************************************/
|
*****************************************************************************/
|
||||||
|
|
||||||
/*global jasmine*/
|
|
||||||
define(
|
define(
|
||||||
function () {
|
function () {
|
||||||
|
|
||||||
|
@ -20,7 +20,6 @@
|
|||||||
* at runtime from the About dialog for additional information.
|
* at runtime from the About dialog for additional information.
|
||||||
*****************************************************************************/
|
*****************************************************************************/
|
||||||
|
|
||||||
/*global jasmine*/
|
|
||||||
define(
|
define(
|
||||||
[
|
[
|
||||||
'../ControlledPromise'
|
'../ControlledPromise'
|
||||||
|
@ -20,7 +20,6 @@
|
|||||||
* at runtime from the About dialog for additional information.
|
* at runtime from the About dialog for additional information.
|
||||||
*****************************************************************************/
|
*****************************************************************************/
|
||||||
|
|
||||||
/*global jasmine*/
|
|
||||||
define(
|
define(
|
||||||
function () {
|
function () {
|
||||||
|
|
||||||
|
@ -20,7 +20,6 @@
|
|||||||
* at runtime from the About dialog for additional information.
|
* at runtime from the About dialog for additional information.
|
||||||
*****************************************************************************/
|
*****************************************************************************/
|
||||||
|
|
||||||
/*global spyOn*/
|
|
||||||
define(
|
define(
|
||||||
["../src/TimeConductor"],
|
["../src/TimeConductor"],
|
||||||
function (TimeConductor) {
|
function (TimeConductor) {
|
||||||
|
@ -19,14 +19,12 @@
|
|||||||
* this source code distribution or the Licensing information page available
|
* this source code distribution or the Licensing information page available
|
||||||
* at runtime from the About dialog for additional information.
|
* at runtime from the About dialog for additional information.
|
||||||
*****************************************************************************/
|
*****************************************************************************/
|
||||||
/*global define*/
|
|
||||||
|
|
||||||
define(
|
define(
|
||||||
[
|
[
|
||||||
'./TelemetryTableController'
|
'./TelemetryTableController'
|
||||||
],
|
],
|
||||||
function (TableController) {
|
function (TableController) {
|
||||||
"use strict";
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Extends TelemetryTableController and adds real-time streaming
|
* Extends TelemetryTableController and adds real-time streaming
|
||||||
|
@ -19,14 +19,12 @@
|
|||||||
* this source code distribution or the Licensing information page available
|
* this source code distribution or the Licensing information page available
|
||||||
* at runtime from the About dialog for additional information.
|
* at runtime from the About dialog for additional information.
|
||||||
*****************************************************************************/
|
*****************************************************************************/
|
||||||
/*global define,describe,it,expect,beforeEach,waitsFor,jasmine,xit*/
|
|
||||||
|
|
||||||
define(
|
define(
|
||||||
[
|
[
|
||||||
"../../src/controllers/RTTelemetryTableController"
|
"../../src/controllers/RTTelemetryTableController"
|
||||||
],
|
],
|
||||||
function (TableController) {
|
function (TableController) {
|
||||||
"use strict";
|
|
||||||
|
|
||||||
describe('The real-time table controller', function () {
|
describe('The real-time table controller', function () {
|
||||||
var mockScope,
|
var mockScope,
|
||||||
|
@ -19,10 +19,8 @@
|
|||||||
* this source code distribution or the Licensing information page available
|
* this source code distribution or the Licensing information page available
|
||||||
* at runtime from the About dialog for additional information.
|
* at runtime from the About dialog for additional information.
|
||||||
*****************************************************************************/
|
*****************************************************************************/
|
||||||
/*global define*/
|
|
||||||
|
|
||||||
define([], function () {
|
define([], function () {
|
||||||
"use strict";
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A column containing references to other objects contained
|
* A column containing references to other objects contained
|
||||||
|
@ -19,10 +19,8 @@
|
|||||||
* this source code distribution or the Licensing information page available
|
* this source code distribution or the Licensing information page available
|
||||||
* at runtime from the About dialog for additional information.
|
* at runtime from the About dialog for additional information.
|
||||||
*****************************************************************************/
|
*****************************************************************************/
|
||||||
/*global define*/
|
|
||||||
|
|
||||||
define(["./ExportTimelineAsCSVTask"], function (ExportTimelineAsCSVTask) {
|
define(["./ExportTimelineAsCSVTask"], function (ExportTimelineAsCSVTask) {
|
||||||
'use strict';
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Implements the "Export Timeline as CSV" action.
|
* Implements the "Export Timeline as CSV" action.
|
||||||
|
@ -19,7 +19,6 @@
|
|||||||
* this source code distribution or the Licensing information page available
|
* this source code distribution or the Licensing information page available
|
||||||
* at runtime from the About dialog for additional information.
|
* at runtime from the About dialog for additional information.
|
||||||
*****************************************************************************/
|
*****************************************************************************/
|
||||||
/*global define,Promise*/
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Module defining ExportTimelineAsCSVTask. Created by vwoeltje on 2/8/16.
|
* Module defining ExportTimelineAsCSVTask. Created by vwoeltje on 2/8/16.
|
||||||
@ -28,7 +27,6 @@ define([
|
|||||||
"./TimelineTraverser",
|
"./TimelineTraverser",
|
||||||
"./TimelineColumnizer"
|
"./TimelineColumnizer"
|
||||||
], function (TimelineTraverser, TimelineColumnizer) {
|
], function (TimelineTraverser, TimelineColumnizer) {
|
||||||
"use strict";
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Runs (and coordinates) the preparation and export of CSV data
|
* Runs (and coordinates) the preparation and export of CSV data
|
||||||
|
@ -19,10 +19,8 @@
|
|||||||
* this source code distribution or the Licensing information page available
|
* this source code distribution or the Licensing information page available
|
||||||
* at runtime from the About dialog for additional information.
|
* at runtime from the About dialog for additional information.
|
||||||
*****************************************************************************/
|
*****************************************************************************/
|
||||||
/*global define*/
|
|
||||||
|
|
||||||
define([], function () {
|
define([], function () {
|
||||||
"use strict";
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A column showing domain object identifiers.
|
* A column showing domain object identifiers.
|
||||||
|
@ -19,10 +19,8 @@
|
|||||||
* this source code distribution or the Licensing information page available
|
* this source code distribution or the Licensing information page available
|
||||||
* at runtime from the About dialog for additional information.
|
* at runtime from the About dialog for additional information.
|
||||||
*****************************************************************************/
|
*****************************************************************************/
|
||||||
/*global define*/
|
|
||||||
|
|
||||||
define([], function () {
|
define([], function () {
|
||||||
"use strict";
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A column reflecting properties from domain object metadata.
|
* A column reflecting properties from domain object metadata.
|
||||||
|
@ -19,10 +19,8 @@
|
|||||||
* this source code distribution or the Licensing information page available
|
* this source code distribution or the Licensing information page available
|
||||||
* at runtime from the About dialog for additional information.
|
* at runtime from the About dialog for additional information.
|
||||||
*****************************************************************************/
|
*****************************************************************************/
|
||||||
/*global define*/
|
|
||||||
|
|
||||||
define([], function () {
|
define([], function () {
|
||||||
"use strict";
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A column showing relationships to activity modes.
|
* A column showing relationships to activity modes.
|
||||||
|
@ -19,7 +19,6 @@
|
|||||||
* this source code distribution or the Licensing information page available
|
* this source code distribution or the Licensing information page available
|
||||||
* at runtime from the About dialog for additional information.
|
* at runtime from the About dialog for additional information.
|
||||||
*****************************************************************************/
|
*****************************************************************************/
|
||||||
/*global define,Promise*/
|
|
||||||
|
|
||||||
define([
|
define([
|
||||||
"./IdColumn",
|
"./IdColumn",
|
||||||
@ -34,7 +33,6 @@ define([
|
|||||||
MetadataColumn,
|
MetadataColumn,
|
||||||
TimespanColumn
|
TimespanColumn
|
||||||
) {
|
) {
|
||||||
'use strict';
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A description of how to populate a given column within a
|
* A description of how to populate a given column within a
|
||||||
|
@ -19,10 +19,8 @@
|
|||||||
* this source code distribution or the Licensing information page available
|
* this source code distribution or the Licensing information page available
|
||||||
* at runtime from the About dialog for additional information.
|
* at runtime from the About dialog for additional information.
|
||||||
*****************************************************************************/
|
*****************************************************************************/
|
||||||
/*global define,Promise*/
|
|
||||||
|
|
||||||
define([], function () {
|
define([], function () {
|
||||||
"use strict";
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Builds a list of domain objects which should be included
|
* Builds a list of domain objects which should be included
|
||||||
|
@ -19,10 +19,8 @@
|
|||||||
* this source code distribution or the Licensing information page available
|
* this source code distribution or the Licensing information page available
|
||||||
* at runtime from the About dialog for additional information.
|
* at runtime from the About dialog for additional information.
|
||||||
*****************************************************************************/
|
*****************************************************************************/
|
||||||
/*global define*/
|
|
||||||
|
|
||||||
define(['../TimelineFormatter'], function (TimelineFormatter) {
|
define(['../TimelineFormatter'], function (TimelineFormatter) {
|
||||||
"use strict";
|
|
||||||
|
|
||||||
var FORMATTER = new TimelineFormatter();
|
var FORMATTER = new TimelineFormatter();
|
||||||
|
|
||||||
|
@ -19,7 +19,6 @@
|
|||||||
* this source code distribution or the Licensing information page available
|
* this source code distribution or the Licensing information page available
|
||||||
* at runtime from the About dialog for additional information.
|
* at runtime from the About dialog for additional information.
|
||||||
*****************************************************************************/
|
*****************************************************************************/
|
||||||
/*global define,describe,it,expect,beforeEach,waitsFor,jasmine,window,afterEach*/
|
|
||||||
|
|
||||||
define(
|
define(
|
||||||
['../../src/actions/CompositionColumn'],
|
['../../src/actions/CompositionColumn'],
|
||||||
|
@ -19,7 +19,6 @@
|
|||||||
* this source code distribution or the Licensing information page available
|
* this source code distribution or the Licensing information page available
|
||||||
* at runtime from the About dialog for additional information.
|
* at runtime from the About dialog for additional information.
|
||||||
*****************************************************************************/
|
*****************************************************************************/
|
||||||
/*global define,describe,it,expect,beforeEach,waitsFor,jasmine,window,afterEach*/
|
|
||||||
|
|
||||||
define(
|
define(
|
||||||
['../../src/actions/ExportTimelineAsCSVAction'],
|
['../../src/actions/ExportTimelineAsCSVAction'],
|
||||||
|
@ -19,12 +19,10 @@
|
|||||||
* this source code distribution or the Licensing information page available
|
* this source code distribution or the Licensing information page available
|
||||||
* at runtime from the About dialog for additional information.
|
* at runtime from the About dialog for additional information.
|
||||||
*****************************************************************************/
|
*****************************************************************************/
|
||||||
/*global define,describe,it,expect,beforeEach,waitsFor,jasmine,window,afterEach*/
|
|
||||||
|
|
||||||
define(
|
define(
|
||||||
['../../src/actions/ExportTimelineAsCSVTask'],
|
['../../src/actions/ExportTimelineAsCSVTask'],
|
||||||
function (ExportTimelineAsCSVTask) {
|
function (ExportTimelineAsCSVTask) {
|
||||||
'use strict';
|
|
||||||
|
|
||||||
// Note that most responsibility is delegated to helper
|
// Note that most responsibility is delegated to helper
|
||||||
// classes, so testing here is minimal.
|
// classes, so testing here is minimal.
|
||||||
|
@ -19,7 +19,6 @@
|
|||||||
* this source code distribution or the Licensing information page available
|
* this source code distribution or the Licensing information page available
|
||||||
* at runtime from the About dialog for additional information.
|
* at runtime from the About dialog for additional information.
|
||||||
*****************************************************************************/
|
*****************************************************************************/
|
||||||
/*global define,describe,it,expect,beforeEach,waitsFor,jasmine,window,afterEach*/
|
|
||||||
|
|
||||||
define(
|
define(
|
||||||
['../../src/actions/IdColumn'],
|
['../../src/actions/IdColumn'],
|
||||||
|
@ -19,7 +19,6 @@
|
|||||||
* this source code distribution or the Licensing information page available
|
* this source code distribution or the Licensing information page available
|
||||||
* at runtime from the About dialog for additional information.
|
* at runtime from the About dialog for additional information.
|
||||||
*****************************************************************************/
|
*****************************************************************************/
|
||||||
/*global define,describe,it,expect,beforeEach,waitsFor,jasmine,window,afterEach*/
|
|
||||||
|
|
||||||
define(
|
define(
|
||||||
['../../src/actions/MetadataColumn'],
|
['../../src/actions/MetadataColumn'],
|
||||||
|
@ -19,7 +19,6 @@
|
|||||||
* this source code distribution or the Licensing information page available
|
* this source code distribution or the Licensing information page available
|
||||||
* at runtime from the About dialog for additional information.
|
* at runtime from the About dialog for additional information.
|
||||||
*****************************************************************************/
|
*****************************************************************************/
|
||||||
/*global define,describe,it,expect,beforeEach,waitsFor,jasmine,window,afterEach*/
|
|
||||||
|
|
||||||
define(
|
define(
|
||||||
['../../src/actions/ModeColumn'],
|
['../../src/actions/ModeColumn'],
|
||||||
|
@ -19,7 +19,6 @@
|
|||||||
* this source code distribution or the Licensing information page available
|
* this source code distribution or the Licensing information page available
|
||||||
* at runtime from the About dialog for additional information.
|
* at runtime from the About dialog for additional information.
|
||||||
*****************************************************************************/
|
*****************************************************************************/
|
||||||
/*global define,describe,it,expect,beforeEach,waitsFor,jasmine,window,afterEach*/
|
|
||||||
|
|
||||||
define(
|
define(
|
||||||
['../../src/actions/TimelineColumnizer'],
|
['../../src/actions/TimelineColumnizer'],
|
||||||
|
@ -19,12 +19,10 @@
|
|||||||
* this source code distribution or the Licensing information page available
|
* this source code distribution or the Licensing information page available
|
||||||
* at runtime from the About dialog for additional information.
|
* at runtime from the About dialog for additional information.
|
||||||
*****************************************************************************/
|
*****************************************************************************/
|
||||||
/*global define,describe,it,expect,beforeEach,waitsFor,jasmine,window,afterEach*/
|
|
||||||
|
|
||||||
define([
|
define([
|
||||||
"../../src/actions/TimelineTraverser"
|
"../../src/actions/TimelineTraverser"
|
||||||
], function (TimelineTraverser) {
|
], function (TimelineTraverser) {
|
||||||
'use strict';
|
|
||||||
|
|
||||||
describe("TimelineTraverser", function () {
|
describe("TimelineTraverser", function () {
|
||||||
var testModels,
|
var testModels,
|
||||||
|
@ -19,7 +19,6 @@
|
|||||||
* this source code distribution or the Licensing information page available
|
* this source code distribution or the Licensing information page available
|
||||||
* at runtime from the About dialog for additional information.
|
* at runtime from the About dialog for additional information.
|
||||||
*****************************************************************************/
|
*****************************************************************************/
|
||||||
/*global define,describe,it,expect,beforeEach,waitsFor,jasmine,window,afterEach*/
|
|
||||||
|
|
||||||
define(
|
define(
|
||||||
['../../src/actions/TimespanColumn', '../../src/TimelineFormatter'],
|
['../../src/actions/TimespanColumn', '../../src/TimelineFormatter'],
|
||||||
|
@ -20,7 +20,6 @@
|
|||||||
* at runtime from the About dialog for additional information.
|
* at runtime from the About dialog for additional information.
|
||||||
*****************************************************************************/
|
*****************************************************************************/
|
||||||
|
|
||||||
/*global window,requirejs*/
|
|
||||||
|
|
||||||
define([
|
define([
|
||||||
'require',
|
'require',
|
||||||
|
@ -20,7 +20,6 @@
|
|||||||
* at runtime from the About dialog for additional information.
|
* at runtime from the About dialog for additional information.
|
||||||
*****************************************************************************/
|
*****************************************************************************/
|
||||||
|
|
||||||
/*global window,requirejs*/
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Implements the framework layer, which handles the loading of bundles
|
* Implements the framework layer, which handles the loading of bundles
|
||||||
|
@ -20,7 +20,6 @@
|
|||||||
* at runtime from the About dialog for additional information.
|
* at runtime from the About dialog for additional information.
|
||||||
*****************************************************************************/
|
*****************************************************************************/
|
||||||
|
|
||||||
/*global self*/
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Module defining GenericSearchWorker. Created by shale on 07/21/2015.
|
* Module defining GenericSearchWorker. Created by shale on 07/21/2015.
|
||||||
|
@ -20,7 +20,6 @@
|
|||||||
* at runtime from the About dialog for additional information.
|
* at runtime from the About dialog for additional information.
|
||||||
*****************************************************************************/
|
*****************************************************************************/
|
||||||
|
|
||||||
/*global require*/
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* SearchSpec. Created by shale on 07/31/2015.
|
* SearchSpec. Created by shale on 07/31/2015.
|
||||||
|
Loading…
Reference in New Issue
Block a user