aboutsummaryrefslogtreecommitdiffstats
path: root/js/utils.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/utils.js')
-rw-r--r--js/utils.js12
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);
};