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/03/24 13:59:41 UTC

svn commit: r1736440 - /myfaces/tobago/branches/tobago-3.0.x/tobago-theme/tobago-theme-standard/src/main/resources/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/tobago-sheet.js

Author: lofwyr
Date: Thu Mar 24 12:59:41 2016
New Revision: 1736440

URL: http://svn.apache.org/viewvc?rev=1736440&view=rev
Log:
logging

Modified:
    myfaces/tobago/branches/tobago-3.0.x/tobago-theme/tobago-theme-standard/src/main/resources/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/tobago-sheet.js

Modified: myfaces/tobago/branches/tobago-3.0.x/tobago-theme/tobago-theme-standard/src/main/resources/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/tobago-sheet.js
URL: http://svn.apache.org/viewvc/myfaces/tobago/branches/tobago-3.0.x/tobago-theme/tobago-theme-standard/src/main/resources/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/tobago-sheet.js?rev=1736440&r1=1736439&r2=1736440&view=diff
==============================================================================
--- myfaces/tobago/branches/tobago-3.0.x/tobago-theme/tobago-theme-standard/src/main/resources/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/tobago-sheet.js (original)
+++ myfaces/tobago/branches/tobago-3.0.x/tobago-theme/tobago-theme-standard/src/main/resources/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/tobago-sheet.js Thu Mar 24 12:59:41 2016
@@ -167,7 +167,7 @@ Tobago.Sheet.setup2 = function (sheets)
       // begin resizing
 //      console.log("begin");
 //      console.log(event);
-      LOG.info("down");
+      console.info("down");
       var columnIndex = jQuery(this).data("tobago-column-index");
       var body = jQuery("body");
       var column = jQuery(this).closest("table").children("colgroup").children("col").eq(columnIndex);
@@ -181,7 +181,7 @@ Tobago.Sheet.setup2 = function (sheets)
         originalFillerWidth: parseInt(filler.attr("width"))
       };
       body.on("mousemove", data, function(event) {
-        LOG.info("move");
+        console.info("move");
         var delta = event.clientX - event.data.originalClientX;
 //        console.log("columnResize(): " + event.data.columnIndex + ", delta: " + delta);
         delta = - Math.min(-delta, event.data.originalColumnWidth - 10);
@@ -200,7 +200,7 @@ Tobago.Sheet.setup2 = function (sheets)
       body.one("mouseup", {sheet: jQuery(this).closest(".tobago-sheet")}, function (event) {
         // switch off the mouse move listener
         jQuery("body").off("mousemove");
-        LOG.info("up");
+        console.info("up");
         // copy the width values from the header to the body, (and build a list of it)
         var sheet = event.data.sheet;
         var headerTable = sheet.find(".tobago-sheet-headerTable");