15 |
16 |
17 | 18 | 19 |
20 |
21 |
22 |
24 | 25 |
26 |
27 |
29 |
RJS
30 |├── assets └── logo.png ├── examples ├── CSS │ ├── pacifico-regular-webfont.woff │ ├── pacifico-regular-webfont.woff2 │ ├── stylesheet.css │ └── main.css ├── JS │ ├── main.js │ └── rotten.js └── index.html ├── .github ├── SECURITY.md ├── ISSUE_TEMPLATE │ ├── feature_request.md │ └── bug_report.md └── CONTRIBUTING.md ├── package.json ├── LICENSE.md ├── README.md ├── rotten.min.js ├── DOCSv1.9.0.md ├── DOCUMENTATION.md ├── rotten.js └── development └── rotten.js /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nguyenphuminh/rottenjs/HEAD/assets/logo.png -------------------------------------------------------------------------------- /examples/CSS/pacifico-regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nguyenphuminh/rottenjs/HEAD/examples/CSS/pacifico-regular-webfont.woff -------------------------------------------------------------------------------- /examples/CSS/pacifico-regular-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nguyenphuminh/rottenjs/HEAD/examples/CSS/pacifico-regular-webfont.woff2 -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- 1 | # Security Policy 2 | 3 | ## Supported Versions 4 | 5 | | Version | Supported | 6 | | ------- | ------------------ | 7 | | 1.x.x | :white_check_mark: | 8 | | 1.2.x | :x: | 9 | | 0.x.x | :x: | 10 | -------------------------------------------------------------------------------- /examples/CSS/stylesheet.css: -------------------------------------------------------------------------------- 1 | /*! Generated by Font Squirrel (https://www.fontsquirrel.com) on September 26, 2020 */ 2 | 3 | 4 | 5 | @font-face { 6 | font-family: 'pacificoregular'; 7 | src: url('pacifico-regular-webfont.woff2') format('woff2'), 8 | url('pacifico-regular-webfont.woff') format('woff'); 9 | font-weight: normal; 10 | font-style: normal; 11 | 12 | } -------------------------------------------------------------------------------- /examples/JS/main.js: -------------------------------------------------------------------------------- 1 | function add() { 2 | name.input('',function(){ 3 | alert('Task is empty!'); 4 | },function(){ 5 | content = content + "
RJS
30 |
3 | A simple, light-weight Javascript library for DOM manipulation and UI development
5 |