Skip to content

Commit

Permalink
mollify closure compiler
Browse files Browse the repository at this point in the history
  • Loading branch information
rbuels committed Jan 31, 2013
1 parent ce0e2d4 commit f3851d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/JBrowse/Model/NestedFrequencyTable.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ var NestedFrequencyTable = Util.fastDeclare({
var slotName = path[0].toString();
var slot = this._categories[slotName];
if( ! slot || ! slot._categories )
slot = this._categories[slotName] = new NestedFrequencyTable( slot ? { default: slot+0 } : {} );
slot = this._categories[slotName] = new NestedFrequencyTable( slot ? { "default": slot+0 } : {} );

if( path.length > 1 ) {
return slot.getNested( path.slice(1) );
Expand Down

0 comments on commit f3851d4

Please sign in to comment.