Skip to content

Commit

Permalink
Merge pull request #447 from JeffreyBrownEnlighten/master
Browse files Browse the repository at this point in the history
Fix typeof usage
  • Loading branch information
crissdev committed Nov 11, 2014
2 parents 47ea024 + ec42145 commit 2cbe6ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Src/ko.validation.start.frag
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
}
}(function ( ko, exports ) {

if (typeof (ko) === undefined) { throw 'Knockout is required, please ensure it is loaded before loading this validation plug-in'; }
if (typeof (ko) === 'undefined') { throw 'Knockout is required, please ensure it is loaded before loading this validation plug-in'; }

// create our namespace object
ko.validation = exports;
Expand Down

0 comments on commit 2cbe6ad

Please sign in to comment.