Issue details
Using the RESET ALL & SYNC ALL buttons in the ui don't do anything unless
ghostMode: { location: true }
is set. (this option does not seem documented)
Steps to reproduce/test case
- Start browser-sync using API
- Navigate around in new window
- Click RESET ALL in ui
- Nothing happens (although the socket receives the event)
- add
location: true to ghostMode config
- Repeat 1 to 3
- It works!
Please specify which version of Browsersync, node and npm you're running
- Browsersync [2.18.8]
- Node [7.8.0]
- Npm [4.2.0]
Affected platforms
Browsersync use-case
const browserSync = require('browser-sync').create();
browserSync.init({
proxy: {
target: 'localhost:9091',
ws: true
},
ghostMode: {
location: true // Fix
}
});