summaryrefslogtreecommitdiffstats
path: root/web/gui/src/dashboard.js/compatibility.js
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2018-12-28 14:42:52 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2018-12-28 14:42:52 +0000
commit12b9efaebb6d008437af4a72a98d05c4319fc825 (patch)
tree70876046e52ae898dd7327424f2c27fde1a5d45f /web/gui/src/dashboard.js/compatibility.js
parentReleasing debian version 1.11.0+dfsg-1~exp1. (diff)
downloadnetdata-12b9efaebb6d008437af4a72a98d05c4319fc825.tar.xz
netdata-12b9efaebb6d008437af4a72a98d05c4319fc825.zip
Merging upstream version 1.11.1+dfsg
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'web/gui/src/dashboard.js/compatibility.js')
-rw-r--r--web/gui/src/dashboard.js/compatibility.js31
1 files changed, 31 insertions, 0 deletions
diff --git a/web/gui/src/dashboard.js/compatibility.js b/web/gui/src/dashboard.js/compatibility.js
new file mode 100644
index 000000000..e1ecfbdb2
--- /dev/null
+++ b/web/gui/src/dashboard.js/compatibility.js
@@ -0,0 +1,31 @@
+// *** src/dashboard.js/compatibility.js
+
+// Compatibility fixes.
+
+// fix IE issue with console
+if (!window.console) {
+ window.console = {
+ log: function () {
+ }
+ };
+}
+
+// if string.endsWith is not defined, define it
+if (typeof String.prototype.endsWith !== 'function') {
+ String.prototype.endsWith = function (s) {
+ if (s.length > this.length) {
+ return false;
+ }
+ return this.slice(-s.length) === s;
+ };
+}
+
+// if string.startsWith is not defined, define it
+if (typeof String.prototype.startsWith !== 'function') {
+ String.prototype.startsWith = function (s) {
+ if (s.length > this.length) {
+ return false;
+ }
+ return this.slice(s.length) === s;
+ };
+}