From e536cd6d509e5d2ccf3f74e3e3c9845c676fe354 Mon Sep 17 00:00:00 2001 From: Sarah Dayan Date: Thu, 30 Aug 2018 18:34:19 +0200 Subject: [PATCH] Change Google API key --- demos/angular/geo/src/index.html | 4 ++-- demos/instantsearchjs/geo/index.html | 2 +- demos/react/geo/public/index.html | 1 - demos/react/geo/src/App.js | 2 +- demos/vue/geo/src/main.js | 17 ++++++++--------- 5 files changed, 12 insertions(+), 14 deletions(-) diff --git a/demos/angular/geo/src/index.html b/demos/angular/geo/src/index.html index c52ad22a..fd891d6f 100644 --- a/demos/angular/geo/src/index.html +++ b/demos/angular/geo/src/index.html @@ -15,7 +15,7 @@ - + - + \ No newline at end of file diff --git a/demos/instantsearchjs/geo/index.html b/demos/instantsearchjs/geo/index.html index 938e5cad..6eaf4207 100644 --- a/demos/instantsearchjs/geo/index.html +++ b/demos/instantsearchjs/geo/index.html @@ -27,7 +27,7 @@ Algolia - + diff --git a/demos/react/geo/public/index.html b/demos/react/geo/public/index.html index 46d94800..fa6d7ba7 100644 --- a/demos/react/geo/public/index.html +++ b/demos/react/geo/public/index.html @@ -29,7 +29,6 @@ GitHub - Powered by Algolia - \ No newline at end of file diff --git a/demos/react/geo/src/App.js b/demos/react/geo/src/App.js index 717527c0..e82c431c 100644 --- a/demos/react/geo/src/App.js +++ b/demos/react/geo/src/App.js @@ -25,7 +25,7 @@ class App extends Component {
{/* Uncomment the following widget to add a map */} {/*
- + {google => }
*/} diff --git a/demos/vue/geo/src/main.js b/demos/vue/geo/src/main.js index bbee46a9..d7746ee6 100644 --- a/demos/vue/geo/src/main.js +++ b/demos/vue/geo/src/main.js @@ -1,18 +1,17 @@ -import Vue from 'vue'; -import App from './App.vue'; -import InstantSearch from 'vue-instantsearch'; +import Vue from 'vue' +import App from './App.vue' +import InstantSearch from 'vue-instantsearch' import * as VueGoogleMaps from 'vue2-google-maps' Vue.use(VueGoogleMaps, { load: { - key: 'AIzaSyBnDR4e5_qobPG6Vn_zjhc1vyOIooChZt8', - }, + key: 'AIzaSyBawL8VbstJDdU5397SUX7pEt9DslAwWgQ' + } }) - -Vue.use(InstantSearch); +Vue.use(InstantSearch) new Vue({ el: '#app', - render: h => h(App), -}); + render: h => h(App) +})