[Phpfreechat-svn] SF.net SVN: phpfreechat: [1179] trunk/data/public/js/pfcresource.js
Status: Beta
Brought to you by:
kerphi
From: <ke...@us...> - 2007-09-06 15:40:54
|
Revision: 1179 http://phpfreechat.svn.sourceforge.net/phpfreechat/?rev=1179&view=rev Author: kerphi Date: 2007-09-06 08:18:01 -0700 (Thu, 06 Sep 2007) Log Message: ----------- fix javascript syntax problem for IE Modified Paths: -------------- trunk/data/public/js/pfcresource.js Modified: trunk/data/public/js/pfcresource.js =================================================================== --- trunk/data/public/js/pfcresource.js 2007-09-06 14:30:28 UTC (rev 1178) +++ trunk/data/public/js/pfcresource.js 2007-09-06 15:18:01 UTC (rev 1179) @@ -49,7 +49,7 @@ { this.smileys[key] = value; this.smileysreverse[value] = key; - this.smileyskeyssorted.push(key); + //this.smileyskeyssorted.push(key); // Sort keys by longest to shortest. This prevents a smiley like :) from being used on >:) this.smileyskeyssorted.sort(function (a,b){return (b.unescapeHTML().length - a.unescapeHTML().length);}) }, @@ -71,7 +71,7 @@ getSmileyKeysSorted: function() { return this.smileyskeyssorted; - }, + } }; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |