mirror of https://gitee.com/bigwinds/arangodb
added missing karma config entries
This commit is contained in:
parent
2caa3b7a60
commit
342c8f00d8
|
@ -1,5 +1,5 @@
|
|||
/*jslint indent: 2, nomen: true, maxlen: 100, vars: true, white: true, plusplus: true, stupid: true*/
|
||||
/*global require, exports, Backbone, window, arangoCollectionModel, $, arangoHelper, data, _ */
|
||||
/*global require, exports, Backbone, window, ArangoQuery, $, data, _ */
|
||||
(function() {
|
||||
"use strict";
|
||||
|
||||
|
@ -8,7 +8,6 @@
|
|||
initialize: function(models, options) {
|
||||
this.fetch();
|
||||
|
||||
options || (options = {});
|
||||
if (options.activeUser) {
|
||||
this.activeUser = options.activeUser;
|
||||
}
|
||||
|
|
|
@ -86,7 +86,6 @@
|
|||
userCollection: this.userCollection
|
||||
});
|
||||
|
||||
console.log(this.userCollection.activeUser);
|
||||
this.queryCollection = new window.ArangoQueries([],{
|
||||
activeUser: self.userCollection.activeUser
|
||||
});
|
||||
|
|
|
@ -284,13 +284,6 @@
|
|||
importCustomQueries: function () {
|
||||
var result;
|
||||
if (this.allowUpload === true) {
|
||||
console.log(this.file.valueOf());
|
||||
console.log(this.file);
|
||||
console.log(this.files);
|
||||
|
||||
$.getJSON(this.file, function(json) {
|
||||
console.log(json);
|
||||
});
|
||||
}
|
||||
},
|
||||
|
||||
|
|
|
@ -106,6 +106,7 @@
|
|||
"frontend/js/models/foxx.js",
|
||||
"frontend/js/models/graph.js",
|
||||
"frontend/js/models/notification.js",
|
||||
"frontend/js/models/arangoQuery.js",
|
||||
"clusterFrontend/js/models/clusterServer.js",
|
||||
"clusterFrontend/js/models/clusterCoordinator.js",
|
||||
"clusterFrontend/js/models/clusterDatabase.js",
|
||||
|
@ -129,6 +130,7 @@
|
|||
"frontend/js/collections/foxxCollection.js",
|
||||
"frontend/js/collections/graphCollection.js",
|
||||
"frontend/js/collections/notificationCollection.js",
|
||||
"frontend/js/collections/arangoQueries.js",
|
||||
"clusterFrontend/js/collections/clusterServers.js",
|
||||
"clusterFrontend/js/collections/clusterCoordinators.js",
|
||||
"clusterFrontend/js/collections/clusterDatabases.js",
|
||||
|
|
Loading…
Reference in New Issue