gitextract_ljf3wg8j/ ├── .gitattributes ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── lib/ │ └── jsframe.min.js.LICENSE.txt ├── package.json ├── public/ │ ├── examples/ │ │ ├── jaq/ │ │ │ ├── chatbot_ui.html │ │ │ ├── event_handling.html │ │ │ ├── iframe.html │ │ │ ├── iframe_content01.html │ │ │ ├── iframe_content02.html │ │ │ ├── iframe_content03.html │ │ │ ├── index.html │ │ │ ├── modal.html │ │ │ ├── position.html │ │ │ ├── preset_material.html │ │ │ ├── preset_win10.html │ │ │ ├── preset_yosemite.html │ │ │ ├── preset_yosemite_auto.html │ │ │ ├── styling.html │ │ │ ├── toast.html │ │ │ ├── toast_simple.html │ │ │ └── window_control.html │ │ ├── v100/ │ │ │ ├── ex00/ │ │ │ │ ├── iframe.html │ │ │ │ ├── iframe_content01.html │ │ │ │ ├── iframe_content02.html │ │ │ │ ├── index.html │ │ │ │ ├── modal.html │ │ │ │ ├── modify_content.html │ │ │ │ ├── multi_window.html │ │ │ │ ├── preset_style.html │ │ │ │ └── preset_yosemite.html │ │ │ ├── ex01/ │ │ │ │ ├── ex01.css │ │ │ │ ├── ex01.js │ │ │ │ └── index.html │ │ │ ├── ex02/ │ │ │ │ ├── ex02.css │ │ │ │ ├── ex02.js │ │ │ │ ├── ex02_inner01.html │ │ │ │ ├── ex02_inner02.html │ │ │ │ ├── ex02_inner03.html │ │ │ │ ├── ex02_inner04.html │ │ │ │ ├── ex02_style.js │ │ │ │ └── index.html │ │ │ ├── ex03/ │ │ │ │ ├── ex03.css │ │ │ │ ├── ex03.js │ │ │ │ ├── ex03_style.js │ │ │ │ └── index.html │ │ │ ├── ex04/ │ │ │ │ ├── ex04.css │ │ │ │ ├── ex04.js │ │ │ │ ├── ex04_style.js │ │ │ │ └── index.html │ │ │ ├── ex05/ │ │ │ │ ├── ex05.css │ │ │ │ ├── ex05.js │ │ │ │ ├── ex05_inner.html │ │ │ │ ├── ex05_style01.js │ │ │ │ ├── ex05_style02.js │ │ │ │ └── index.html │ │ │ └── ex06/ │ │ │ ├── ex06.js │ │ │ ├── ex06_style.js │ │ │ └── index.html │ │ ├── v150/ │ │ │ ├── chatbot_ui.html │ │ │ ├── event_handling.html │ │ │ ├── iframe.html │ │ │ ├── iframe_content01.html │ │ │ ├── iframe_content02.html │ │ │ ├── iframe_content03.html │ │ │ ├── modal.html │ │ │ ├── position.html │ │ │ ├── preset_material.html │ │ │ ├── preset_win10.html │ │ │ ├── preset_yosemite.html │ │ │ ├── preset_yosemite_auto.html │ │ │ ├── simple.html │ │ │ ├── styling.html │ │ │ ├── toast.html │ │ │ ├── toast_simple.html │ │ │ └── window_control.html │ │ └── v160/ │ │ ├── alignment/ │ │ │ └── index.html │ │ ├── alignment-not-fixed/ │ │ │ ├── index.html │ │ │ └── lipsum.txt │ │ ├── event-handling-like-click/ │ │ │ └── index.html │ │ ├── event-handling-pos-size/ │ │ │ └── index.html │ │ ├── fine-tune-resize-area/ │ │ │ └── index.html │ │ ├── focus/ │ │ │ └── index.html │ │ ├── iframe/ │ │ │ ├── iframe_content01.html │ │ │ ├── iframe_content02.html │ │ │ ├── iframe_content03.html │ │ │ └── index.html │ │ ├── live-inside-element/ │ │ │ └── index.html │ │ ├── live-inside-element-with-contorl/ │ │ │ └── index.html │ │ ├── position/ │ │ │ └── index.html │ │ ├── preset-apr-yosemite/ │ │ │ └── index.html │ │ ├── preset-window-control-cmd/ │ │ │ └── index.html │ │ ├── preset-window-yosemite/ │ │ │ └── index.html │ │ ├── preset-window-yosemite-desktop/ │ │ │ ├── index.html │ │ │ └── yosemite-desktop.css │ │ ├── simple/ │ │ │ └── index.html │ │ ├── styling/ │ │ │ └── index.html │ │ ├── styling-button-child-menu/ │ │ │ └── index.html │ │ ├── styling-font-awesome-button/ │ │ │ └── index.html │ │ ├── styling-image-button/ │ │ │ └── index.html │ │ ├── styling-popup/ │ │ │ └── index.html │ │ ├── styling-show-hide-buttons/ │ │ │ └── index.html │ │ ├── styling-thick-title-bar/ │ │ │ └── index.html │ │ ├── window-in-window/ │ │ │ └── index.html │ │ └── window-order/ │ │ └── index.html │ ├── index.css │ ├── index.html │ └── jsframe.js ├── src/ │ ├── CCommon.js │ ├── JSFrame.css │ ├── JSFrame.js │ ├── appearance/ │ │ ├── CButtonAppearance.js │ │ ├── CChildMenuAppearance.js │ │ ├── CDomPartsBuilder.js │ │ ├── CFrameAppearance.js │ │ ├── CFrameComponent.js │ │ └── CImageButtonAppearance.js │ ├── index.js │ ├── presets/ │ │ ├── appearance/ │ │ │ ├── PresetStyleMaterial.css │ │ │ ├── PresetStyleMaterial.js │ │ │ ├── PresetStylePopup.css │ │ │ ├── PresetStylePopup.js │ │ │ ├── PresetStyleRedstone.css │ │ │ ├── PresetStyleRedstone.js │ │ │ ├── PresetStyleToast.js │ │ │ ├── PresetStyleYosemite.css │ │ │ └── PresetStyleYosemite.js │ │ └── window/ │ │ └── PresetWindowYosemite.js │ └── utils/ │ ├── CSimpleLayoutAnimator.js │ ├── CTimer.js │ ├── Inherit.js │ ├── ObjectAssigner.js │ └── WindowEventHelper.js └── webpack.config.js