File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 11var SubtitlesOctopus = function ( options ) {
22 var self = this ;
33 self . canvas = options . canvas ; // HTML canvas element (optional if video specified)
4- self . lossyRender = false ; // Speedup render for heavy subs
4+ self . lossyRender = options . lossyRender ; // Speedup render for heavy subs
55 self . isOurCanvas = false ; // (internal) we created canvas and manage it
66 self . video = options . video ; // HTML video element (optional if canvas specified)
77 self . canvasParent = null ; // (internal) HTML canvas parent element
Original file line number Diff line number Diff line change 11var SubtitlesOctopus = function ( options ) {
22 var self = this ;
33 self . canvas = options . canvas ; // HTML canvas element (optional if video specified)
4- self . lossyRender = false ; // Speedup render for heavy subs
4+ self . lossyRender = options . lossyRender ; // Speedup render for heavy subs
55 self . isOurCanvas = false ; // (internal) we created canvas and manage it
66 self . video = options . video ; // HTML video element (optional if canvas specified)
77 self . canvasParent = null ; // (internal) HTML canvas parent element
You can’t perform that action at this time.
0 commit comments