Skip to content

Commit c30992f

Browse files
committed
This is to fix #10 - problem when precompile using YUI Compressor, since the float is a reserved word need to be quoted
1 parent af77fc2 commit c30992f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vendor/assets/javascripts/jquery.bxslider.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@
234234
}
235235
// apply css to all slider children
236236
slider.children.css({
237-
float: slider.settings.mode === 'horizontal' ? 'left' : 'none',
237+
'float': slider.settings.mode === 'horizontal' ? 'left' : 'none',
238238
listStyle: 'none',
239239
position: 'relative'
240240
});

0 commit comments

Comments
 (0)