1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2025-12-02 23:08:06 +00:00

Appeasing the gods of JSHint

This commit is contained in:
Jeremy Ruston
2012-11-06 17:21:56 +00:00
parent 54252a5400
commit 9f6909ddc4
28 changed files with 69 additions and 66 deletions

View File

@@ -52,7 +52,7 @@ exports.convertStyleNameToPropertyName = function(styleName) {
}
}
// Put it in the cache too
styleNameCache[styleName] = propertyName
styleNameCache[styleName] = propertyName;
return propertyName;
};
@@ -124,7 +124,7 @@ exports.convertEventName = function(eventName) {
}
}
// Put it in the cache too
eventNameCache[eventName] = newEventName
eventNameCache[eventName] = newEventName;
return newEventName;
};