diff options
author | Andreas Gohr <andi@splitbrain.org> | 2014-02-14 10:34:55 +0100 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2014-02-14 10:34:55 +0100 |
commit | 133181ec79ac75661d1f79d5f4f256fed821f72d (patch) | |
tree | 4a4f2ceabed7debc23458aa27ece37840c206337 /lib | |
parent | 169773d08ac4e4aaaf48d31a998009690b5e2579 (diff) | |
download | rpg-133181ec79ac75661d1f79d5f4f256fed821f72d.tar.gz rpg-133181ec79ac75661d1f79d5f4f256fed821f72d.tar.bz2 |
fixed whitespace errors introduced in #535
Diffstat (limited to 'lib')
-rw-r--r-- | lib/scripts/edit.js | 6 | ||||
-rw-r--r-- | lib/scripts/toolbar.js | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/lib/scripts/edit.js b/lib/scripts/edit.js index 76e6d124b..c07b8f975 100644 --- a/lib/scripts/edit.js +++ b/lib/scripts/edit.js @@ -135,9 +135,9 @@ function pickerInsert(text,edid){ function addBtnActionSignature($btn, props, edid) { if(typeof SIG != 'undefined' && SIG != ''){ $btn.bind('click', function (e) { - insertAtCarret(edid,SIG); - e.preventDefault(); - }); + insertAtCarret(edid,SIG); + e.preventDefault(); + }); return edid; } return ''; diff --git a/lib/scripts/toolbar.js b/lib/scripts/toolbar.js index cb478fdb1..1bb02b406 100644 --- a/lib/scripts/toolbar.js +++ b/lib/scripts/toolbar.js @@ -201,7 +201,7 @@ function addBtnActionPicker($btn, props, edid) { $btn.click( function(e) { pickerToggle(pickerid,$btn); - e.preventDefault(); + e.preventDefault(); return ''; } ); @@ -223,7 +223,7 @@ function addBtnActionLinkwiz($btn, props, edid) { jQuery($btn).click(function(e){ dw_linkwiz.val = props; dw_linkwiz.toggle(); - e.preventDefault(); + e.preventDefault(); return ''; }); return 'link__wiz'; |