From ae6732f32bdf82964c5ad3730b8f451519647f4a Mon Sep 17 00:00:00 2001 From: Rex Date: Thu, 22 Sep 2016 17:02:06 +0100 Subject: [PATCH] BrowserSync: suggest to set "scrollRestoreTechnique" to "cookie" When refreshing, Browser Sync would remember where the page was last and scroll to the correct location. It is very handy for the l10n teams. --- gulpfile.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 80b6839cde..4350650dd2 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -1160,7 +1160,11 @@ function watchAndSync(options, cb) { execCommands(['npm run harp -- server .'], {}, cb); var browserSync = require('browser-sync').create(); - browserSync.init({proxy: 'localhost:9000'}); + browserSync.init( + { + proxy: 'localhost:9000', + scrollRestoreTechnique: 'cookie' + }); // When using the --focus=name flag, only **/name/**/*.* example files and // **/name.jade files are watched. This is useful for performance reasons.