mirror of https://gitee.com/bigwinds/arangodb
32 lines
740 B
JavaScript
32 lines
740 B
JavaScript
/*jslint indent: 2, nomen: true, maxlen: 100, sloppy: true, vars: true, white: true, plusplus: true */
|
|
/*global Backbone, EJS, $, window, _ */
|
|
|
|
window.FoxxInstalledView = Backbone.View.extend({
|
|
tagName: 'li',
|
|
className: "span3",
|
|
template: new EJS({url: 'js/templates/foxxInstalledView.ejs'}),
|
|
|
|
events: {
|
|
'click #install': 'installFoxx'
|
|
},
|
|
|
|
initialize: function(){
|
|
_.bindAll(this, 'render');
|
|
},
|
|
|
|
installFoxx: function(event) {
|
|
event.stopPropagation();
|
|
window.App.navigate(
|
|
"application/available/" + encodeURIComponent(this.model.get("_key")),
|
|
{
|
|
trigger: true
|
|
}
|
|
);
|
|
},
|
|
|
|
render: function(){
|
|
$(this.el).html(this.template.render(this.model));
|
|
return $(this.el);
|
|
}
|
|
});
|