You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lo...@apache.org on 2016/10/05 08:23:47 UTC

svn commit: r1763362 - /myfaces/tobago/trunk/tobago-theme/tobago-theme-standard/src/main/resources/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/tobago.js

Author: lofwyr
Date: Wed Oct  5 08:23:47 2016
New Revision: 1763362

URL: http://svn.apache.org/viewvc?rev=1763362&view=rev
Log:
cleanup unused code

Modified:
    myfaces/tobago/trunk/tobago-theme/tobago-theme-standard/src/main/resources/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/tobago.js

Modified: myfaces/tobago/trunk/tobago-theme/tobago-theme-standard/src/main/resources/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/tobago.js
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-theme/tobago-theme-standard/src/main/resources/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/tobago.js?rev=1763362&r1=1763361&r2=1763362&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-theme/tobago-theme-standard/src/main/resources/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/tobago.js (original)
+++ myfaces/tobago/trunk/tobago-theme/tobago-theme-standard/src/main/resources/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/tobago.js Wed Oct  5 08:23:47 2016
@@ -426,18 +426,6 @@ var Tobago = {
     Tobago.reloadTimer[id] = setTimeout(func, time);
   },
 
-  /**
-   * Focus function for toolbar buttons.
-   *  IE only.
-   */
-  toolbarFocus: function(element, event) {
-    if (window.event && event.altKey) {
-      // ie only set focus on keyboard access, so do the click here.
-      //console.debug(" alt=" + event.altKey + "  keycode=" + event.keyCode)
-      element.click();
-    }
-  },
-
   resizePage: function(event) {
     Tobago.resizeEventCount++;
     window.setTimeout(Tobago.resizePageAction, 250);