From dc3e465ef8d7bb44ba12b1413eb94938dd19631d Mon Sep 17 00:00:00 2001 From: guilhermejz Date: Fri, 20 Oct 2023 08:37:10 -0300 Subject: [PATCH] Remove \n on icon-right append #21 --- plugin.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin.js b/plugin.js index 14e75fd..7151ae4 100644 --- a/plugin.js +++ b/plugin.js @@ -121,7 +121,7 @@ if (this.data.hasOwnProperty('bsiconright')) { jQuery('.bs-icon-right', $el).remove(); if (this.data.bsiconright) { - $el.append(' \n'); + $el.append(' '); } } @@ -135,7 +135,7 @@ if (this.data.hasOwnProperty('faiconright')) { jQuery('.fa-icon-right', $el).remove(); if (this.data.faiconright) { - $el.append(' \n'); + $el.append(' '); } } },