From 56f11f404f49009ae85c9df05a04712e6fd0ebe7 Mon Sep 17 00:00:00 2001 From: Adi Vaknin Date: Fri, 23 Feb 2018 16:58:43 +0200 Subject: [PATCH] Added missing settings to mapping in routing.js so they will update the url --- lib/routing.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lib/routing.js b/lib/routing.js index 0bc00e9..c5b6a8c 100644 --- a/lib/routing.js +++ b/lib/routing.js @@ -20,13 +20,19 @@ const mapper = new Morph({ const mappings = [ { field: 'bg:backgroundColor' }, { field: 't:theme' }, + { field: 'wt:windowTheme' }, { field: 'l:language' }, { field: 'ds:dropShadow', type: 'bool' }, + { field: 'dsyoff:dropShadowOffsetY' }, + { field: 'dsblur:dropShadowBlurRadius' }, { field: 'wc:windowControls', type: 'bool' }, { field: 'wa:widthAdjustment', type: 'bool' }, { field: 'pv:paddingVertical' }, { field: 'ph:paddingHorizontal' }, { field: 'ln:lineNumbers', type: 'bool' }, + { field: 'fm:fontFamily' }, + { field: 'fs:fontSize' }, + { field: 'si:squaredImage', type: 'bool' }, { field: 'code:code' } ]