summaryrefslogtreecommitdiff
path: root/src/static/js/ace.js
diff options
context:
space:
mode:
authorNAGOYA, Yoshihiko <nagoya@lepidum.co.jp>2012-10-11 23:39:01 +0900
committerNAGOYA, Yoshihiko <nagoya@lepidum.co.jp>2012-10-12 01:12:15 +0900
commit957a0aa873f2df13483a9b17589c064cc229a80a (patch)
tree90af20d60631cf45dcb6c35e3cde69512f5b042d /src/static/js/ace.js
parentd7ec050f342a717146f181dac76fc1e2b0cada59 (diff)
downloadetherpad-lite-957a0aa873f2df13483a9b17589c064cc229a80a.zip
fix Pita/etherpad-lite #1032
refact inInternationalComposition
Diffstat (limited to 'src/static/js/ace.js')
-rw-r--r--src/static/js/ace.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/static/js/ace.js b/src/static/js/ace.js
index e50f75c7..83ad9447 100644
--- a/src/static/js/ace.js
+++ b/src/static/js/ace.js
@@ -122,6 +122,11 @@ function Ace2Editor()
return info.ace_getDebugProperty(prop);
};
+ editor.getInInternationalComposition = function()
+ {
+ return info.ace_getInInternationalComposition();
+ };
+
// prepareUserChangeset:
// Returns null if no new changes or ACE not ready. Otherwise, bundles up all user changes
// to the latest base text into a Changeset, which is returned (as a string if encodeAsString).