Skip to content

Commit

Permalink
Added jshint:maxlen overrides for log lines
Browse files Browse the repository at this point in the history
  • Loading branch information
sdesai committed Feb 21, 2013
1 parent 2e6ba90 commit 4cf449f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/attribute/js/AttributeCore.js
Original file line number Diff line number Diff line change
Expand Up @@ -666,9 +666,11 @@

if (retVal === INVALID_VALUE) {
if (initializing) {
/*jshint maxlen:200*/
Y.log('Attribute: ' + attrName + ', setter returned Attribute.INVALID_VALUE for value:' + newVal + ', initializing to default value', 'warn', 'attribute');
newVal = cfg.defaultValue;
} else {
/*jshint maxlen:200*/
Y.log('Attribute: ' + attrName + ', setter returned Attribute.INVALID_VALUE for value:' + newVal, 'warn', 'attribute');
allowSet = false;
}
Expand Down

0 comments on commit 4cf449f

Please sign in to comment.