Skip to content
This repository was archived by the owner on May 1, 2020. It is now read-only.

Commit 118189c

Browse files
authored
fix(devapp): do not enable shake (#1215)
1 parent f0ea0da commit 118189c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

bin/ion-dev.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -391,7 +391,9 @@ window.IonicDevServer = {
391391
}
392392
});
393393

394-
this.enableShake();
394+
if (location.href.indexOf('devapp=true') < 0) {
395+
this.enableShake();
396+
}
395397
},
396398

397399
enableShake: function() {

0 commit comments

Comments
 (0)