aboutsummaryrefslogtreecommitdiffstats
path: root/infrastructure/ace/www/domline.js
diff options
context:
space:
mode:
Diffstat (limited to 'infrastructure/ace/www/domline.js')
-rw-r--r--infrastructure/ace/www/domline.js9
1 files changed, 8 insertions, 1 deletions
diff --git a/infrastructure/ace/www/domline.js b/infrastructure/ace/www/domline.js
index 016e868..f1d19e4 100644
--- a/infrastructure/ace/www/domline.js
+++ b/infrastructure/ace/www/domline.js
@@ -101,7 +101,14 @@ domline.createDomLine = function(nonEmpty, doesWrap, optBrowser, optDocument) {
var extraOpenTags = "";
var extraCloseTags = "";
- parent.parent.plugins.callHook(
+ var plugins_;
+ if (typeof(plugins)!='undefined') {
+ plugins_ = plugins;
+ } else {
+ plugins_ = parent.parent.plugins;
+ }
+
+ plugins_.callHook(
"aceCreateDomLine", {domline:domline, cls:cls}
).map(function (modifier) {
cls = modifier.cls;