You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/plugins/validators/sync/06_autoplay.js
+47-49Lines changed: 47 additions & 49 deletions
Original file line number
Diff line number
Diff line change
@@ -23,60 +23,58 @@ export default {
23
23
// create autoplay variant of the player if requested via link.autoplay attribute
24
24
if(link.href&&link.rel.indexOf(CONFIG.R.player)>-1&&link.autoplay&&typeoflink.autoplay==="string"&&link.autoplay.indexOf('=')>-1){// it should always be a query-string
25
25
26
-
varplay=link.autoplay;
27
-
// don't need this field any longer
26
+
constplay_querystring=link.autoplay;// e.g. 'autoplay=1'
0 commit comments