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 2013/02/27 14:31:10 UTC

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

Author: lofwyr
Date: Wed Feb 27 13:31:09 2013
New Revision: 1450773

URL: http://svn.apache.org/r1450773
Log:
TOBAGO-1233: Can not select error messages in Tobagos JavaScript logging console

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

Modified: myfaces/tobago/trunk/tobago-theme/tobago-theme-standard/src/main/resources/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/tobago-logging.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-logging.js?rev=1450773&r1=1450772&r2=1450773&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-theme/tobago-theme-standard/src/main/resources/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/tobago-logging.js (original)
+++ myfaces/tobago/trunk/tobago-theme/tobago-theme-standard/src/main/resources/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/tobago-logging.js Wed Feb 27 13:31:09 2013
@@ -306,7 +306,7 @@ LOG.LogArea.prototype.initialize = funct
     LOG.addAppender(this);
 
     /* Select the logging area with jQuery. TODO: The selector is fragile! */
-    jQuery("body > .tobagoLogArea").draggable();
+    jQuery("body > .tobagoLogArea").draggable({handle: "div:first"});
 };
 
 LOG.LogArea.prototype.show = function() {