Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
None
Description
updateZoneOnEvent : function(eventName, element, zoneId, url) {
element = $(element);
$T(element).zoneUpdater = true;
var zoneElement = zoneId == '^' ? $(element).up('.t-zone')
: $(zoneId);
if (!zoneElement) {
Tapestry
.error(
"Could not find zone element '#
' to update on #
{eventName}of element '#
{elementId}",
);
return;
}
There's a missing trailing apostrophe.