You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tapestry.apache.org by hl...@apache.org on 2011/10/25 18:09:00 UTC

svn commit: r1188758 - in /tapestry/tapestry5/trunk/tapestry-core/src/main/resources/org/apache/tapestry5: t5-dom.js tapestry.js

Author: hlship
Date: Tue Oct 25 16:09:00 2011
New Revision: 1188758

URL: http://svn.apache.org/viewvc?rev=1188758&view=rev
Log:
Qualify the use of _.isString() as T5._.isString()
Replace a use of Prototype's Object.isString() with T5._.isString()

Modified:
    tapestry/tapestry5/trunk/tapestry-core/src/main/resources/org/apache/tapestry5/t5-dom.js
    tapestry/tapestry5/trunk/tapestry-core/src/main/resources/org/apache/tapestry5/tapestry.js

Modified: tapestry/tapestry5/trunk/tapestry-core/src/main/resources/org/apache/tapestry5/t5-dom.js
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/tapestry-core/src/main/resources/org/apache/tapestry5/t5-dom.js?rev=1188758&r1=1188757&r2=1188758&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/tapestry-core/src/main/resources/org/apache/tapestry5/t5-dom.js (original)
+++ tapestry/tapestry5/trunk/tapestry-core/src/main/resources/org/apache/tapestry5/t5-dom.js Tue Oct 25 16:09:00 2011
@@ -39,7 +39,7 @@ T5.define("dom", function() {
      */
     function locate(element) {
 
-        if (T5._.isString(element)) {
+        if (_.isString(element)) {
             return document.getElementById(element);
         }
 

Modified: tapestry/tapestry5/trunk/tapestry-core/src/main/resources/org/apache/tapestry5/tapestry.js
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/tapestry-core/src/main/resources/org/apache/tapestry5/tapestry.js?rev=1188758&r1=1188757&r2=1188758&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/tapestry-core/src/main/resources/org/apache/tapestry5/tapestry.js (original)
+++ tapestry/tapestry5/trunk/tapestry-core/src/main/resources/org/apache/tapestry5/tapestry.js Tue Oct 25 16:09:00 2011
@@ -1469,7 +1469,7 @@ Tapestry.ErrorPopup = Class.create({
 
             var div = this.outerDiv;
 
-            _.delay(function() {
+            T5._.delay(function() {
                 div.hide();
             }, this.IE_FADE_TIME);