Skip to content

Commit

Permalink
fix(measure): Changes the high five paths
Browse files Browse the repository at this point in the history
Most certainly breaks Android version
  • Loading branch information
MathieuNls committed Nov 3, 2016
1 parent 7ec7905 commit 89fa813
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/pages/measure/measure.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export class MeasurePage {

//css variables
active:boolean = false;
highFiveSrc= "../assets/images/h5.png";
highFiveSrc= "assets/images/h5.png";
waitingApi = false;

constructor(
Expand Down Expand Up @@ -216,10 +216,10 @@ export class MeasurePage {

setTimeout(() => {
console.log("in");
this.highFiveSrc = "../assets/images/h5.gif"
this.highFiveSrc = "assets/images/h5.gif"
setTimeout(() => {
console.log("in2");
this.highFiveSrc = "../assets/images/h5.png"
this.highFiveSrc = "assets/images/h5.png"
}, 2000);
}, 1000);
this.watch = watch;
Expand Down

0 comments on commit 89fa813

Please sign in to comment.