1
0
Fork 0
This commit is contained in:
Heiko Kernbach 2014-05-23 18:56:30 +02:00
parent 764a92533a
commit c6225a659e
2 changed files with 8 additions and 8 deletions

View File

@ -1,5 +1,5 @@
/*jslint indent: 2, nomen: true, maxlen: 100, white: true plusplus: true, browser: true*/
/*global describe, beforeEach, afterEach, it, spyOn, expect*/
/*global describe, beforeEach, afterEach, it, spyOn, expect, jQuery*/
/*global runs, waitsFor, jasmine, waits*/
/*global $, console, arangoHelper */
(function () {
@ -70,19 +70,19 @@
tile1 = new window.CollectionListItemView({
model: edgeCol,
collectionsView: myView
})
});
$('#collectionsThumbnailsIn').append(tile1.render().el);
tile2 = new window.CollectionListItemView({
model: docCol,
collectionsView: myView
})
});
$('#collectionsThumbnailsIn').append(tile2.render().el);
tile3 = new window.CollectionListItemView({
model: sysCol,
collectionsView: myView
})
});
$('#collectionsThumbnailsIn').append(tile3.render().el);
window.modalView = new window.ModalView();
@ -100,7 +100,7 @@
return {
journalSize: 33554432,
waitForSync: true
}
};
});
spyOn(window.modalView, "show");
@ -115,7 +115,7 @@
return {
journalSize: 33554432,
waitForSync: true
}
};
});
spyOn(window.modalView, "show");

View File

@ -1,5 +1,5 @@
/*jslint indent: 2, nomen: true, maxlen: 100, white: true plusplus: true, browser: true*/
/*global describe, beforeEach, afterEach, it, spyOn, expect*/
/*global describe, beforeEach, afterEach, it, spyOn, expect, jQuery, _, jqconsole, $*/
/*global arangoHelper*/
@ -82,7 +82,7 @@
it("should execute a command using enter-keypress", function () {
var e = jQuery.Event("keydown");
e.which = 13; // # Some key code value
e.keyCode = 13
e.keyCode = 13;
$(".jqconsole").trigger(e);
});