From 019d82f62808a47801c615cbb2718f75ab99fd8c Mon Sep 17 00:00:00 2001 From: Kuldeep M Date: Tue, 11 Jun 2019 14:28:23 +0100 Subject: [PATCH] [bug] fix link display resize default controls --- js/control.js | 4 ++-- js/version.js | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/js/control.js b/js/control.js index fcc7130f..8b8ac106 100644 --- a/js/control.js +++ b/js/control.js @@ -1480,7 +1480,7 @@ var control = (function() { type: "button", func: function() { _setValue("link.item.display.icon.size", 2); - link.render.item.icon.letter(); + link.render.item.display.icon(); update(); } }, { @@ -1503,7 +1503,7 @@ var control = (function() { element: helper.e(".control-link-item-name-size-default"), type: "button", func: function() { - _setValue("link.item.display.icon.size", 0.9); + _setValue("link.item.name.size", 0.9); link.render.item.name(); update(); } diff --git a/js/version.js b/js/version.js index 41b9f385..9848860e 100644 --- a/js/version.js +++ b/js/version.js @@ -1,7 +1,7 @@ var version = (function() { // version is normally bumped when the state needs changing or any new functionality is added - var current = "3.8.2"; + var current = "3.8.4"; var compare = function(a, b) { var pa = a.split(".");