diff options
author | Marcel Klehr <mklehr@gmx.net> | 2014-03-30 12:30:18 +0200 |
---|---|---|
committer | Marcel Klehr <mklehr@gmx.net> | 2014-03-30 12:30:18 +0200 |
commit | 867e40533a13e564cc89449c6640c7a973093d31 (patch) | |
tree | 7264f0ca44336b7f6706fee5b2370b9321d68123 /src/static/js | |
parent | 54bf17bfea01284929d7b8d89010b91070d5e33e (diff) | |
download | etherpad-lite-867e40533a13e564cc89449c6640c7a973093d31.zip |
Fix timeslider export dropdown
Diffstat (limited to 'src/static/js')
-rw-r--r-- | src/static/js/pad_editbar.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/static/js/pad_editbar.js b/src/static/js/pad_editbar.js index 1857bd03..3174bf50 100644 --- a/src/static/js/pad_editbar.js +++ b/src/static/js/pad_editbar.js @@ -206,7 +206,7 @@ var padeditbar = (function() if(module.css('display') != "none") { - $("#" + module[i] + "link").removeClass("selected"); + $("#" + self.dropdowns[i] + "link").removeClass("selected"); module.slideUp("fast", cb); returned = true; } @@ -297,7 +297,7 @@ var padeditbar = (function() ace.ace_doUndoRedo(cmd); }); - toolbar.registerAceCommand("redo", function (cmd, ace) { + toolbar.registerAceCommand("redo", function (cmd) { ace.ace_doUndoRedo(cmd); }); |