diff options
author | Adrian Lang <lang@cosmocode.de> | 2010-02-02 16:20:17 +0100 |
---|---|---|
committer | Adrian Lang <lang@cosmocode.de> | 2010-03-29 11:44:22 +0200 |
commit | cd12dcad1a482ea805f8dcc58b364e9c6cddc667 (patch) | |
tree | e1aa29fa7d6dd29064abbdbd7efc63be448cf4bc /lib/scripts/textselection.js | |
parent | 569a001959f65aea2c0e7cd3dd5b541cac0e9e58 (diff) | |
download | dokuwiki-cd12dcad1a482ea805f8dcc58b364e9c6cddc667.tar.gz dokuwiki-cd12dcad1a482ea805f8dcc58b364e9c6cddc667.zip |
JavaScript syntax fixes
Diffstat (limited to 'lib/scripts/textselection.js')
-rw-r--r-- | lib/scripts/textselection.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/scripts/textselection.js b/lib/scripts/textselection.js index 76cc6bcbb..5e4602f85 100644 --- a/lib/scripts/textselection.js +++ b/lib/scripts/textselection.js @@ -24,7 +24,7 @@ function selection_class(){ this.getText = function(){ if(!this.obj) return ''; return this.obj.value.substring(this.start,this.end); - } + }; } /** |