1
0
Fork 0
This commit is contained in:
Jan Steemann 2016-05-18 15:11:46 +02:00
parent 7a21af3cc3
commit 0064e25bc2
13 changed files with 12 additions and 14 deletions

View File

@ -1,5 +1,5 @@
/*jshint unused: false */
/*global window, $, document, _ */
/*global window, $, document, _, arangoHelper, frontendConfig */
(function() {
"use strict";

View File

@ -1,6 +1,6 @@
/*jshint browser: true */
/*jshint unused: false */
/*global window, $, _, databaseUrl */
/*global window, $, _, databaseUrl, arangoHelper */
(function () {
"use strict";

View File

@ -1,6 +1,6 @@
/*jshint browser: true */
/*jshint strict: false, unused: false */
/*global window, Backbone, $,_, window */
/*global window, Backbone, $,_, window, frontendConfig */
window.ArangoUsers = Backbone.Collection.extend({
model: window.Users,

View File

@ -1,6 +1,6 @@
/*jshint browser: true */
/*jshint unused: false */
/*global window, Backbone, $, arangoHelper */
/*global window, Backbone, $, arangoHelper, frontendConfig */
(function () {
"use strict";

View File

@ -1,6 +1,6 @@
/*jshint browser: true */
/*jshint unused: false */
/*global window, Backbone, $ */
/*global window, Backbone, $, frontendConfig */
(function() {
"use strict";
window.QueryManagementActive = Backbone.Collection.extend({

View File

@ -1,4 +1,4 @@
/*global window, Backbone */
/*global window, Backbone, arangoHelper */
window.DatabaseModel = Backbone.Model.extend({

View File

@ -1,4 +1,4 @@
/*global window, Backbone */
/*global window, Backbone, arangoHelper */
(function () {
'use strict';
window.ArangoQuery = Backbone.Model.extend({

View File

@ -1,5 +1,5 @@
/*jshint strict: false */
/*global Backbone, $, window */
/*global Backbone, $, window, arangoHelper */
window.Users = Backbone.Model.extend({
defaults: {
user: "",

View File

@ -1,4 +1,4 @@
/*global Backbone, window */
/*global Backbone, window, arangoHelper */
(function() {
"use strict";

View File

@ -1,4 +1,4 @@
/*global window, Backbone, $ */
/*global window, Backbone, $, arangoHelper */
(function() {
"use strict";

View File

@ -1,5 +1,5 @@
/*jshint unused: false */
/*global $, window, navigator, _*/
/*global $, window, navigator, _, arangoHelper*/
(function() {
"use strict";

View File

@ -1,6 +1,6 @@
/*jshint browser: true */
/*jshint unused: false */
/*global Backbone, document, EJS, _, arangoHelper, window, setTimeout, $, templateEngine*/
/*global Backbone, document, EJS, _, arangoHelper, window, setTimeout, $, templateEngine, frontendConfig*/
(function() {
"use strict";

View File

@ -21,7 +21,6 @@ if [ "x$@" == "x" ] ; then
`find ./js/apps/system/_admin/aardvark/APP/frontend/js/collections -name "*.js"` \
`find ./js/apps/system/_admin/aardvark/APP/frontend/js/routers -name "*.js"` \
`find ./js/apps/system/_admin/aardvark/APP/frontend/js/arango -name "*.js"` \
`find ./js/apps/system/_admin/aardvark/APP/frontend/js/shell -name "*.js"` \
`find ./js/apps/system/_admin/aardvark/APP/test/specs -name "*.js"` \
`find ./js/apps/system/_admin/aardvark/APP/test/clusterSpecs -name "*.js"` \
\
@ -32,7 +31,6 @@ if [ "x$@" == "x" ] ; then
./js/server/server.js \
./js/server/upgrade-database.js \
\
./js/apps/system/_admin/aardvark/APP/frontend/js/shell/browser.js \
"
else
JAVASCRIPT_JSLINT="$@"