summaryrefslogtreecommitdiff
path: root/src/templates/admin/plugins.html
diff options
context:
space:
mode:
authorEgil Moeller <egil.moller@freecode.no>2012-03-21 19:28:39 +0100
committerEgil Moeller <egil.moller@freecode.no>2012-03-21 19:28:39 +0100
commit1ca12b24e658d27614f7b64dd8cb0e10fac2358a (patch)
treef0e1d2f567715047411838f00fa762e8a0a91f6f /src/templates/admin/plugins.html
parent7304a9ef3f4650437602ce1b03dccd5ced3b9935 (diff)
downloadetherpad-lite-1ca12b24e658d27614f7b64dd8cb0e10fac2358a.zip
Bugfixes for plugin installer
Diffstat (limited to 'src/templates/admin/plugins.html')
-rw-r--r--src/templates/admin/plugins.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/templates/admin/plugins.html b/src/templates/admin/plugins.html
index a0822e87..7dcb6fa3 100644
--- a/src/templates/admin/plugins.html
+++ b/src/templates/admin/plugins.html
@@ -60,22 +60,22 @@
var doUpdate = false;
function updateHandlers() {
- $("#progress.dialog .close").click(function () {
+ $("#progress.dialog .close").unbind('click').click(function () {
$("#progress.dialog").hide();
});
- $("#do-search").click(function () {
+ $("#do-search").unbind('click').click(function () {
if ($("#search-query")[0].value != "")
socket.emit("search", $("#search-query")[0].value);
});
- $(".do-install").click(function (e) {
+ $(".do-install").unbind('click').click(function (e) {
var row = $(e.target).closest("tr");
doUpdate = true;
socket.emit("install", row.find(".name").html());
});
- $(".do-uninstall").click(function (e) {
+ $(".do-uninstall").unbind('click').click(function (e) {
var row = $(e.target).closest("tr");
doUpdate = true;
socket.emit("uninstall", row.find(".name").html());