File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change 72
72
max_width : attrs . named . max_width ,
73
73
padding_top : '' ,
74
74
autoplay : '' ,
75
+ mute : '' ,
75
76
playsinline : '' ,
76
77
picture_in_picture : '' ,
77
78
embed : attrs . named . embed
81
82
setAttrs . player_id = attrs . named . player_id ;
82
83
setAttrs . video_id = sanitizeIds ( attrs . named . video_id ) ;
83
84
setAttrs . autoplay = attrs . named . autoplay ;
85
+ setAttrs . mute = attrs . named . mute ;
84
86
setAttrs . playsinline = attrs . named . playsinline ;
85
87
setAttrs . picture_in_picture = attrs . named . picture_in_picture ;
86
88
setAttrs . padding_top = attrs . named . padding_top ;
87
89
} else if ( '[bc_playlist' === attrs . numeric [ 0 ] ) {
88
90
setAttrs . player_id = attrs . named . player_id ;
89
91
setAttrs . playlist_id = sanitizeIds ( attrs . named . playlist_id ) ;
90
92
setAttrs . autoplay = attrs . named . autoplay ;
93
+ setAttrs . mute = attrs . named . mute ;
91
94
setAttrs . playsinline = attrs . named . playsinline ;
92
95
setAttrs . padding_top = attrs . named . padding_top ;
93
96
} else if ( '[bc_experience' === attrs . numeric [ 0 ] ) {
Original file line number Diff line number Diff line change @@ -149,6 +149,9 @@ public static function action_init_all() {
149
149
'autoplay ' => array (
150
150
'type ' => 'string ' ,
151
151
),
152
+ 'mute ' => array (
153
+ 'type ' => 'string ' ,
154
+ ),
152
155
'playsinline ' => array (
153
156
'type ' => 'string ' ,
154
157
),
You can’t perform that action at this time.
0 commit comments