文件操作 - compatibility.js
返回文件管理
返回主菜单
删除本文件
文件: /usr/local/src/netdata/web/gui/src/dashboard.js/compatibility.js
编辑文件内容
// *** 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; }; }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件