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:38:58 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2018-12-28 14:38:58 +0000
commitfa4ece01aed54c9a146af868be0d3db611ded229 (patch)
tree319cffc5f6c2abd7cce514383716153469fc6295 /web/gui/src/dashboard.js/compatibility.js
parentNew upstream version 1.11.0+dfsg (diff)
downloadnetdata-fa4ece01aed54c9a146af868be0d3db611ded229.tar.xz
netdata-fa4ece01aed54c9a146af868be0d3db611ded229.zip
New upstream version 1.11.1+dfsgupstream/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;
+ };
+}