[KSS-checkins] r45751 - kukit/kukit.js/branch/gotcha-code-cleanup/kukit

gotcha at codespeak.net gotcha at codespeak.net
Thu Aug 16 20:56:34 CEST 2007


Author: gotcha
Date: Thu Aug 16 20:56:33 2007
New Revision: 45751

Modified:
   kukit/kukit.js/branch/gotcha-code-cleanup/kukit/errors.js
Log:
fix for IE

Modified: kukit/kukit.js/branch/gotcha-code-cleanup/kukit/errors.js
==============================================================================
--- kukit/kukit.js/branch/gotcha-code-cleanup/kukit/errors.js	(original)
+++ kukit/kukit.js/branch/gotcha-code-cleanup/kukit/errors.js	Thu Aug 16 20:56:33 2007
@@ -57,7 +57,7 @@
         if (typeof err.number == 'number') {
             // show sensible error on IE
             err.toString = function () {
-                return this.name + '; ' + this.message;
+                return this.name + ': ' + this.message;
             };
         }
         return err;


More information about the Kukit-checkins mailing list