2 new revisions:
Revision: 4225b6651688
Author: Mikko Korpela <[email protected]>
Date: Mon Jan 30 11:04:36 2012
Log: log.html: remove open/close animation -- seems to make it
asynchronous...
http://code.google.com/p/robotframework/source/detail?r=4225b6651688
Revision: ba4cf8916212
Author: Mikko Korpela <[email protected]>
Date: Mon Jan 30 11:05:15 2012
Log: Automated merge with https://code.google.com/p/robotframework/
http://code.google.com/p/robotframework/source/detail?r=ba4cf8916212
==============================================================================
Revision: 4225b6651688
Author: Mikko Korpela <[email protected]>
Date: Mon Jan 30 11:04:36 2012
Log: log.html: remove open/close animation -- seems to make it
asynchronous and causes problems
http://code.google.com/p/robotframework/source/detail?r=4225b6651688
Modified:
/src/robot/webcontent/log.js
=======================================
--- /src/robot/webcontent/log.js Mon Jan 30 06:20:07 2012
+++ /src/robot/webcontent/log.js Mon Jan 30 11:04:36 2012
@@ -18,7 +18,7 @@
function toggleElement(elementId, childrenNames) {
var childElement = $("#"+elementId+"_children");
- childElement.toggle(100);
+ childElement.toggle();
populateChildren(elementId, childElement, childrenNames);
var foldingButton = $('#'+elementId+'_foldingbutton');
foldingButton.text(foldingButton.text() == '+' ? '-' : '+');
@@ -62,7 +62,7 @@
function expandElement(element) {
var childElement = $("#" + element.id + "_children");
- childElement.show(100);
+ childElement.show();
populateChildren(element.id, childElement, element.childrenNames);
$('#'+element.id+'_foldingbutton').text('-');
}
==============================================================================
Revision: ba4cf8916212
Author: Mikko Korpela <[email protected]>
Date: Mon Jan 30 11:05:15 2012
Log: Automated merge with https://code.google.com/p/robotframework/
http://code.google.com/p/robotframework/source/detail?r=ba4cf8916212