Skip to content
This repository has been archived by the owner on Feb 12, 2022. It is now read-only.

Commit

Permalink
Merge pull request #1132 from cormacmccarthy/GH1131---fix-lint-warning
Browse files Browse the repository at this point in the history
fixes #1131 addresses lint issue
  • Loading branch information
interactivellama committed Feb 26, 2015
2 parents 00c2e6c + 209a489 commit 19f9cb0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/tree.js
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@
// the "name" attribute is also supported but is deprecated for "text".

// add attributes to tree-branch or tree-item
var attr = value['attr'] || value.dataAttributes || [];
var attr = value.attr || value.dataAttributes || [];
$.each(attr, function (key, value) {
switch (key) {
case 'cssClass':
Expand Down

0 comments on commit 19f9cb0

Please sign in to comment.