diff options
| -rw-r--r-- | app/layout/layout.phtml | 2 | ||||
| -rw-r--r-- | p/api/greader.php | 1 | ||||
| -rw-r--r-- | p/scripts/main.js | 6 |
3 files changed, 5 insertions, 4 deletions
diff --git a/app/layout/layout.phtml b/app/layout/layout.phtml index b7389c126..56101cf4d 100644 --- a/app/layout/layout.phtml +++ b/app/layout/layout.phtml @@ -74,7 +74,7 @@ if (_t('gen.dir') === 'rtl') { <!-- Popup--> <div id="popup"> <div id="popup-content"> - <div id="popup-close" class="popup-row">×</div> + <div id="popup-close" class="popup-row">×</div> <div id="popup-txt" class="popup-row"></div> <div id="popup-iframe-container" class="popup-row"> <div id="popup-iframe-sub"> diff --git a/p/api/greader.php b/p/api/greader.php index e93585275..f97dd5da4 100644 --- a/p/api/greader.php +++ b/p/api/greader.php @@ -20,6 +20,7 @@ Server-side API compatible with Google Reader API layer 2 * https://github.com/theoldreader/api * https://www.inoreader.com/developers/ * https://feedhq.readthedocs.io/en/latest/api/index.html +* https://github.com/bazqux/bazqux-api */ require(__DIR__ . '/../../constants.php'); diff --git a/p/scripts/main.js b/p/scripts/main.js index 3e9453be0..ae44e9e32 100644 --- a/p/scripts/main.js +++ b/p/scripts/main.js @@ -1289,10 +1289,10 @@ function init_popup() { //Configure close button. document.getElementById('popup-close').addEventListener('click', function (ev) { - closePopup(); - }); + closePopup(); + }); - //Configure close-on-click. + //Configure close-on-click. window.addEventListener('click', function (ev) { if (ev.target == popup) { closePopup(); |
