@litejs/ui 23.3.0 → 23.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.js +1 -4
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -98,7 +98,6 @@
98
98
  }(this) // jshint ignore:line
99
99
 
100
100
 
101
- /*! litejs.com/MIT-LICENSE.txt */
102
101
 
103
102
  /* litejs.com/MIT-LICENSE.txt */
104
103
 
@@ -227,7 +226,6 @@
227
226
 
228
227
 
229
228
 
230
- /*! litejs.com/MIT-LICENSE.txt */
231
229
 
232
230
  /* litejs.com/MIT-LICENSE.txt */
233
231
 
@@ -344,7 +342,7 @@
344
342
  if (view !== close) emit(view, "change", close)
345
343
 
346
344
  for (tmp in params) if (tmp.charAt(0) !== "_") {
347
- if ((syncResume = hasOwn.call(paramCb, tmp)) && paramCb[tmp] || paramCb["*"]) {
345
+ if ((syncResume = hasOwn.call(paramCb, tmp) && paramCb[tmp] || paramCb["*"])) {
348
346
  syncResume.call(view, params[tmp], tmp, params)
349
347
  syncResume = null
350
348
  }
@@ -488,7 +486,6 @@
488
486
  }(this) // jshint ignore:line
489
487
 
490
488
 
491
- /*! litejs.com/MIT-LICENSE.txt */
492
489
 
493
490
  /* litejs.com/MIT-LICENSE.txt */
494
491
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@litejs/ui",
3
- "version": "23.3.0",
3
+ "version": "23.3.1",
4
4
  "description": "UI engine for LiteJS full-stack framework",
5
5
  "license": "MIT",
6
6
  "author": "Lauri Rooden <lauri@rooden.ee>",