Javascript can be broken on reformatting
----------------------------------------
Key: WOOKIE-102
URL: https://issues.apache.org/jira/browse/WOOKIE-102
Project: Wookie
Issue Type: Bug
Reporter: Ross Gardler
Priority: Critical
The following javascript results in an uncolsed string literal:
function error_callback(p) {
message = '<p>Unable to determine position</p>';
locationData = document.getElementById("locationData");
locationData.innerHTML = message;
}
When rendered it is reformatted as:
function error_callback(p) {
message = '
<p>Unable to determine position
</p>';
locationData = document.getElementById("locationData");
locationData.innerHTML = message;
}
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.