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 */ /*jshint unused: false */
/*global window, $, document, _ */ /*global window, $, document, _, arangoHelper, frontendConfig */
(function() { (function() {
"use strict"; "use strict";

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -1,6 +1,6 @@
/*jshint browser: true */ /*jshint browser: true */
/*jshint unused: false */ /*jshint unused: false */
/*global Backbone, document, EJS, _, arangoHelper, window, setTimeout, $, templateEngine*/ /*global Backbone, document, EJS, _, arangoHelper, window, setTimeout, $, templateEngine, frontendConfig*/
(function() { (function() {
"use strict"; "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/collections -name "*.js"` \
`find ./js/apps/system/_admin/aardvark/APP/frontend/js/routers -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/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/specs -name "*.js"` \
`find ./js/apps/system/_admin/aardvark/APP/test/clusterSpecs -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/server.js \
./js/server/upgrade-database.js \ ./js/server/upgrade-database.js \
\ \
./js/apps/system/_admin/aardvark/APP/frontend/js/shell/browser.js \
" "
else else
JAVASCRIPT_JSLINT="$@" JAVASCRIPT_JSLINT="$@"