Skip to content

Commit

Permalink
testing some idea
Browse files Browse the repository at this point in the history
  • Loading branch information
katemat committed Jul 16, 2020
1 parent 5f2e9ec commit 03e004f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions public/trashure-client.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ function showPosition(position, cb) {

// Fetches information to be displayed
const handlePinClick = function (e) {
// const url = `https://trashure-app.herokuapp.com/api/trashure_items/${e.target.metadata.id}`;
const url = `http://localhost:8080/api/trashure_items/${e.target.metadata.id}`;
const url = `https://trashure-app.herokuapp.com/api/trashure_items/${e.target.metadata.id}`;
// const url = `http://localhost:8080/api/trashure_items/${e.target.metadata.id}`;
axios.get(url).then((res) => {
res.data.forEach(function (data) {
document.querySelector('.description-of-item').classList.remove('hidden');
Expand All @@ -90,8 +90,8 @@ const handlePinClick = function (e) {

reverseGeocode(fakevent);

// const url = `https://trashure-app.herokuapp.com/api/users/${data.owner_id}`;
const url = `http://localhost:8080/api/users/${data.owner_id}`;
const url = `https://trashure-app.herokuapp.com/api/users/${data.owner_id}`;
// const url = `http://localhost:8080/api/users/${data.owner_id}`;
axios.get(url).then((res) => {
document.querySelector(
'.owner-of-item'
Expand Down Expand Up @@ -155,8 +155,8 @@ function getMap() {

var center = map.getCenter();

// const url = 'https://trashure-app.herokuapp.com/api/trashure_items';
const url = 'http://localhost:8080/api/trashure_items';
const url = 'https://trashure-app.herokuapp.com/api/trashure_items';
// const url = 'http://localhost:8080/api/trashure_items';

axios.get(url).then((res) => {
res.data.forEach(function (data) {
Expand Down

0 comments on commit 03e004f

Please sign in to comment.