Skip to content

Commit

Permalink
Merge pull request vitmalina#457 from kyuri/upstream
Browse files Browse the repository at this point in the history
Listview: misspelling fix
  • Loading branch information
vitmalina committed Mar 6, 2014
2 parents 3a169e7 + 2bb02e1 commit 1c2f311
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/w2listview.js
Original file line number Diff line number Diff line change
Expand Up @@ -536,7 +536,7 @@
var imgClass = (item.icon !== null && typeof item.icon !== 'undefined') ? ' '+item.icon : ' icon-none';
if (item.img !== null && typeof item.img !== 'undefined') imgClass = ' w2ui-icon '+item.img;

var withDescription = (typeof item.description !== undefined && item.description !== '');
var withDescription = (typeof item.description !== 'undefined' && item.description !== '');
var withExtra = (obj.extraCols.length > 0);
var rslt = getItemTemplate(withDescription, withExtra);
rslt.id = obj.itemNodeId(item.id);
Expand Down

0 comments on commit 1c2f311

Please sign in to comment.