Fix misc. typos (#2311)
Found via `codespell -q 3 -S ./yarn.lock,./static/geolocations,./static/locales -L te`
This commit is contained in:
parent
7adbdb7a53
commit
3440ee507c
|
@ -31,7 +31,7 @@ new Vue({
|
||||||
render: h => h(App)
|
render: h => h(App)
|
||||||
})
|
})
|
||||||
|
|
||||||
// to avoid accesing electron api from web app build
|
// to avoid accessing electron api from web app build
|
||||||
if (window && window.process && window.process.type === 'renderer') {
|
if (window && window.process && window.process.type === 'renderer') {
|
||||||
const { ipcRenderer } = require('electron')
|
const { ipcRenderer } = require('electron')
|
||||||
|
|
||||||
|
|
|
@ -1119,7 +1119,7 @@ export default Vue.extend({
|
||||||
interval: Number(interval) // How long one image is used
|
interval: Number(interval) // How long one image is used
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
// TODO: MAKE A VARIABLE WHICH CAN CHOOSE BETWEEN STROYBOARD ARRAY ELEMENTS
|
// TODO: MAKE A VARIABLE WHICH CAN CHOOSE BETWEEN STORYBOARD ARRAY ELEMENTS
|
||||||
this.buildVTTFileLocally(storyboardArray[1]).then(async (results) => {
|
this.buildVTTFileLocally(storyboardArray[1]).then(async (results) => {
|
||||||
const userData = await this.getUserDataPath()
|
const userData = await this.getUserDataPath()
|
||||||
let fileLocation
|
let fileLocation
|
||||||
|
|
|
@ -83,7 +83,7 @@ function cacheFirstFetch(event) {
|
||||||
event.respondWith(
|
event.respondWith(
|
||||||
fromCache(event.request).then(
|
fromCache(event.request).then(
|
||||||
function (response) {
|
function (response) {
|
||||||
// The response was found in the cache so we responde with it and update the entry
|
// The response was found in the cache so we respond with it and update the entry
|
||||||
|
|
||||||
// This is where we call the server to get the newest version of the
|
// This is where we call the server to get the newest version of the
|
||||||
// file to use the next time we show view
|
// file to use the next time we show view
|
||||||
|
|
Loading…
Reference in New Issue