Navigation Menu

Skip to content

Commit

Permalink
stupid bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Mario Estrada committed Jul 10, 2012
1 parent 3f21adc commit b62ca3c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion javascripts/application.js
Expand Up @@ -16,8 +16,10 @@ $(function()
var html = '';
_.each(index, function(key)
{
if(key != 'pairing_key');
if(key != 'pairing_key')
{
html += pinned_template($.jStorage.get(key));
}
});

$('#pinned-container').toggleClass('hidden', html.length <= 0);
Expand Down

0 comments on commit b62ca3c

Please sign in to comment.