Browse Source

Trying to organize emoticons in multiple lines (SCEditor)

Signed-off-by: emanuele <emanuele45@gmail.com>
emanuele 13 years ago
parent
commit
00c17e0f46
1 changed files with 7 additions and 2 deletions
  1. 7 2
      Themes/default/scripts/jquery.sceditor.js

+ 7 - 2
Themes/default/scripts/jquery.sceditor.js

@@ -445,8 +445,13 @@
 				emoticon;
 
 			$.each(emoticons, function (key, url) {
-				emoticon	= document.createElement('img');
-				emoticon.src	= url;
+				if (key == '|')
+					emoticon = document.createElement('br');
+				else
+				{
+					emoticon	= document.createElement('img');
+					emoticon.src	= url;
+				}
 				preLoadCache.push(emoticon);
 			});
 		};