Removed suffix

Can’t use it because of appcache
This commit is contained in:
Igor Zhukov 2015-03-24 22:45:34 +03:00
parent 1c7680156a
commit 9cd7807014

View File

@ -104,10 +104,10 @@
.image-2x(@image, @width, @height, @repeat: no-repeat) { .image-2x(@image, @width, @height, @repeat: no-repeat) {
@filename : ~`/(.*)\.(jpg|jpeg|png|gif)/.exec(@{image})[1]`; @filename : ~`/(.*)\.(jpg|jpeg|png|gif)/.exec(@{image})[1]`;
@extension : ~`/(.*)\.(jpg|jpeg|png|gif)/.exec(@{image})[2]`; @extension : ~`/(.*)\.(jpg|jpeg|png|gif)/.exec(@{image})[2]`;
background-image: ~`"url(@{filename}.@{extension}?1)"`; background-image: ~`"url(@{filename}.@{extension})"`;
background-repeat: @repeat; background-repeat: @repeat;
.is_2x & { .is_2x & {
background-image: ~`"url(@{filename}_2x.@{extension}?1)"`; background-image: ~`"url(@{filename}_2x.@{extension})"`;
background-size: @width @height; background-size: @width @height;
} }
} }