diff options
author | Alessio Vanni <vannilla@firemail.cc> | 2019-02-20 00:02:26 +0100 |
---|---|---|
committer | Alessio Vanni <vannilla@firemail.cc> | 2019-02-20 00:02:26 +0100 |
commit | b3863f5c4984ae814eeb32407ae5899693b735ab (patch) | |
tree | 097e3320401da482117c07a2f08d98297340abd6 /js/utils.js | |
parent | a35201f45aa8e7735f668d1bb349fca3b1c3cc1e (diff) | |
download | ematrix-b3863f5c4984ae814eeb32407ae5899693b735ab.tar.lz ematrix-b3863f5c4984ae814eeb32407ae5899693b735ab.tar.xz ematrix-b3863f5c4984ae814eeb32407ae5899693b735ab.zip |
Change all names from μMatrix to ηMatrix
Hopefully I caught all of them!
Diffstat (limited to 'js/utils.js')
-rw-r--r-- | js/utils.js | 12 |
1 files changed, 6 insertions, 6 deletions
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); }; |