@web-atoms/web-controls 2.4.13 → 2.4.14

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 +2 -6
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -52,14 +52,10 @@
52
52
  const viewName = view.startsWith("@") ? view : `${package}/${view}`;
53
53
 
54
54
  const init = () => {
55
- function empty () {
56
- return function () {
57
- return null
58
- }
59
- }
55
+ const empty = () => () => null;
60
56
 
61
57
  AmdLoader.moduleProgress = empty;
62
- function done () {
58
+ const done = () => {
63
59
  const we = document.getElementById("webAtomsLoader");
64
60
  if (we) {
65
61
  we.remove();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@web-atoms/web-controls",
3
- "version": "2.4.13",
3
+ "version": "2.4.14",
4
4
  "description": "HTML controls for web atoms core",
5
5
  "main": "index.js",
6
6
  "scripts": {