Skip to content

Commit

Permalink
fixed indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
drigato authored and Christopher De Cairos committed Mar 2, 2012
1 parent f8f6b53 commit 288218a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions plugins/rdio/popcorn.rdio.js
Original file line number Diff line number Diff line change
Expand Up @@ -130,16 +130,16 @@
_container[ key ].innerHTML = "";
_target[ key ] && _target[ key ].appendChild( _container[ key ] );
_album[ key ] = {
htmlString: ( options.playlist || "Unknown Source") || ( options.album || "Unknown Source" )
htmlString: ( options.playlist || "Unknown Source" ) || ( options.album || "Unknown Source" )
};
_getResults( options );
},
start: function( event, options) {
start: function( event, options ) {
var key = ( options.album || options.playlist );
_container[ key ].innerHTML = _album[ key ].htmlString;
_container[ key ].style.display = "inline";
},
end: function( event, options) {
end: function( event, options ) {
var key = ( options.album || options.playlist );
_container[ key ].style.display = "none";
_container[ key ].innerHTML = "";
Expand All @@ -152,5 +152,5 @@
}

};
}()), _args);
}()), _args );
}( Popcorn ));

0 comments on commit 288218a

Please sign in to comment.