Skip to content

Commit feb84ae

Browse files
author
pipeline
committed
v1.0.0-preview is released
1 parent 5ca4c70 commit feb84ae

File tree

14 files changed

+44
-42
lines changed

14 files changed

+44
-42
lines changed

ReadMe.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Essential JS 2
22

3-
Essential JS 2 is a modern JavaScript UI toolkit that has been the built from the ground up to be lightweight, responsive, modular and touch friendly. It is written in TypeScript and has no external dependences.
3+
Essential JS 2 is a modern JavaScript UI toolkit that has been the built from the ground up to be lightweight, responsive, modular and touch friendly. It is written in TypeScript and has no external dependences. It comes with full documentation and support and is available under commercial and community licenses – please visit www.syncfusion.com to get started.
44

55
## Resources
66
* [Pure JS Demos](http://ej2.syncfusion.com/demos/)

dist/global/common/common.js

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -64,20 +64,21 @@
6464
/******/ // This file contains only the entry chunk.
6565
/******/ // The chunk loading function for additional chunks
6666
/******/ __webpack_require__.e = function requireEnsure(chunkId) {
67-
/******/ if(installedChunks[chunkId] === 0) {
68-
/******/ return Promise.resolve();
67+
/******/ var installedChunkData = installedChunks[chunkId];
68+
/******/ if(installedChunkData === 0) {
69+
/******/ return new Promise(function(resolve) { resolve(); });
6970
/******/ }
7071
/******/
7172
/******/ // a Promise means "currently loading".
72-
/******/ if(installedChunks[chunkId]) {
73-
/******/ return installedChunks[chunkId][2];
73+
/******/ if(installedChunkData) {
74+
/******/ return installedChunkData[2];
7475
/******/ }
7576
/******/
7677
/******/ // setup Promise in chunk cache
7778
/******/ var promise = new Promise(function(resolve, reject) {
78-
/******/ installedChunks[chunkId] = [resolve, reject];
79+
/******/ installedChunkData = installedChunks[chunkId] = [resolve, reject];
7980
/******/ });
80-
/******/ installedChunks[chunkId][2] = promise;
81+
/******/ installedChunkData[2] = promise;
8182
/******/
8283
/******/ // start chunk loading
8384
/******/ var head = document.getElementsByTagName('head')[0];

dist/global/common/common.min.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/global/common/common.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/global/dialog/dialog.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/global/dialog/dialog.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/global/ej2.js

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -64,20 +64,21 @@
6464
/******/ // This file contains only the entry chunk.
6565
/******/ // The chunk loading function for additional chunks
6666
/******/ __webpack_require__.e = function requireEnsure(chunkId) {
67-
/******/ if(installedChunks[chunkId] === 0) {
68-
/******/ return Promise.resolve();
67+
/******/ var installedChunkData = installedChunks[chunkId];
68+
/******/ if(installedChunkData === 0) {
69+
/******/ return new Promise(function(resolve) { resolve(); });
6970
/******/ }
7071
/******/
7172
/******/ // a Promise means "currently loading".
72-
/******/ if(installedChunks[chunkId]) {
73-
/******/ return installedChunks[chunkId][2];
73+
/******/ if(installedChunkData) {
74+
/******/ return installedChunkData[2];
7475
/******/ }
7576
/******/
7677
/******/ // setup Promise in chunk cache
7778
/******/ var promise = new Promise(function(resolve, reject) {
78-
/******/ installedChunks[chunkId] = [resolve, reject];
79+
/******/ installedChunkData = installedChunks[chunkId] = [resolve, reject];
7980
/******/ });
80-
/******/ installedChunks[chunkId][2] = promise;
81+
/******/ installedChunkData[2] = promise;
8182
/******/
8283
/******/ // start chunk loading
8384
/******/ var head = document.getElementsByTagName('head')[0];

dist/global/ej2.min.js

Lines changed: 12 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/global/ej2.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/global/popup/popup.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)