Browse Source

reverse for; removed / from serviceworker

pull/1/head
Senta Mandutz 5 years ago
parent
commit
df40bcbfb1
4 changed files with 22 additions and 22 deletions
  1. 4
    4
      public/createMessage.js
  2. 1
    1
      public/home.js
  3. 1
    1
      public/main.js
  4. 16
    16
      public/serviceWorker.js

+ 4
- 4
public/createMessage.js View File

@@ -5,19 +5,19 @@ const CreateMsgRouter = {
<form class="new-msg-form" @submit.prevent=createMsg>
<div class="form-group bmd-form-group">
<label class="bmd-label-floating">Betreff</label>
<input type="text" class="form-control" id="subject" value="WICHTIG!">
<input type="text" class="form-control" id="subject">
</div>
<div class="form-group bmd-form-group">
<label class="bmd-label-floating">Tags</label>
<input type="text" class="form-control" id="tag" value="#efi">
<input type="text" class="form-control" id="tag">
</div>
<div class="form-group">
<label class="bmd-label-floating">Nachricht</label>
<textarea class="form-control" id="message" rows="5">Nachricht</textarea>
<textarea class="form-control" id="message" rows="5"></textarea>
</div>
<div class="form-group">
<label class="bmd-label-floating">User</label>
<input type="text" class="form-control" id="user" value="Dito27">
<input type="text" class="form-control" id="user">
</div>
<button class="btn btn-default"><a @click="$router.go(-1)">ABBRECHEN </a></button>
<button type="submit" class="btn btn-raised om-btn"><a @click="$router.push('/home')">SENDEN</a></button>

+ 1
- 1
public/home.js View File

@@ -2,7 +2,7 @@ const HomeRouter = {
template: `
<div id="om-msg-cards">
<MsgCard
v-for="id in messagelist"
v-for="id in messagelist.slice().reverse()"
:key="id"
:msg="messages[id] || {}"
></MsgCard>

+ 1
- 1
public/main.js View File

@@ -7,7 +7,7 @@ if ('serviceWorker' in navigator) {
window.addEventListener('load', function () {
// Register a service worker hosted at the root of the
// site using the default scope ('/').
return navigator.serviceWorker.register('/serviceWorker.js', {
return navigator.serviceWorker.register('serviceWorker.js', {
scope: '/'
}).then(function (registration) {
return console.log('[ServiceWorker] Registration succeeded: ', registration);

+ 16
- 16
public/serviceWorker.js View File

@@ -6,21 +6,21 @@ const staticCacheKey = cacheKey + 's-v' + '1';
const dataCacheKey = casheKey + 'd-v' + '1';
const staticFilesToCache = [
'/',
'/manifest.json',
'/index.html',
'/message.html',
'/bookmark.js',
'/createMessage.js',
'/files.js',
'/home.js',
'/main.js',
'/profil.js',
'/favicon.ico',
'/img/th_nbg_ohmicon_amp.png',
'/lib/jquery-3.3.1.min.js',
'/lib/vue.js',
'/lib/vue-router.js',
'/style/style.css',
'manifest.json',
'index.html',
'message.html',
'bookmark.js',
'createMessage.js',
'files.js',
'home.js',
'main.js',
'profil.js',
'favicon.ico',
'img/th_nbg_ohmicon_amp.png',
'lib/jquery-3.3.1.min.js',
'lib/vue.js',
'lib/vue-router.js',
'style/style.css',
];
const dataFilesToCache = [
'',
@@ -76,7 +76,7 @@ self.addEventListener('activate', function(event) {

// NOTE: Fetch structure // TODO: Setup fetching method
self.addEventListener('fetch', function(event) {
const dataUrl = ' localhost:8888/'; // Provide HTTPS URL for query data.
const dataUrl = ' localhost:8013/'; // Provide HTTPS URL for query data.
// const url = new URL(event.request.url);
console.log('[ServiceWorker] Fetch', event.request.url);


Loading…
Cancel
Save