From ddbe51970f373867b5b0b1e6a7b38dabadaf74cd Mon Sep 17 00:00:00 2001 From: radiantmediaplayer Date: Wed, 3 Aug 2022 12:52:21 +0200 Subject: [PATCH] 3.1.0 - updates to Radiant Media Player 7.11.1 --- basic-with-reload/css/basic-with-reload.css | 5 ----- basic-with-reload/index.html | 13 +++++++++---- basic-with-reload/js/basic-with-reload.js | 2 +- close-button/css/close-button.css | 2 +- close-button/index.html | 8 ++++---- close-button/js/close-button.js | 2 +- in-article/css/in-article.css | 5 ----- in-article/index.html | 13 +++++++++---- in-article/js/in-article.js | 2 +- one-shot/css/one-shot.css | 5 ----- one-shot/index.html | 13 +++++++++---- one-shot/js/one-shot.js | 2 +- package.json | 2 +- sticky/index.html | 8 ++++---- sticky/js/sticky.js | 2 +- 15 files changed, 42 insertions(+), 42 deletions(-) delete mode 100644 basic-with-reload/css/basic-with-reload.css delete mode 100644 in-article/css/in-article.css delete mode 100644 one-shot/css/one-shot.css diff --git a/basic-with-reload/css/basic-with-reload.css b/basic-with-reload/css/basic-with-reload.css deleted file mode 100644 index e423fd3..0000000 --- a/basic-with-reload/css/basic-with-reload.css +++ /dev/null @@ -1,5 +0,0 @@ -@charset "utf-8"; - -#rmpPlayer { - margin: auto; -} diff --git a/basic-with-reload/index.html b/basic-with-reload/index.html index b39cb28..fb118e4 100644 --- a/basic-with-reload/index.html +++ b/basic-with-reload/index.html @@ -11,8 +11,8 @@ - + + @@ -70,7 +75,7 @@

Advertisement

-
+
@@ -396,7 +401,7 @@

Section 2

- + diff --git a/basic-with-reload/js/basic-with-reload.js b/basic-with-reload/js/basic-with-reload.js index 557bee8..f74fcea 100644 --- a/basic-with-reload/js/basic-with-reload.js +++ b/basic-with-reload/js/basic-with-reload.js @@ -3,7 +3,7 @@ * outstream-ads-gallery | https://github.com/radiantmediaplayer/outstream-ads-gallery */ -const elementID = 'rmpPlayer'; +const elementID = 'rmp'; const container = document.getElementById(elementID); const settings = { diff --git a/close-button/css/close-button.css b/close-button/css/close-button.css index 52fbede..4f60bc6 100644 --- a/close-button/css/close-button.css +++ b/close-button/css/close-button.css @@ -1,6 +1,6 @@ @charset "utf-8"; -#rmpPlayer { +#rmp { margin: auto; } diff --git a/close-button/index.html b/close-button/index.html index 3e0ea13..6b7997f 100644 --- a/close-button/index.html +++ b/close-button/index.html @@ -11,8 +11,8 @@ - + + diff --git a/close-button/js/close-button.js b/close-button/js/close-button.js index 0434c12..3628597 100644 --- a/close-button/js/close-button.js +++ b/close-button/js/close-button.js @@ -3,7 +3,7 @@ * outstream-ads-gallery | https://github.com/radiantmediaplayer/outstream-ads-gallery */ -const elementID = 'rmpPlayer'; +const elementID = 'rmp'; const container = document.getElementById(elementID); const settings = { diff --git a/in-article/css/in-article.css b/in-article/css/in-article.css deleted file mode 100644 index e423fd3..0000000 --- a/in-article/css/in-article.css +++ /dev/null @@ -1,5 +0,0 @@ -@charset "utf-8"; - -#rmpPlayer { - margin: auto; -} diff --git a/in-article/index.html b/in-article/index.html index 671a39a..2811f43 100644 --- a/in-article/index.html +++ b/in-article/index.html @@ -11,8 +11,8 @@ - + + @@ -234,7 +239,7 @@

Advertisement

-
+
@@ -399,7 +404,7 @@

Section 2

- + diff --git a/in-article/js/in-article.js b/in-article/js/in-article.js index 6c5fede..f649ff4 100644 --- a/in-article/js/in-article.js +++ b/in-article/js/in-article.js @@ -3,7 +3,7 @@ * outstream-ads-gallery | https://github.com/radiantmediaplayer/outstream-ads-gallery */ -const elementID = 'rmpPlayer'; +const elementID = 'rmp'; const container = document.getElementById(elementID); const settings = { diff --git a/one-shot/css/one-shot.css b/one-shot/css/one-shot.css deleted file mode 100644 index e423fd3..0000000 --- a/one-shot/css/one-shot.css +++ /dev/null @@ -1,5 +0,0 @@ -@charset "utf-8"; - -#rmpPlayer { - margin: auto; -} diff --git a/one-shot/index.html b/one-shot/index.html index d723929..faba2ad 100644 --- a/one-shot/index.html +++ b/one-shot/index.html @@ -11,8 +11,8 @@ - + + @@ -67,7 +72,7 @@

My amazing article to read

-
+
@@ -393,7 +398,7 @@

Section 2

- + diff --git a/one-shot/js/one-shot.js b/one-shot/js/one-shot.js index 764b949..680853d 100644 --- a/one-shot/js/one-shot.js +++ b/one-shot/js/one-shot.js @@ -3,7 +3,7 @@ * outstream-ads-gallery | https://github.com/radiantmediaplayer/outstream-ads-gallery */ -const elementID = 'rmpPlayer'; +const elementID = 'rmp'; const container = document.getElementById(elementID); const settings = { diff --git a/package.json b/package.json index 45b8437..cee28c2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "outstream-ads-gallery", - "version": "3.0.0", + "version": "3.1.0", "author": "Radiant Media Player ", "description": "A collection of examples for using Radiant Media Player with outstream video ads", "repository": { diff --git a/sticky/index.html b/sticky/index.html index c08dcd4..2e15ba0 100644 --- a/sticky/index.html +++ b/sticky/index.html @@ -11,8 +11,8 @@ - + + diff --git a/sticky/js/sticky.js b/sticky/js/sticky.js index 45181d4..3c67d25 100644 --- a/sticky/js/sticky.js +++ b/sticky/js/sticky.js @@ -3,7 +3,7 @@ * outstream-ads-gallery | https://github.com/radiantmediaplayer/outstream-ads-gallery */ -const elementID = 'rmpPlayer'; +const elementID = 'rmp'; const container = document.getElementById(elementID); const stickyContainer = document.getElementById('sticky-container');