1
0
Fork 0

Merge branch 'devel' of https://github.com/triAGENS/ArangoDB into devel

This commit is contained in:
scottashton 2014-05-23 14:30:24 +02:00
commit caff3fac1a
1 changed files with 9 additions and 3 deletions

View File

@ -44,13 +44,19 @@
);
*/
},
selectCollection: function() {
selectCollection: function(event) {
//check if event was fired from disabled button
if ($(event.target).hasClass("disabled")) {
return 0;
}
window.App.navigate(
"collection/" + encodeURIComponent(this.model.get("name")) + "/documents/1", {trigger: true}
);
},
noop: function(event) {
event.stopPropagation();
},