This is an automated email from the ASF dual-hosted git repository.
sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-ponymail-foal.git
The following commit(s) were added to refs/heads/master by this push:
new b93b47f Regen
b93b47f is described below
commit b93b47fb0e447571176c05bdb88a2c9a4fd2cf0c
Author: Sebb <[email protected]>
AuthorDate: Thu Nov 18 17:04:09 2021 +0000
Regen
---
webui/js/ponymail.js | 20 ++++++++++----------
1 file changed, 10 insertions(+), 10 deletions(-)
diff --git a/webui/js/ponymail.js b/webui/js/ponymail.js
index 4437063..b0ae5e8 100644
--- a/webui/js/ponymail.js
+++ b/webui/js/ponymail.js
@@ -16,7 +16,7 @@
*/
// THIS IS AN AUTOMATICALLY COMBINED FILE. PLEASE EDIT source/*.js!!
-const PONYMAIL_REVISION = "2e94b83";
+const PONYMAIL_REVISION = "253a01a";
@@ -231,7 +231,7 @@ String.prototype.format = function() {
}
});
return rtn;
-}
+};
/**
@@ -270,7 +270,7 @@ Date.prototype.TZ_HHMM = function() {
let off_mm = Math.abs(off_mins%60);
let sgn = off_mins > 0 ? '-' : '+';
return sgn + off_hh.pad(2) + ':' + off_mm.pad(2);
-}
+};
@@ -301,14 +301,14 @@ Date.prototype.ISOBare = function() {
function isArray(value) {
return value && typeof value === 'object' && value instanceof Array &&
typeof value.length === 'number' && typeof value.splice === 'function' &&
!(value.propertyIsEnumerable('length'));
-};
+}
/* isHash: function to detect if an object is a hash */
function isHash(value) {
return value && typeof value === 'object' && !isArray(value);
-};
+}
/* Remove an array element by value */
@@ -338,10 +338,10 @@ Array.prototype.has = function(val) {
function isEmpty(obj) {
return (
- obj
- && Object.keys(obj).length === 0
- && Object.getPrototypeOf(obj) === Object.prototype
- )
+ obj &&
+ Object.keys(obj).length === 0 &&
+ Object.getPrototypeOf(obj) === Object.prototype
+ );
}
@@ -3404,7 +3404,7 @@ function parseURL(state) {
} else {
primeListView(state);
}
-};
+}