mirror of
https://github.com/penpot/penpot.git
synced 2025-07-28 04:37:38 +02:00
🐛 Fix typos in frontend
This commit is contained in:
parent
b7ba3098ae
commit
589e646023
65 changed files with 128 additions and 128 deletions
|
@ -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();
|
||||
}
|
||||
})();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue