🐛 Fix typos in frontend

This commit is contained in:
Josh Soref 2021-11-15 09:51:34 -05:00
parent b7ba3098ae
commit 589e646023
65 changed files with 128 additions and 128 deletions

View file

@ -20,7 +20,7 @@ goog.provide("app.util.globals");
goog.scope(function() {
app.util.globals.global = goog.global;
function createGlobalEventEmiter(k) {
function createGlobalEventEmitter(k) {
/* Allow mocked objects to be event emitters, so other modules
* may subscribe to them.
*/
@ -36,7 +36,7 @@ goog.scope(function() {
if (typeof goog.global.window !== "undefined") {
return goog.global.window;
} else {
return createGlobalEventEmiter();
return createGlobalEventEmitter();
}
})();
@ -44,7 +44,7 @@ goog.scope(function() {
if (typeof goog.global.document !== "undefined") {
return goog.global.document;
} else {
return createGlobalEventEmiter();
return createGlobalEventEmitter();
}
})();
@ -52,7 +52,7 @@ goog.scope(function() {
if (typeof goog.global.location !== "undefined") {
return goog.global.location;
} else {
return createGlobalEventEmiter();
return createGlobalEventEmitter();
}
})();
@ -60,7 +60,7 @@ goog.scope(function() {
if (typeof goog.global.navigator !== "undefined") {
return goog.global.navigator;
} else {
return createGlobalEventEmiter();
return createGlobalEventEmitter();
}
})();