Skip to content

Commit

Permalink
Add missing semi-colon
Browse files Browse the repository at this point in the history
  • Loading branch information
Tim committed Jan 22, 2015
1 parent be1b144 commit e8777e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/rangy-classapplier.js
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,7 @@ rangy.createModule("ClassApplier", ["WrappedSelection"], function(api, module) {
// Initialize from options object
if (typeof options == "object" && options !== null) {
if (typeof options.elementTagName !== "undefined") {
options.elementTagName = options.elementTagName.toLowerCase()
options.elementTagName = options.elementTagName.toLowerCase();
}
tagNames = options.tagNames;
elementPropertiesFromOptions = options.elementProperties;
Expand Down

0 comments on commit e8777e3

Please sign in to comment.