From b3863f5c4984ae814eeb32407ae5899693b735ab Mon Sep 17 00:00:00 2001 From: Alessio Vanni Date: Wed, 20 Feb 2019 00:02:26 +0100 Subject: =?UTF-8?q?Change=20all=20names=20from=20=CE=BCMatrix=20to=20?= =?UTF-8?q?=CE=B7Matrix?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Hopefully I caught all of them! --- js/utils.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'js/utils.js') diff --git a/js/utils.js b/js/utils.js index 3b1d170..ccd5e88 100644 --- a/js/utils.js +++ b/js/utils.js @@ -24,13 +24,13 @@ /******************************************************************************/ -µMatrix.gotoURL = function(details) { +ηMatrix.gotoURL = function(details) { vAPI.tabs.open(details); }; /******************************************************************************/ -µMatrix.gotoExtensionURL = function(details) { +ηMatrix.gotoExtensionURL = function(details) { if ( details.url.startsWith('logger-ui.html') ) { if ( details.shiftKey ) { this.changeUserSettings( @@ -46,13 +46,13 @@ /******************************************************************************/ -µMatrix.LineIterator = function(text, offset) { +ηMatrix.LineIterator = function(text, offset) { this.text = text; this.textLen = this.text.length; this.offset = offset || 0; }; -µMatrix.LineIterator.prototype = { +ηMatrix.LineIterator.prototype = { next: function() { var lineEnd = this.text.indexOf('\n', this.offset); if ( lineEnd === -1 ) { @@ -85,7 +85,7 @@ /******************************************************************************/ -µMatrix.setToArray = typeof Array.from === 'function' ? +ηMatrix.setToArray = typeof Array.from === 'function' ? Array.from : function(dict) { var out = [], @@ -99,7 +99,7 @@ return out; }; -µMatrix.setFromArray = function(arr) { +ηMatrix.setFromArray = function(arr) { return new Set(arr); }; -- cgit v1.2.3