mirror of https://gitee.com/bigwinds/arangodb
Merge branch 'devel' of https://github.com/triAGENS/ArangoDB into devel
This commit is contained in:
commit
caff3fac1a
|
@ -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();
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue