0;95;cRemove unnecessary boolean conversion.

This commit is contained in:
Peter Fogg
2013-06-11 14:33:24 -04:00
parent 0149766710
commit fc6f0606c2

View File

@@ -5,7 +5,7 @@ class @Video
@start = @el.data('start')
@end = @el.data('end')
@caption_asset_path = @el.data('caption-asset-path')
@show_captions = !!@el.data('show-captions')
@show_captions = @el.data('show-captions')
window.player = null
@el = $("#video_#{@id}")
@parseVideos @el.data('streams')