Compare commits

...

2 Commits

Author SHA1 Message Date
basti a6d094af2b Revert to rs.js release 2020-04-28 15:31:23 +02:00
basti 185ef5bfda Add license; change dirname 2020-03-24 11:22:50 -05:00
8 changed files with 36 additions and 475 deletions
+8 -5
View File
@@ -1,8 +1,11 @@
import ApiKeys from './modules/rs-module-api-keys.mjs'; //
import Geocoder from './modules/geocode.mjs'; // License: Do whatever you want with it. I'm not liable.
import initializeSettings from './modules/settings.mjs'; //
import initializeProfileUpdates from './modules/profile.mjs'; import ApiKeys from './lib/rs-module-api-keys.mjs';
import { showElement, hideElement, renderImage } from './modules/dom-helpers.mjs'; import Geocoder from './lib/geocode.mjs';
import initializeSettings from './lib/settings.mjs';
import initializeProfileUpdates from './lib/profile.mjs';
import { showElement, hideElement, renderImage } from './lib/dom-helpers.mjs';
const remoteStorage = new RemoteStorage({ modules: [ApiKeys] }); const remoteStorage = new RemoteStorage({ modules: [ApiKeys] });
remoteStorage.access.claim('profile', 'rw'); remoteStorage.access.claim('profile', 'rw');
+27 -469
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
File diff suppressed because one or more lines are too long