-
272 |
273 |
274 |
275 |
276 |
277 |
278 |
279 |
280 |
281 |
282 |
283 |
284 |
285 |
286 |
287 |
288 |
289 |
290 |
291 |
├── .npmignore ├── .gitignore ├── images ├── close.png ├── slice1.png ├── minimize.png ├── restore.png ├── window-manager.afdesign ├── minimize.svg ├── close.svg ├── maximize.svg ├── import.js ├── restore.svg └── resize.svg ├── docs ├── jsdoc │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ ├── scripts │ │ ├── prettify │ │ │ ├── lang-css.js │ │ │ ├── Apache-License-2.0.txt │ │ │ └── prettify.js │ │ └── main.js │ ├── styles │ │ ├── prettify-jsdoc.css │ │ ├── prettify-tomorrow.css │ │ └── main.css │ ├── module-EventEmitter.html │ ├── external-EventEmitter.html │ ├── window-options.js.html │ ├── src_html.js.html │ ├── EventEmitter-.html │ ├── window-manager.js.html │ └── src_windowOptions.js.html ├── index.css ├── index.html ├── rollup.config.js ├── rollup.debug.js └── src │ ├── menu.js │ └── code.js ├── rollup.config.js ├── src ├── html.js ├── windowOptions.js ├── images.js ├── Snap.js └── WindowManager.js ├── LICENSE ├── package.json ├── .jsdoc.json └── README.md /.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.log 3 | docs -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | .parcel-cache 4 | .cache -------------------------------------------------------------------------------- /images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidfig/window-manager/HEAD/images/close.png -------------------------------------------------------------------------------- /images/slice1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidfig/window-manager/HEAD/images/slice1.png -------------------------------------------------------------------------------- /images/minimize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidfig/window-manager/HEAD/images/minimize.png -------------------------------------------------------------------------------- /images/restore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidfig/window-manager/HEAD/images/restore.png -------------------------------------------------------------------------------- /images/window-manager.afdesign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidfig/window-manager/HEAD/images/window-manager.afdesign -------------------------------------------------------------------------------- /docs/jsdoc/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidfig/window-manager/HEAD/docs/jsdoc/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /docs/jsdoc/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidfig/window-manager/HEAD/docs/jsdoc/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /docs/jsdoc/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidfig/window-manager/HEAD/docs/jsdoc/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /docs/jsdoc/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidfig/window-manager/HEAD/docs/jsdoc/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /docs/index.css: -------------------------------------------------------------------------------- 1 | html 2 | { 3 | font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; 4 | height: 100%; 5 | } 6 | 7 | body 8 | { 9 | margin: 0; 10 | background: #aaaaaa; 11 | } 12 | -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- 1 |
2 | 3 |