From 90928a61ae8be78fdfa1d1bbb686445627ad8871 Mon Sep 17 00:00:00 2001 From: Zef Hemel Date: Wed, 16 Nov 2011 16:48:58 +0100 Subject: [PATCH] Removed default classes. --- lib/ace/placeholder.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/ace/placeholder.js b/lib/ace/placeholder.js index 11eaf767..2b9ec30d 100644 --- a/lib/ace/placeholder.js +++ b/lib/ace/placeholder.js @@ -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;