Fix for try catch on Flash element
Showing
1 changed file
with
0 additions
and
5 deletions
... | @@ -109,8 +109,6 @@ var | ... | @@ -109,8 +109,6 @@ var |
109 | return 1; // HAVE_METADATA | 109 | return 1; // HAVE_METADATA |
110 | }; | 110 | }; |
111 | 111 | ||
112 | if(player.ha === "Flash") | ||
113 | { | ||
114 | player.currentTime = function(value) { | 112 | player.currentTime = function(value) { |
115 | if(value) { | 113 | if(value) { |
116 | try { | 114 | try { |
... | @@ -128,7 +126,6 @@ var | ... | @@ -128,7 +126,6 @@ var |
128 | } | 126 | } |
129 | } | 127 | } |
130 | }; | 128 | }; |
131 | } | ||
132 | 129 | ||
133 | player.hls.selectSegmentByTime = function(time) { | 130 | player.hls.selectSegmentByTime = function(time) { |
134 | var index, currentSegment; | 131 | var index, currentSegment; |
... | @@ -245,14 +242,12 @@ var | ... | @@ -245,14 +242,12 @@ var |
245 | // update the duration | 242 | // update the duration |
246 | player.duration(parser.manifest.totalDuration); | 243 | player.duration(parser.manifest.totalDuration); |
247 | // Notify the flash layer | 244 | // Notify the flash layer |
248 | if (player.ha === "Flash") { | ||
249 | try { | 245 | try { |
250 | player.el().getElementsByClassName('vjs-tech')[0].vjs_setProperty('duration',parser.manifest.totalDuration); | 246 | player.el().getElementsByClassName('vjs-tech')[0].vjs_setProperty('duration',parser.manifest.totalDuration); |
251 | } catch (err) { | 247 | } catch (err) { |
252 | 248 | ||
253 | } | 249 | } |
254 | } | 250 | } |
255 | } | ||
256 | player.trigger('loadedmanifest'); | 251 | player.trigger('loadedmanifest'); |
257 | player.trigger('loadedmetadata'); | 252 | player.trigger('loadedmetadata'); |
258 | return; | 253 | return; | ... | ... |
-
Please register or sign in to post a comment