mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-25 02:57:30 +00:00
Ensure variables stay local
This commit is contained in:
parent
ebec56b98f
commit
ab3ea207d4
1 changed files with 1 additions and 1 deletions
|
|
@ -49,7 +49,7 @@ return {
|
|||
// Extract sprite images
|
||||
Promise.all(promisedCssRules).then(function(newCssRules) {
|
||||
this._createNewStyleNode();
|
||||
cssRules = newCssRules.join('\n');
|
||||
var cssRules = newCssRules.join('\n');
|
||||
this.styleNode.appendChild(document.createTextNode(cssRules));
|
||||
this._parseVisColors(zip);
|
||||
this.completedCallback();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue