Make coding style project consistent.
This commit is contained in:
@@ -87,12 +87,14 @@ function parseTag(html, onTag, escapeHtml) {
|
||||
}
|
||||
if ((c === '"' || c === "'")) {
|
||||
var i = 1;
|
||||
while ((html.charAt(currentPos - i) === " ") || (html.charAt(currentPos - i) === "=")) {
|
||||
if (html.charAt(currentPos - i) === "=") {
|
||||
var ic = html.charAt(currentPos - i);
|
||||
|
||||
while ((ic === " ") || (ic === "=")) {
|
||||
if (ic === "=") {
|
||||
quoteStart = c;
|
||||
continue chariterator;
|
||||
}
|
||||
i++;
|
||||
ic = html.charAt(currentPos - ++i);
|
||||
}
|
||||
}
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user