Created
July 28, 2015 10:06
-
-
Save markgoodyear/6022067974ead622ffb0 to your computer and use it in GitHub Desktop.
Swap `background-repeat: none` to `background-repeat: no-repeat`: https://twitter.com/hugogiraudel/status/625966606351495168
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var noRepeat = function () { | |
return function (css) { | |
css.eachDecl('background-repeat', function (decl) { | |
if (decl.value.indexOf('none') !== -1) { | |
decl.value = 'no-repeat'; | |
} | |
}); | |
}; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment