├── .DS_Store ├── .gitignore ├── NEJ ├── .DS_Store ├── components │ ├── login.html │ └── login.js ├── index.html ├── index.js ├── nej │ ├── .DS_Store │ └── src │ │ ├── .DS_Store │ │ ├── base │ │ ├── .DS_Store │ │ ├── .dep │ │ ├── chain.js │ │ ├── config.js │ │ ├── constant.js │ │ ├── element.js │ │ ├── event.js │ │ ├── global.js │ │ ├── klass.js │ │ ├── platform.js │ │ ├── platform │ │ │ ├── config.js │ │ │ ├── config.patch.js │ │ │ ├── element.js │ │ │ ├── element.patch.js │ │ │ ├── event.js │ │ │ ├── event.patch.js │ │ │ ├── util.js │ │ │ └── util.patch.js │ │ └── util.js │ │ └── define.js └── regularjs │ └── dist │ └── regular.js ├── README.md ├── spa ├── .gitignore ├── README.md ├── app │ ├── assets │ │ ├── css │ │ │ ├── bootstrap.css │ │ │ └── index.css │ │ ├── favicon.ico │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ ├── img │ │ │ ├── logo.png │ │ │ └── logo.svg │ │ └── index.html │ └── script │ │ ├── components │ │ ├── mask.js │ │ ├── menu.js │ │ ├── modal.html │ │ ├── modal.js │ │ ├── notify.js │ │ ├── pager.js │ │ └── progress.js │ │ ├── index.js │ │ ├── module │ │ ├── app.js │ │ ├── blog.detail.js │ │ ├── blog.edit.js │ │ ├── blog.js │ │ ├── blog.list.js │ │ ├── chat.js │ │ ├── index.js │ │ ├── login.js │ │ └── poster.js │ │ ├── routes.js │ │ ├── service │ │ ├── blog.js │ │ └── index.js │ │ └── util │ │ ├── consts.js │ │ ├── dom.js │ │ ├── extension.js │ │ ├── fetch.js │ │ └── helper.js ├── gulpfile.js ├── package.json └── scripts │ ├── routes.js │ └── webpack.config.js └── webpack ├── bundle.js ├── index.html ├── package.json ├── src ├── index.js ├── login-amd.js ├── login-babel.js ├── login-commonjs.js ├── login.html └── login.rgl └── webpack.config.js /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regularjs/example/aa095048f1c964c0817ffc3a52ce24288bc19731/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Created by https://www.gitignore.io/api/node 2 | 3 | ### Node ### 4 | # Logs 5 | logs 6 | *.log 7 | npm-debug.log* 8 | 9 | # Runtime data 10 | pids 11 | *.pid 12 | *.seed 13 | 14 | # Directory for instrumented libs generated by jscoverage/JSCover 15 | lib-cov 16 | 17 | # Coverage directory used by tools like istanbul 18 | coverage 19 | 20 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 21 | .grunt 22 | 23 | # node-waf configuration 24 | .lock-wscript 25 | 26 | # Compiled binary addons (http://nodejs.org/api/addons.html) 27 | build/Release 28 | 29 | # Dependency directory 30 | # https://docs.npmjs.com/misc/faq#should-i-check-my-node-modules-folder-into-git 31 | node_modules 32 | 33 | -------------------------------------------------------------------------------- /NEJ/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regularjs/example/aa095048f1c964c0817ffc3a52ce24288bc19731/NEJ/.DS_Store -------------------------------------------------------------------------------- /NEJ/components/login.html: -------------------------------------------------------------------------------- 1 | 2 |
487 | * 123 488 | * 123 489 | * 123 490 | * 123 491 | * 492 | *
493 | *