Skip to content

Commit

Permalink
v2.89.1
Browse files Browse the repository at this point in the history
- Fix: render a component in a loop
  • Loading branch information
sucom committed Dec 14, 2022
1 parent 81a0378 commit 270cb80
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "Single Page Application (SPA) Simplified Framework/Library",
"main": "dist/spa-bundle.js",

"version": "2.89.0",
"version": "2.89.1",
"license": "MIT",
"homepage": "https://github.com/sucom/SPA.js",

Expand Down
4 changes: 2 additions & 2 deletions dist/spa-bundle.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/spa-bundle.slim.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "spa.js",
"version": "2.89.0",
"version": "2.89.1",
"description": "Single Page Application (SPA) Simplified Framework/Library",
"main": "dist/spa-bundle.js",
"repository": {
Expand Down
4 changes: 2 additions & 2 deletions src/spa.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
*/

(function() {
var _VERSION = '2.89.0';
var _VERSION = '2.89.1';

/* Establish the win object, 'window' in the browser */
var win = window||globalThis, _doc = document, isSPAReady, docBody = _doc.body;
Expand Down Expand Up @@ -5841,7 +5841,7 @@

_log.log('~ renderComponent', componentNameFull, options);

var keyInProgress = componentNameFull;
var keyInProgress = componentNameFull+((options && options.target) || '');
if (is$renderLocked(keyInProgress)) return;
lock$render(keyInProgress);

Expand Down
2 changes: 1 addition & 1 deletion src/spa.min.js

Large diffs are not rendered by default.

0 comments on commit 270cb80

Please sign in to comment.