Removed default classes.

This commit is contained in:
Zef Hemel 2011-11-16 16:48:58 +01:00
commit 90928a61ae

View file

@ -45,8 +45,8 @@ var PlaceHolder = function(session, length, pos, others, mainClass, othersClass)
this.length = length;
this.session = session;
this.doc = session.getDocument();
this.mainClass = mainClass || "ace_placeholder_main";
this.othersClass = othersClass || "ace_placeholder";
this.mainClass = mainClass;
this.othersClass = othersClass;
this.$onUpdate = this.onUpdate.bind(this);
this.doc.on("change", this.$onUpdate);
this.$others = others;