dont use nasty settimeouts use a callback instead for focus
parent
f9071aebe6
commit
a82e692bdd
|
@ -352,32 +352,30 @@ var padeditbar = (function()
|
|||
toolbar.registerDropdownCommand("embed");
|
||||
|
||||
toolbar.registerCommand("settings", function () {
|
||||
setTimeout(function(){
|
||||
toolbar.toggleDropDown("settings", function(){
|
||||
$('#options-stickychat').focus();
|
||||
},100);
|
||||
toolbar.toggleDropDown("settings");
|
||||
});
|
||||
});
|
||||
|
||||
toolbar.registerCommand("import_export", function () {
|
||||
toolbar.toggleDropDown("import_export", function(){
|
||||
setTimeout(function(){
|
||||
$('#importfileinput').focus();
|
||||
}, 100);
|
||||
toolbar.toggleDropDown("import_export");
|
||||
});
|
||||
});
|
||||
|
||||
toolbar.registerCommand("showusers", function () {
|
||||
setTimeout(function(){
|
||||
$('#myusernameedit').focus(); // TODO: Not working
|
||||
},100);
|
||||
toolbar.toggleDropDown("users");
|
||||
toolbar.toggleDropDown("users", function(){
|
||||
$('#myusernameedit').focus();
|
||||
});
|
||||
});
|
||||
|
||||
toolbar.registerCommand("embed", function () {
|
||||
toolbar.setEmbedLinks();
|
||||
setTimeout(function(){
|
||||
toolbar.toggleDropDown("embed", function(){
|
||||
$('#linkinput').focus().select();
|
||||
}, 100);
|
||||
toolbar.toggleDropDown("embed");
|
||||
});
|
||||
});
|
||||
|
||||
toolbar.registerCommand("savedRevision", function () {
|
||||
|
|
Loading…
Reference in New Issue