diff options
| author | Jules Laplace <jules@okfoc.us> | 2016-08-17 02:40:11 -0400 |
|---|---|---|
| committer | Jules Laplace <jules@okfoc.us> | 2016-08-17 02:40:11 -0400 |
| commit | 210bbbc8d99685ee3b62e1086b5594144e7da0d6 (patch) | |
| tree | 21b8521934bfeff605fd66c05a5a082894cd2215 /themes/okadmin/public/js | |
| parent | 7bb493d94240513635fca668d169256aa502d009 (diff) | |
autoplay/loop checkbox on individual media fields
Diffstat (limited to 'themes/okadmin/public/js')
| -rw-r--r-- | themes/okadmin/public/js/parser.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/themes/okadmin/public/js/parser.js b/themes/okadmin/public/js/parser.js index 4ab9a6c..81bba2d 100644 --- a/themes/okadmin/public/js/parser.js +++ b/themes/okadmin/public/js/parser.js @@ -100,6 +100,8 @@ var Parser = { token: id, thumbnail: thumb, title: res.snippet.title, + autoplay: false, + loop: false, width: 640, height: 360, }) @@ -133,6 +135,8 @@ var Parser = { title: res.title, width: res.width, height: res.height, + autoplay: false, + loop: false, }) } }) @@ -257,6 +261,8 @@ var Parser = { title: stripHTML(post['video-caption']), width: 640, height: 360, + autoplay: false, + loop: false, } media_list.push(media) } |
