aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2020-10-11 10:59:43 +0200
committerGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2020-10-11 10:59:43 +0200
commit191cda42e6b0fde9959b832d24b23ee0bf82c7ed (patch)
tree841eea79da316b333869a7abbd0295451f43c21a
parent0319cc9d234e107109d988f36f2361b25f9f0777 (diff)
Misc. minor
Whitespace...
-rw-r--r--app/layout/layout.phtml2
-rw-r--r--p/api/greader.php1
-rw-r--r--p/scripts/main.js6
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">&times;</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();