From 1560ac82916bd5824c108aefec22fc8240d3044b Mon Sep 17 00:00:00 2001 From: jens Date: Tue, 14 Jan 2020 12:00:59 +0100 Subject: [PATCH 1/2] Revert change --- README.md | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/README.md b/README.md index fbcd2cce0..8482ae4f3 100644 --- a/README.md +++ b/README.md @@ -1,16 +1,6 @@ BootsFaces-OSP ============== -### Note about this repository -This is our maintained repository of the original [BootsFaces repository](https://github.com/TheCoder4eu/BootsFaces-OSP). - -It includes our changes, bug fixes and improvements. All changes will be send to the original repository maintainer -as a pull request, hopefully included in a future version of the origin repository. - -Here you will find our [SEB Snapshot Showcase](http://bootsfaces.sebsoftware.de) - ---- -

From 179774da5140b399f88f828f60f705af68dc62fa Mon Sep 17 00:00:00 2001 From: jens Date: Sun, 28 Jun 2020 16:42:20 +0200 Subject: [PATCH 2/2] Fix class selection in update This fixes an issue with the class selector in an update expression. i.E. update="mainInfo formBeaninfo @(.message)" was working well, resolving newUpdate to "fEditor:mainInfo fEditor:formBeaninfo fEditor:j_idt84" but an update="mainInfo @(.message) formBeaninfo" was evaluated to wrong concatenation: "fEditor:mainInfo fEditor:j_idt84fEditor:formBeaninfo " --- gradleResources/staticResources/js/bsf.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradleResources/staticResources/js/bsf.js b/gradleResources/staticResources/js/bsf.js index e4616e8f7..5adc80024 100644 --- a/gradleResources/staticResources/js/bsf.js +++ b/gradleResources/staticResources/js/bsf.js @@ -146,7 +146,7 @@ BsF.ajax.resolveJQuery = function(update) { var jQueryObjects = $(jqueryexp); if (jQueryObjects) { jQueryObjects.each(function(index, element) { - newUpdate += " " + element.id; + newUpdate += element.id + " "; }); }