Skip to content

Commit

Permalink
jscs fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nikolas committed Nov 2, 2015
1 parent a831c48 commit 4561c14
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions media/js/app/assetmgr/assetpanel.js
Original file line number Diff line number Diff line change
Expand Up @@ -237,10 +237,12 @@ AssetPanelHandler.prototype.resize = function() {
q = 'div.mediathread-panel.asset-workspace div.pantab.collection:visible';
var pantab = jQuery(self.el).find(q);
if (pantab.length > 0) {
q = 'div.mediathread-panel.asset-workspace td.panhandle-stripe.collection';
q = 'div.mediathread-panel.asset-workspace ' +
'td.panhandle-stripe.collection';
jQuery(q).show();
} else {
q = 'div.mediathread-panel.asset-workspace td.panhandle-stripe.collection';
q = 'div.mediathread-panel.asset-workspace ' +
'td.panhandle-stripe.collection';
jQuery(q).hide();
}

Expand Down

0 comments on commit 4561c14

Please sign in to comment.