diff options
author | Matthias Bartelmeß <mba@fourplusone.de> | 2012-02-19 14:28:51 +0100 |
---|---|---|
committer | Matthias Bartelmeß <mba@fourplusone.de> | 2012-02-19 14:28:51 +0100 |
commit | fb879576e192f036806ab15e1792474e002cd358 (patch) | |
tree | 83c152b1ad55c0adc4444154c7bd537059f16835 /static | |
parent | 5d14fb372a26be1aeb656d48420e4c1273b6ab93 (diff) | |
download | etherpad-lite-fb879576e192f036806ab15e1792474e002cd358.zip |
replaced noop in skiplist with ace2common implementation
Diffstat (limited to 'static')
-rw-r--r-- | static/js/skiplist.js | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/static/js/skiplist.js b/static/js/skiplist.js index 385f08f0..190bc55b 100644 --- a/static/js/skiplist.js +++ b/static/js/skiplist.js @@ -21,7 +21,7 @@ */ - +var noop = require('./ace2_common').noop; function newSkipList() @@ -41,9 +41,6 @@ function newSkipList() }; } - function noop() - {} - // if there are N elements in the skiplist, "start" is element -1 and "end" is element N var start = { key: null, |