summaryrefslogtreecommitdiffstats
path: root/module/web/static/js/views
diff options
context:
space:
mode:
Diffstat (limited to 'module/web/static/js/views')
-rw-r--r--module/web/static/js/views/settings/pluginChooserModal.js5
-rw-r--r--module/web/static/js/views/settings/settingsView.js14
2 files changed, 14 insertions, 5 deletions
diff --git a/module/web/static/js/views/settings/pluginChooserModal.js b/module/web/static/js/views/settings/pluginChooserModal.js
index c7cdce244..65c412d9c 100644
--- a/module/web/static/js/views/settings/pluginChooserModal.js
+++ b/module/web/static/js/views/settings/pluginChooserModal.js
@@ -14,10 +14,9 @@ define(['jquery', 'underscore', 'app', 'views/abstract/modalView', 'text!tpl/def
this.events = _.extend({}, modalView.prototype.events, this.events);
var self = this;
$.ajax(App.apiRequest('getAvailablePlugins', null, {success: function(data) {
- self.plugins = data;
+ self.plugins = _.sortBy(data, function(item){return item.name;});
self.render();
- }
- }));
+ }}));
},
onRender: function() {
diff --git a/module/web/static/js/views/settings/settingsView.js b/module/web/static/js/views/settings/settingsView.js
index 58507f51a..4e83322e5 100644
--- a/module/web/static/js/views/settings/settingsView.js
+++ b/module/web/static/js/views/settings/settingsView.js
@@ -9,7 +9,8 @@ define(['jquery', 'underscore', 'backbone', 'app', 'models/ConfigHolder', './con
events: {
'click .settings-menu li > a': 'change_section',
- 'click .btn-add': 'choosePlugin'
+ 'click .btn-add': 'choosePlugin',
+ 'click .iconf-remove': 'deleteConfig'
},
menu: null,
@@ -110,7 +111,8 @@ define(['jquery', 'underscore', 'backbone', 'app', 'models/ConfigHolder', './con
},
failure: function() {
-
+ // TODO
+ this.config = null;
},
change_section: function(e) {
@@ -134,6 +136,14 @@ define(['jquery', 'underscore', 'backbone', 'app', 'models/ConfigHolder', './con
self.modal.show();
});
+ },
+
+ deleteConfig: function(e){
+ e.stopPropagation();
+ var el = $(e.target).parent().parent();
+ var name = el.data("name");
+
+ console.log("Delete config " + name);
}
});