suvii 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +14 -0
- data/.travis.yml +10 -0
- data/.yardopts +1 -0
- data/CHANGELOG.md +1 -0
- data/CONTRIBUTING.md +47 -0
- data/Gemfile +6 -0
- data/LICENSE.txt +22 -0
- data/README.md +51 -0
- data/Rakefile +7 -0
- data/lib/suvii.rb +40 -0
- data/lib/suvii/cache.rb +24 -0
- data/lib/suvii/extract.rb +58 -0
- data/lib/suvii/extract/targz.rb +49 -0
- data/lib/suvii/extract/zip.rb +19 -0
- data/lib/suvii/http.rb +31 -0
- data/suvii.gemspec +23 -0
- data/test/acceptance_test.rb +29 -0
- data/test/cache_test.rb +42 -0
- data/test/extract/targz_test.rb +28 -0
- data/test/extract/zip_test.rb +28 -0
- data/test/extract_test.rb +26 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/.gitattributes +6 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/.jshintrc +15 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/Gulpfile.js +167 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/LICENSE +21 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/README.md +29 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/bower.json +36 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/dist/langs/ca.min.js +11 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/dist/langs/da.min.js +9 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/dist/langs/de.min.js +9 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/dist/langs/es.min.js +9 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/dist/langs/es_ar.min.js +9 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/dist/langs/fa.min.js +10 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/dist/langs/fi.min.js +9 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/dist/langs/fr.min.js +10 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/dist/langs/he.min.js +9 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/dist/langs/id.min.js +11 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/dist/langs/it.min.js +8 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/dist/langs/ko.min.js +10 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/dist/langs/pl.min.js +9 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/dist/langs/pt.min.js +11 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/dist/langs/ro.min.js +13 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/dist/langs/ru.min.js +8 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/dist/langs/tr.min.js +10 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/dist/langs/zh_cn.min.js +10 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/dist/plugins/base64/trumbowyg.base64.js +74 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/dist/plugins/base64/trumbowyg.base64.min.js +1 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/dist/plugins/colors/trumbowyg.colors.js +69 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/dist/plugins/colors/trumbowyg.colors.min.js +1 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/dist/plugins/colors/ui/images/icons-2x.png +0 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/dist/plugins/colors/ui/images/icons.png +0 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/dist/plugins/colors/ui/trumbowyg.colors.css +55 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/dist/plugins/colors/ui/trumbowyg.colors.min.css +2 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/dist/plugins/upload/trumbowyg.upload.js +140 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/dist/plugins/upload/trumbowyg.upload.min.js +1 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/dist/trumbowyg.js +1124 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/dist/trumbowyg.min.js +2 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/dist/ui/images/icons-2x.png +0 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/dist/ui/images/icons.png +0 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/dist/ui/trumbowyg.css +471 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/dist/ui/trumbowyg.min.css +2 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/examples/css/main.css +14 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/examples/index.html +41 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/examples/plugins/colors.html +49 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/index.html +252 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/package.json +48 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/plugins/base64/trumbowyg.base64.js +74 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/plugins/colors/Gulpfile.js +101 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/plugins/colors/trumbowyg.colors.js +69 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/plugins/colors/ui/images/icons-2x/backcolor.png +0 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/plugins/colors/ui/images/icons-2x/forecolor.png +0 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/plugins/colors/ui/images/icons/backcolor.png +0 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/plugins/colors/ui/images/icons/forecolor.png +0 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/plugins/colors/ui/sass/trumbowyg.colors.scss +65 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/plugins/upload/trumbowyg.upload.js +140 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/plugins/upload/trumbowyg.upload.php +49 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/src/langs/ca.js +58 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/src/langs/da.js +56 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/src/langs/de.js +56 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/src/langs/en.js +14 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/src/langs/es.js +56 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/src/langs/es_ar.js +56 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/src/langs/fa.js +57 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/src/langs/fi.js +56 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/src/langs/fr.js +57 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/src/langs/he.js +58 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/src/langs/id.js +58 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/src/langs/it.js +55 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/src/langs/ko.js +57 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/src/langs/pl.js +56 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/src/langs/pt.js +58 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/src/langs/ro.js +60 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/src/langs/ru.js +55 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/src/langs/tr.js +57 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/src/langs/zh_cn.js +57 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/src/trumbowyg.js +1113 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/src/ui/images/icons-2x/attachement.png +0 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/src/ui/images/icons-2x/barre.png +0 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/src/ui/images/icons-2x/bold.png +0 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/src/ui/images/icons-2x/center-align.png +0 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/src/ui/images/icons-2x/close.png +0 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/src/ui/images/icons-2x/formatting.png +0 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/src/ui/images/icons-2x/fullscreen-exit.png +0 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/src/ui/images/icons-2x/fullscreen.png +0 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/src/ui/images/icons-2x/gras.png +0 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/src/ui/images/icons-2x/horizontal-rule.png +0 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/src/ui/images/icons-2x/image.png +0 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/src/ui/images/icons-2x/italic.png +0 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/src/ui/images/icons-2x/justify-align.png +0 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/src/ui/images/icons-2x/left-align.png +0 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/src/ui/images/icons-2x/link.png +0 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/src/ui/images/icons-2x/ordered-list.png +0 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/src/ui/images/icons-2x/right-align.png +0 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/src/ui/images/icons-2x/souligne.png +0 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/src/ui/images/icons-2x/strikethrough.png +0 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/src/ui/images/icons-2x/underline.png +0 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/src/ui/images/icons-2x/unordered-list.png +0 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/src/ui/images/icons-2x/video.png +0 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/src/ui/images/icons-2x/view-html.png +0 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/src/ui/images/icons/attachement.png +0 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/src/ui/images/icons/barre.png +0 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/src/ui/images/icons/bold.png +0 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/src/ui/images/icons/center-align.png +0 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/src/ui/images/icons/close.png +0 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/src/ui/images/icons/formatting.png +0 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/src/ui/images/icons/fullscreen-exit.png +0 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/src/ui/images/icons/fullscreen.png +0 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/src/ui/images/icons/gras.png +0 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/src/ui/images/icons/horizontal-rule.png +0 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/src/ui/images/icons/image.png +0 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/src/ui/images/icons/italic.png +0 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/src/ui/images/icons/justify-align.png +0 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/src/ui/images/icons/left-align.png +0 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/src/ui/images/icons/link.png +0 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/src/ui/images/icons/ordered-list.png +0 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/src/ui/images/icons/right-align.png +0 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/src/ui/images/icons/souligne.png +0 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/src/ui/images/icons/strikethrough.png +0 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/src/ui/images/icons/underline.png +0 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/src/ui/images/icons/unordered-list.png +0 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/src/ui/images/icons/video.png +0 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/src/ui/images/icons/view-html.png +0 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/src/ui/sass/mixins/_sprite-pos.scss +7 -0
- data/test/fixtures/results/Trumbowyg-1.1.7/src/ui/sass/trumbowyg.scss +564 -0
- data/test/fixtures/trumbowyg.tar.gz +0 -0
- data/test/fixtures/trumbowyg.zip +0 -0
- data/test/http_test.rb +61 -0
- data/test/test_helper.rb +24 -0
- metadata +409 -0
@@ -0,0 +1,2 @@
|
|
1
|
+
/** Trumbowyg v1.1.7 - A lightweight WYSIWYG editor - alex-d.github.io/Trumbowyg - License MIT - Author : Alexandre Demode (Alex-D) / alex-d.fr */
|
2
|
+
.trumbowyg-box,.trumbowyg-editor{display:block;position:relative;border:1px solid #DDD;width:96%;min-height:300px;margin:17px auto}.trumbowyg-box .trumbowyg-editor{margin:0 auto}.trumbowyg-box.trumbowyg-fullscreen{background:#FEFEFE}.trumbowyg-editor,.trumbowyg-textarea{position:relative;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:1% 2%;min-height:300px;width:100%;border-style:none;resize:none;outline:0}.trumbowyg-box-blur .trumbowyg-editor *{color:transparent!important;text-shadow:0 0 7px #333}.trumbowyg-box-blur .trumbowyg-editor img{opacity:.2}.trumbowyg-textarea{position:relative;display:block;overflow:auto;border:none;white-space:normal}.trumbowyg-editor[contenteditable=true]:empty:before{content:attr(placeholder);color:#999}.trumbowyg-button-pane{position:relative;width:100%;background:#ecf0f1;border-bottom:1px solid #d7e0e2;margin:0;padding:0;list-style-type:none;line-height:10px;-webkit-backface-visibility:hidden;backface-visibility:hidden}.trumbowyg-button-pane li{display:inline-block;text-align:center;overflow:hidden}.trumbowyg-button-pane li.trumbowyg-separator{width:1px;background:#d7e0e2;margin:0 5px;height:35px}.trumbowyg-button-pane.trumbowyg-disable li:not(.trumbowyg-not-disable) button:not(.trumbowyg-active){opacity:.2;cursor:default}.trumbowyg-button-pane.trumbowyg-disable li.trumbowyg-separator{background:#e3e9eb}.trumbowyg-button-pane li button.trumbowyg-active,.trumbowyg-button-pane li.trumbowyg-not-disable button:focus,.trumbowyg-button-pane li.trumbowyg-not-disable button:hover,.trumbowyg-button-pane:not(.trumbowyg-disable) li button:focus,.trumbowyg-button-pane:not(.trumbowyg-disable) li button:hover{background-color:#FFF;outline:0}.trumbowyg-button-pane li .trumbowyg-open-dropdown:after{display:block;content:" ";position:absolute;top:25px;right:3px;height:0;width:0;border:3px solid transparent;border-top-color:#555}.trumbowyg-button-pane .trumbowyg-buttons-right{float:right;width:auto}.trumbowyg-button-pane .trumbowyg-buttons-right button{float:left}.trumbowyg-dropdown{width:200px;border:1px solid #ecf0f1;padding:5px 0;border-top:none;background:#FFF;margin-left:-1px;-webkit-box-shadow:rgba(0,0,0,.1) 0 2px 3px;box-shadow:rgba(0,0,0,.1) 0 2px 3px}.trumbowyg-dropdown button{display:block;width:100%;height:35px;line-height:35px;text-decoration:none;background:#FFF;padding:0 14px;color:#333;border:none;cursor:pointer;text-align:left;font-size:15px;-webkit-transition:all .15s;-o-transition:all .15s;transition:all .15s}.trumbowyg-dropdown button:focus,.trumbowyg-dropdown button:hover{background:#ecf0f1}.trumbowyg-modal{position:absolute;top:0;left:50%;margin-left:-260px;width:520px;height:290px;overflow:hidden}.trumbowyg-modal-box{position:absolute;top:0;left:50%;margin-left:-250px;width:500px;height:275px;z-index:1;background-color:#FFF;text-align:center;-webkit-box-shadow:rgba(0,0,0,.2) 0 2px 3px;box-shadow:rgba(0,0,0,.2) 0 2px 3px;-webkit-backface-visibility:hidden;backface-visibility:hidden}.trumbowyg-modal-box .trumbowyg-modal-title{font-size:24px;font-weight:700;margin:0 0 20px;padding:15px 0 13px;display:block;border-bottom:1px solid #EEE;color:#333;background:#fbfcfc}.trumbowyg-modal-box .trumbowyg-progress{width:100%;background:red;height:3px;position:absolute;top:58px}.trumbowyg-modal-box .trumbowyg-progress .trumbowyg-progress-bar{background:#2BC06A;height:100%;-webkit-transition:width .15s linear;-o-transition:width .15s linear;transition:width .15s linear}.trumbowyg-modal-box label{display:block;position:relative;margin:15px 12px;height:27px;line-height:27px;overflow:hidden}.trumbowyg-modal-box label .trumbowyg-input-infos{display:block;text-align:left;height:25px;line-height:25px;-webkit-transition:all .15;-o-transition:all .15;transition:all .15}.trumbowyg-modal-box label .trumbowyg-input-infos span{display:block;color:#859fa5;background-color:#fbfcfc;border:1px solid #DEDEDE;padding:0 2%;width:19.5%}.trumbowyg-modal-box label .trumbowyg-input-infos span.trumbowyg-msg-error{color:#e74c3c}.trumbowyg-modal-box label.trumbowyg-input-error input,.trumbowyg-modal-box label.trumbowyg-input-error textarea{border:1px solid #e74c3c}.trumbowyg-modal-box label.trumbowyg-input-error .trumbowyg-input-infos{margin-top:-27px}.trumbowyg-modal-box label input{position:absolute;top:0;right:0;height:25px;line-height:25px;border:1px solid #DEDEDE;background:0 0;width:72%;padding:0 2%;margin:0 0 0 23%;-webkit-transition:all .15s;-o-transition:all .15s;transition:all .15s}.trumbowyg-modal-box label input:focus,.trumbowyg-modal-box label input:hover{outline:0;border:1px solid #95a5a6}.trumbowyg-modal-box label input:focus{background:rgba(230,230,255,.1)}.trumbowyg-modal-box .error{margin-top:25px;display:block;color:red}.trumbowyg-modal-box .trumbowyg-modal-button{position:absolute;bottom:10px;right:0;text-decoration:none;color:#FFF;display:block;width:100px;height:35px;line-height:33px;margin:0 10px;background-color:#333;border:none;border-top:none;cursor:pointer;font-family:"Trebuchet MS",Helvetica,Verdana,sans-serif;font-size:16px;-webkit-transition:all .15s;-o-transition:all .15s;transition:all .15s}.trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-submit{right:110px;background:#2bc069}.trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-submit:focus,.trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-submit:hover{background:#40d47d;outline:0}.trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-submit:active{background:#25a259}.trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-reset{color:#555;background:#e6e6e6}.trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-reset:focus,.trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-reset:hover{background:#fbfbfb;outline:0}.trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-reset:active{background:#d4d4d4}.trumbowyg-overlay{position:absolute;background-color:rgba(255,255,255,.5);width:100%;left:0;display:none}.trumbowyg-fullscreen{position:fixed;top:0;left:0;width:100%;height:100%;margin:0;padding:0;z-index:99999}.trumbowyg-fullscreen .trumbowyg-editor,.trumbowyg-fullscreen.trumbowyg-box{border:none}.trumbowyg-fullscreen .trumbowyg-overlay{height:100%!important}.trumbowyg-editor embed,.trumbowyg-editor img,.trumbowyg-editor object,.trumbowyg-editor video{width:auto;max-width:100%}.trumbowyg-editor img,.trumbowyg-editor video{height:auto}.trumbowyg-editor img{cursor:move}.trumbowyg-editor.trumbowyg-reset-css{background:#FEFEFE!important;font-family:"Trebuchet MS",Helvetica,Verdana,sans-serif!important;font-size:14px!important;line-height:1.45em!important;white-space:normal!important;color:#333}.trumbowyg-editor.trumbowyg-reset-css a{color:#15c!important;text-decoration:underline!important}.trumbowyg-editor.trumbowyg-reset-css blockquote,.trumbowyg-editor.trumbowyg-reset-css div,.trumbowyg-editor.trumbowyg-reset-css ol,.trumbowyg-editor.trumbowyg-reset-css p,.trumbowyg-editor.trumbowyg-reset-css ul{-webkit-box-shadow:none!important;box-shadow:none!important;background:none!important;margin:0 0 15px!important;line-height:1.4em!important;font-family:"Trebuchet MS",Helvetica,Verdana,sans-serif!important;font-size:14px!important;border:none}.trumbowyg-editor.trumbowyg-reset-css hr,.trumbowyg-editor.trumbowyg-reset-css iframe,.trumbowyg-editor.trumbowyg-reset-css object{margin-bottom:15px!important}.trumbowyg-editor.trumbowyg-reset-css blockquote{margin-left:32px!important;font-style:italic!important;color:#555}.trumbowyg-editor.trumbowyg-reset-css ol,.trumbowyg-editor.trumbowyg-reset-css ul{padding-left:20px!important}.trumbowyg-editor.trumbowyg-reset-css ol ol,.trumbowyg-editor.trumbowyg-reset-css ol ul,.trumbowyg-editor.trumbowyg-reset-css ul ol,.trumbowyg-editor.trumbowyg-reset-css ul ul{border:none;margin:2px!important;padding:0 0 0 24px!important}.trumbowyg-editor.trumbowyg-reset-css hr{display:block;height:1px;border:none;border-top:1px solid #CCC}.trumbowyg-editor.trumbowyg-reset-css h1,.trumbowyg-editor.trumbowyg-reset-css h2,.trumbowyg-editor.trumbowyg-reset-css h3,.trumbowyg-editor.trumbowyg-reset-css h4{color:#111;background:0 0;margin:0!important;padding:0!important;font-weight:700}.trumbowyg-editor.trumbowyg-reset-css h1{font-size:32px!important;line-height:38px!important;margin-bottom:20px!important}.trumbowyg-editor.trumbowyg-reset-css h2{font-size:26px!important;line-height:34px!important;margin-bottom:15px!important}.trumbowyg-editor.trumbowyg-reset-css h3{font-size:22px!important;line-height:28px!important;margin-bottom:7px!important}.trumbowyg-editor.trumbowyg-reset-css h4{font-size:16px!important;line-height:22px!important;margin-bottom:7px!important}.trumbowyg-button-pane li button{display:block;position:relative;text-indent:-9999px;width:35px;height:35px;overflow:hidden;background:url(./images/icons.png) no-repeat;border:none;cursor:pointer;-webkit-transition:background-color .15s,background-image .15s,opacity .15s;-o-transition:background-color .15s,background-image .15s,opacity .15s;transition:background-color .15s,background-image .15s,opacity .15s}.trumbowyg-button-pane li button.trumbowyg-viewHTML-button{background-position:5px -545px}.trumbowyg-button-pane li button.trumbowyg-formatting-button{background-position:5px -120px}.trumbowyg-button-pane li button.trumbowyg-bold-button,.trumbowyg-button-pane li button.trumbowyg-strong-button{background-position:5px -45px}.trumbowyg-button-pane li button.trumbowyg-em-button,.trumbowyg-button-pane li button.trumbowyg-italic-button{background-position:5px 5px}.trumbowyg-button-pane li button.trumbowyg-underline-button{background-position:5px -470px}.trumbowyg-button-pane li button.trumbowyg-del-button,.trumbowyg-button-pane li button.trumbowyg-strikethrough-button{background-position:5px -445px}.trumbowyg-button-pane li button.trumbowyg-link-button{background-position:5px -345px}.trumbowyg-button-pane li button.trumbowyg-insertImage-button{background-position:5px -245px}.trumbowyg-button-pane li button.trumbowyg-justifyLeft-button{background-position:5px -320px}.trumbowyg-button-pane li button.trumbowyg-justifyCenter-button{background-position:5px -70px}.trumbowyg-button-pane li button.trumbowyg-justifyRight-button{background-position:5px -395px}.trumbowyg-button-pane li button.trumbowyg-justifyFull-button{background-position:5px -295px}.trumbowyg-button-pane li button.trumbowyg-unorderedList-button{background-position:5px -495px}.trumbowyg-button-pane li button.trumbowyg-orderedList-button{background-position:5px -370px}.trumbowyg-button-pane li button.trumbowyg-horizontalRule-button{background-position:5px -220px}.trumbowyg-button-pane li button.trumbowyg-fullscreen-button{background-position:5px -170px}.trumbowyg-button-pane li button.trumbowyg-close-button{background-position:5px -95px}.trumbowyg-fullscreen .trumbowyg-button-pane li button.trumbowyg-fullscreen-button{background-position:5px -145px}.trumbowyg-button-pane li:first-child button{margin-left:6px}.trumbowyg-button-pane li:last-child button{margin-right:6px}.trumbowyg-fr .trumbowyg-button-pane li button.trumbowyg-bold-button,.trumbowyg-fr .trumbowyg-button-pane li button.trumbowyg-strong-button{background-position:5px -195px}.trumbowyg-fr .trumbowyg-button-pane li button.trumbowyg-underline-button{background-position:5px -420px}.trumbowyg-fr .trumbowyg-button-pane li button.trumbowyg-del-button,.trumbowyg-fr .trumbowyg-button-pane li button.trumbowyg-strikethrough-button{background-position:5px -270px}@media only screen and (-webkit-min-device-pixel-ratio:1.3),only screen and (min--moz-device-pixel-ratio:1.3),only screen and (-o-min-device-pixel-ratio:4/3),only screen and (min-device-pixel-ratio:1.3),only screen and (min-resolution:192dpi),only screen and (min-resolution:2dppx){.trumbowyg-button-pane li button{-webkit-background-size:25px 575px!important;background-size:25px 575px!important;background-image:url(./images/icons-2x.png)!important}.trumbowyg-button-pane li button.trumbowyg-viewHTML-button{background-position:5px -545px}.trumbowyg-button-pane li button.trumbowyg-formatting-button{background-position:5px -120px}.trumbowyg-button-pane li button.trumbowyg-bold-button,.trumbowyg-button-pane li button.trumbowyg-strong-button{background-position:5px -45px}.trumbowyg-button-pane li button.trumbowyg-em-button,.trumbowyg-button-pane li button.trumbowyg-italic-button{background-position:5px 5px}.trumbowyg-button-pane li button.trumbowyg-underline-button{background-position:5px -470px}.trumbowyg-button-pane li button.trumbowyg-del-button,.trumbowyg-button-pane li button.trumbowyg-strikethrough-button{background-position:5px -445px}.trumbowyg-button-pane li button.trumbowyg-link-button{background-position:5px -345px}.trumbowyg-button-pane li button.trumbowyg-insertImage-button{background-position:5px -245px}.trumbowyg-button-pane li button.trumbowyg-justifyLeft-button{background-position:5px -320px}.trumbowyg-button-pane li button.trumbowyg-justifyCenter-button{background-position:5px -70px}.trumbowyg-button-pane li button.trumbowyg-justifyRight-button{background-position:5px -395px}.trumbowyg-button-pane li button.trumbowyg-justifyFull-button{background-position:5px -295px}.trumbowyg-button-pane li button.trumbowyg-unorderedList-button{background-position:5px -495px}.trumbowyg-button-pane li button.trumbowyg-orderedList-button{background-position:5px -370px}.trumbowyg-button-pane li button.trumbowyg-horizontalRule-button{background-position:5px -220px}.trumbowyg-button-pane li button.trumbowyg-fullscreen-button{background-position:5px -170px}.trumbowyg-button-pane li button.trumbowyg-close-button{background-position:5px -95px}.trumbowyg-fullscreen .trumbowyg-button-pane li a.trumbowyg-fullscreen-button{background-position:5px -145px}.trumbowyg-fr .trumbowyg-button-pane li button.trumbowyg-bold-button,.trumbowyg-fr .trumbowyg-button-pane li button.trumbowyg-strong-button{background-position:5px -195px}.trumbowyg-fr .trumbowyg-button-pane li button.trumbowyg-underline-button{background-position:5px -420px}.trumbowyg-fr .trumbowyg-button-pane li button.trumbowyg-del-button,.trumbowyg-fr .trumbowyg-button-pane li button.trumbowyg-strikethrough-button{background-position:5px -270px}}
|
@@ -0,0 +1,41 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<meta charset="UTF-8">
|
5
|
+
<title>Trumbowyg by Alex-D</title>
|
6
|
+
<link rel="stylesheet" href="css/main.css">
|
7
|
+
<link rel="stylesheet" href="../dist/ui/trumbowyg.css">
|
8
|
+
</head>
|
9
|
+
<body>
|
10
|
+
<div id="main" role="main">
|
11
|
+
<header>
|
12
|
+
<h1>Default usage of Trumbowyg</h1>
|
13
|
+
|
14
|
+
<p>
|
15
|
+
No plugin, no options. Just naked Trumbowyg.
|
16
|
+
</p>
|
17
|
+
</header>
|
18
|
+
|
19
|
+
<div id="editor">
|
20
|
+
<h2>This editor is the default build of Trumbowyg.</h2>
|
21
|
+
<p>
|
22
|
+
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Possimus, aliquam, minima fugiat placeat provident optio nam reiciendis eius beatae quibusdam!
|
23
|
+
</p>
|
24
|
+
<p>
|
25
|
+
The text is derived from Cicero's De Finibus Bonorum et Malorum (On the Ends of Goods and Evils, or alternatively [About] The Purposes of Good and Evil ). The original passage began: Neque porro quisquam est qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit (Translation: "Neither is there anyone who loves grief itself since it is grief and thus wants to obtain it").
|
26
|
+
</p>
|
27
|
+
</div>
|
28
|
+
|
29
|
+
<h2>The code</h2>
|
30
|
+
<code><pre>
|
31
|
+
$('#editor').trumbowyg();
|
32
|
+
</pre></code>
|
33
|
+
</div>
|
34
|
+
<script src="../bower_components/jquery/dist/jquery.min.js"></script>
|
35
|
+
<script src="../dist/trumbowyg.js"></script>
|
36
|
+
<script>
|
37
|
+
/** Default editor configuration **/
|
38
|
+
$('#editor').trumbowyg();
|
39
|
+
</script>
|
40
|
+
</body>
|
41
|
+
</html>
|
@@ -0,0 +1,49 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<meta charset="UTF-8">
|
5
|
+
<title>Colors plugin | Trumbowyg by Alex-D</title>
|
6
|
+
<link rel="stylesheet" href="../css/main.css">
|
7
|
+
<link rel="stylesheet" href="../../dist/ui/trumbowyg.css">
|
8
|
+
<link rel="stylesheet" href="../../dist/plugins/colors/ui/trumbowyg.colors.css">
|
9
|
+
</head>
|
10
|
+
<body>
|
11
|
+
<div id="main" role="main">
|
12
|
+
<header>
|
13
|
+
<h1>Colors plugin for Trumbowyg</h1>
|
14
|
+
|
15
|
+
<p>
|
16
|
+
This plugin allow you to add a foreground and/or background color picker.
|
17
|
+
</p>
|
18
|
+
</header>
|
19
|
+
|
20
|
+
<div id="editor">
|
21
|
+
<h2>You can color me!</h2>
|
22
|
+
<p>
|
23
|
+
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Possimus, aliquam, minima fugiat placeat provident optio nam reiciendis eius beatae quibusdam!
|
24
|
+
</p>
|
25
|
+
<p>
|
26
|
+
The text is derived from Cicero's De Finibus Bonorum et Malorum (On the Ends of Goods and Evils, or alternatively [About] The Purposes of Good and Evil ). The original passage began: Neque porro quisquam est qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit (Translation: "Neither is there anyone who loves grief itself since it is grief and thus wants to obtain it").
|
27
|
+
</p>
|
28
|
+
</div>
|
29
|
+
|
30
|
+
<h2>The code</h2>
|
31
|
+
<code><pre>
|
32
|
+
$('#editor')
|
33
|
+
.trumbowyg({
|
34
|
+
// You can only add one of foreColor/backColor
|
35
|
+
btnsAdd: ['foreColor', 'backColor']
|
36
|
+
});
|
37
|
+
</pre></code>
|
38
|
+
</div>
|
39
|
+
<script src="../../bower_components/jquery/dist/jquery.min.js"></script>
|
40
|
+
<script src="../../dist/trumbowyg.js"></script>
|
41
|
+
<script src="../../dist/plugins/colors/trumbowyg.colors.js"></script>
|
42
|
+
<script>
|
43
|
+
$('#editor')
|
44
|
+
.trumbowyg({
|
45
|
+
btnsAdd: ['foreColor', 'backColor']
|
46
|
+
});
|
47
|
+
</script>
|
48
|
+
</body>
|
49
|
+
</html>
|
@@ -0,0 +1,252 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<meta charset="UTF-8">
|
5
|
+
<title>Trumbowyg by Alex-D</title>
|
6
|
+
<link rel="stylesheet" href="examples/css/main.css">
|
7
|
+
<link rel="stylesheet" href="dist/ui/trumbowyg.css">
|
8
|
+
<link rel="stylesheet" href="dist/plugins/colors/ui/trumbowyg.colors.css">
|
9
|
+
</head>
|
10
|
+
<body>
|
11
|
+
<div id="main" role="main">
|
12
|
+
<header>
|
13
|
+
<h1>Examples of use Trumbowyg</h1>
|
14
|
+
|
15
|
+
<p>
|
16
|
+
Close an editor on clic on "Close" in top right corner. <br>
|
17
|
+
To reopen an editor, double-click on his text.
|
18
|
+
</p>
|
19
|
+
</header>
|
20
|
+
|
21
|
+
<form action="#">
|
22
|
+
<div id="simple-editor">
|
23
|
+
<h2>This editor is the default build of Trumbowyg.</h2>
|
24
|
+
<p>
|
25
|
+
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Possimus, aliquam, minima fugiat placeat provident optio nam reiciendis eius beatae quibusdam!
|
26
|
+
</p>
|
27
|
+
<p>
|
28
|
+
The text is derived from Cicero's De Finibus Bonorum et Malorum (On the Ends of Goods and Evils, or alternatively [About] The Purposes of Good and Evil ). The original passage began: Neque porro quisquam est qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit (Translation: "Neither is there anyone who loves grief itself since it is grief and thus wants to obtain it").
|
29
|
+
</p>
|
30
|
+
<code><pre>
|
31
|
+
$('#simple-editor').trumbowyg();
|
32
|
+
</pre></code>
|
33
|
+
</div>
|
34
|
+
|
35
|
+
<div id="customized-buttonpane">
|
36
|
+
<h2>This is a demo of Trumbowyg with a customized button pane</h2>
|
37
|
+
<p>
|
38
|
+
The text is derived from Cicero's De Finibus Bonorum et Malorum (On the Ends of Goods and Evils, or alternatively [About] The Purposes of Good and Evil ). The original passage began: Neque porro quisquam est qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit (Translation: "Neither is there anyone who loves grief itself since it is grief and thus wants to obtain it").
|
39
|
+
</p>
|
40
|
+
<p style="text-align: center;">
|
41
|
+
<img src="http://alex-d.github.com/Trumbowyg/img/html5.png" alt="Blabla dans le alt">
|
42
|
+
</p>
|
43
|
+
<p>
|
44
|
+
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Dignissimos, minima, asperiores libero architecto sequi fugit dolore sunt in officiis facere ut quaerat ullam laudantium delectus aliquam tenetur alias! Ea, nisi, est earum temporibus dolores quas qui repellendus aliquid voluptatibus tempore facilis eligendi omnis reiciendis nihil ullam quo dolorem nam deleniti. Fugit dignissimos dolorum dolore voluptate repudiandae recusandae debitis. Neque, adipisci, maiores magni aliquam molestiae ex natus minus quod tempora nemo debitis eum laboriosam voluptatum ut architecto animi nobis vero quis dolore eaque! Corporis, dolore, illum, autem in eum ea doloribus ut consequuntur modi et ullam adipisci blanditiis corrupti ab voluptate.
|
45
|
+
</p>
|
46
|
+
<p>
|
47
|
+
It is not known exactly when the text acquired its current standard form; it may have been as late as the 1960s. The passage was discovered by Richard McClintock, a Latin scholar who is the publications director at Hampden-Sydney College in Virginia, by searching for citings of the rarely used word 'consectetur' in classical literature.
|
48
|
+
</p>
|
49
|
+
<code><pre>
|
50
|
+
/*
|
51
|
+
* Add your own groups of button
|
52
|
+
*/
|
53
|
+
$.trumbowyg.btnsGrps.test = ['bold', 'link'];
|
54
|
+
|
55
|
+
/* Add new words for customs btnsDef just below */
|
56
|
+
$.extend(true, $.trumbowyg.langs, {
|
57
|
+
fr: {
|
58
|
+
align: 'Alignement',
|
59
|
+
image: 'Image'
|
60
|
+
}
|
61
|
+
});
|
62
|
+
$('#customized-buttonpane').trumbowyg({
|
63
|
+
lang: 'fr',
|
64
|
+
closable: true,
|
65
|
+
fixedBtnPane: true,
|
66
|
+
btnsDef: {
|
67
|
+
// Customizables dropdowns
|
68
|
+
align: {
|
69
|
+
dropdown: ['justifyLeft', 'justifyCenter', 'justifyRight', 'justifyFull'],
|
70
|
+
ico: 'justifyLeft'
|
71
|
+
},
|
72
|
+
image: {
|
73
|
+
dropdown: ['insertImage', 'upload', 'base64'],
|
74
|
+
ico: 'insertImage'
|
75
|
+
}
|
76
|
+
},
|
77
|
+
btns: ['viewHTML',
|
78
|
+
'|', 'formatting',
|
79
|
+
'|', 'btnGrp-test',
|
80
|
+
'|', 'align',
|
81
|
+
'|', 'btnGrp-lists',
|
82
|
+
'|', 'image']
|
83
|
+
});
|
84
|
+
</pre></code>
|
85
|
+
</div>
|
86
|
+
|
87
|
+
<textarea id="form-content" cols="30" rows="10">
|
88
|
+
<h1>This editor is create from a textarea</h1>
|
89
|
+
<p>
|
90
|
+
Even though using "lorem ipsum" often arouses curiosity due to its resemblance to classical Latin, it is not intended to have meaning. Where text is visible in a document, people tend to focus on the textual content rather than upon overall presentation, so publishers use lorem ipsum when displaying a typeface or design in order to direct the focus to presentation. "Lorem ipsum" also approximates a typical distribution of spaces in English. <br>
|
91
|
+
The most common lorem ipsum text reads as follows: Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
|
92
|
+
</p>
|
93
|
+
<code><pre>
|
94
|
+
$('#form-content').trumbowyg({
|
95
|
+
lang: 'fr',
|
96
|
+
closable: true,
|
97
|
+
mobile: true,
|
98
|
+
fixedBtnPane: true,
|
99
|
+
fixedFullWidth: true,
|
100
|
+
semantic: true,
|
101
|
+
resetCss: true,
|
102
|
+
autoAjustHeight: true,
|
103
|
+
autogrow: true
|
104
|
+
});
|
105
|
+
</pre></code>
|
106
|
+
</textarea>
|
107
|
+
|
108
|
+
<div id="dynamic-iframe-example"></div>
|
109
|
+
|
110
|
+
<textarea id="placeholder-editor" cols="30" rows="10" placeholder="This is a placeholder..."></textarea>
|
111
|
+
</form>
|
112
|
+
</div>
|
113
|
+
<script src="bower_components/jquery/dist/jquery.min.js"></script>
|
114
|
+
<script src="dist/trumbowyg.js"></script>
|
115
|
+
<script src="dist/langs/fr.min.js"></script>
|
116
|
+
<script src="dist/plugins/upload/trumbowyg.upload.js"></script>
|
117
|
+
<script src="dist/plugins/base64/trumbowyg.base64.js"></script>
|
118
|
+
<script src="dist/plugins/colors/trumbowyg.colors.js"></script>
|
119
|
+
<script>
|
120
|
+
/** Default editor configuration **/
|
121
|
+
$('#simple-editor')
|
122
|
+
.trumbowyg()
|
123
|
+
.on('dblclick', function(){
|
124
|
+
$(this).trumbowyg();
|
125
|
+
});
|
126
|
+
|
127
|
+
|
128
|
+
|
129
|
+
/********************************************************
|
130
|
+
* Customized button pane + buttons groups + dropdowns
|
131
|
+
* Use upload and base64 plugins
|
132
|
+
*******************************************************/
|
133
|
+
|
134
|
+
/*
|
135
|
+
* Add your own groups of button
|
136
|
+
*/
|
137
|
+
$.trumbowyg.btnsGrps.test = ['bold', 'link'];
|
138
|
+
|
139
|
+
/* Add new words for customs btnsDef just below */
|
140
|
+
$.extend(true, $.trumbowyg.langs, {
|
141
|
+
fr: {
|
142
|
+
align: 'Alignement',
|
143
|
+
image: 'Image'
|
144
|
+
}
|
145
|
+
});
|
146
|
+
var customizedButtonPaneTbwOptions = {
|
147
|
+
lang: 'fr',
|
148
|
+
closable: true,
|
149
|
+
fixedBtnPane: true,
|
150
|
+
btnsDef: {
|
151
|
+
// Customizables dropdowns
|
152
|
+
align: {
|
153
|
+
dropdown: ['justifyLeft', 'justifyCenter', 'justifyRight', 'justifyFull'],
|
154
|
+
ico: 'justifyLeft'
|
155
|
+
},
|
156
|
+
image: {
|
157
|
+
dropdown: ['insertImage', 'upload', 'base64'],
|
158
|
+
ico: 'insertImage'
|
159
|
+
}
|
160
|
+
},
|
161
|
+
btns: ['viewHTML',
|
162
|
+
'|', 'formatting',
|
163
|
+
'|', 'btnGrp-test',
|
164
|
+
'|', 'align',
|
165
|
+
'|', 'btnGrp-lists',
|
166
|
+
'|', 'image',
|
167
|
+
'|', 'foreColor', 'backColor']
|
168
|
+
};
|
169
|
+
$('#customized-buttonpane')
|
170
|
+
.trumbowyg(customizedButtonPaneTbwOptions)
|
171
|
+
.on('dblclick', function(){
|
172
|
+
$(this).trumbowyg(customizedButtonPaneTbwOptions);
|
173
|
+
});
|
174
|
+
|
175
|
+
|
176
|
+
|
177
|
+
/** Simple customization with current options **/
|
178
|
+
var formTbwOptions = {
|
179
|
+
lang: 'fr',
|
180
|
+
closable: true,
|
181
|
+
mobile: true,
|
182
|
+
fixedBtnPane: true,
|
183
|
+
fixedFullWidth: true,
|
184
|
+
semantic: true,
|
185
|
+
resetCss: true,
|
186
|
+
autoAjustHeight: true,
|
187
|
+
autogrow: true
|
188
|
+
};
|
189
|
+
$('#form-content')
|
190
|
+
.trumbowyg(formTbwOptions)
|
191
|
+
.on('dblclick', function(){
|
192
|
+
$(this).trumbowyg(formTbwOptions);
|
193
|
+
});
|
194
|
+
|
195
|
+
|
196
|
+
|
197
|
+
/** Dynamic Iframe **/
|
198
|
+
|
199
|
+
// Create the iframe element.
|
200
|
+
var $iframe = $('<iframe/>').css({
|
201
|
+
width: '100%',
|
202
|
+
height: 400,
|
203
|
+
border: 0
|
204
|
+
});
|
205
|
+
$('#dynamic-iframe-example').append($iframe);
|
206
|
+
// Get the document of the iframe.
|
207
|
+
var $editor = $('<div>', {
|
208
|
+
id: 'editor'
|
209
|
+
}).html(
|
210
|
+
'<h2>This is within an iframe</h2> <p>Soc'
|
211
|
+
+ 'tempor pulvinar ac ultricies, placerat in, elementum,'
|
212
|
+
+ 'adipiscing pid, mid augue pulvinar eros nisi! In magn'
|
213
|
+
+ 'magnis. Porttitor platea turpis nisi. Pulvinar massa,'
|
214
|
+
+ ' habitasse <strong>a nunc rhoncus adipiscing</strong></p>'),
|
215
|
+
optionTbwIframe = {
|
216
|
+
closable: true,
|
217
|
+
fullscreenable: false
|
218
|
+
};
|
219
|
+
|
220
|
+
setTimeout(function(){
|
221
|
+
var contextIframe = $iframe.contents()[0];
|
222
|
+
// Set the style on the head of the iframe.
|
223
|
+
$('head', contextIframe).append($('<link>', {
|
224
|
+
href: 'dist/ui/trumbowyg.css',
|
225
|
+
rel: 'stylesheet'
|
226
|
+
}));
|
227
|
+
// Set the content to be editable.
|
228
|
+
$('body', contextIframe).append($editor);
|
229
|
+
|
230
|
+
$editor
|
231
|
+
.trumbowyg(optionTbwIframe)
|
232
|
+
.on('dblclick', function(){
|
233
|
+
$(this).trumbowyg(optionTbwIframe);
|
234
|
+
});
|
235
|
+
}, 500);
|
236
|
+
|
237
|
+
|
238
|
+
/** Editor with placeholder **/
|
239
|
+
$('#placeholder-editor')
|
240
|
+
.trumbowyg()
|
241
|
+
.on('dblclick', function(){
|
242
|
+
$(this).trumbowyg();
|
243
|
+
})
|
244
|
+
.on('tbwfocus', function(){
|
245
|
+
console.log('focus event fired');
|
246
|
+
})
|
247
|
+
.on('tbwblur', function(){
|
248
|
+
console.log('blur event fired');
|
249
|
+
});
|
250
|
+
</script>
|
251
|
+
</body>
|
252
|
+
</html>
|
@@ -0,0 +1,48 @@
|
|
1
|
+
{
|
2
|
+
"name": "trumbowyg",
|
3
|
+
"title": "Trumbowyg",
|
4
|
+
"description": "A lightweight WYSIWYG editor",
|
5
|
+
"version": "1.1.7",
|
6
|
+
"main": "dist/trumbowyg.js",
|
7
|
+
"homepage": "http://alex-d.github.io/Trumbowyg",
|
8
|
+
"author": {
|
9
|
+
"name": "Alexandre Demode (Alex-D)",
|
10
|
+
"email": "contact@alex-d.fr",
|
11
|
+
"url": "http://alex-d.fr"
|
12
|
+
},
|
13
|
+
"repository": {
|
14
|
+
"type": "git",
|
15
|
+
"url": "https://github.com/Alex-D/Trumbowyg.git"
|
16
|
+
},
|
17
|
+
"bugs": {
|
18
|
+
"url": "https://github.com/Alex-D/Trumbowyg/issues"
|
19
|
+
},
|
20
|
+
"license": "MIT",
|
21
|
+
"dependencies": {
|
22
|
+
"bower": "^1.3.9"
|
23
|
+
},
|
24
|
+
"devDependencies": {
|
25
|
+
"gulp": "^3.8.5",
|
26
|
+
"gulp-autoprefixer": "0.0.8",
|
27
|
+
"gulp-clean": "~0.3.1",
|
28
|
+
"gulp-concat": "~2.3.4",
|
29
|
+
"gulp-header": "~1.0.5",
|
30
|
+
"gulp-imagemin": "~1.0.0",
|
31
|
+
"gulp-jshint": "~1.8.4",
|
32
|
+
"gulp-livereload": "~2.1.0",
|
33
|
+
"gulp-load-plugins": "~0.5.3",
|
34
|
+
"gulp-minify-css": "~0.3.7",
|
35
|
+
"gulp-newer": "~0.3.0",
|
36
|
+
"gulp-rename": "~1.2.0",
|
37
|
+
"gulp-sass": "~0.7.3",
|
38
|
+
"gulp-size": "~1.0.0",
|
39
|
+
"gulp.spritesmith": "~1.1.1",
|
40
|
+
"gulp-uglify": "~0.3.1",
|
41
|
+
"jshint-stylish": "~0.4.0"
|
42
|
+
},
|
43
|
+
"scripts": {
|
44
|
+
"build": "npm install && gulp build",
|
45
|
+
"start": "gulp",
|
46
|
+
"test": "gulp test"
|
47
|
+
}
|
48
|
+
}
|
@@ -0,0 +1,74 @@
|
|
1
|
+
/* ===========================================================
|
2
|
+
* trumbowyg.base64.js v1.0
|
3
|
+
* Base64 plugin for Trumbowyg
|
4
|
+
* http://alex-d.github.com/Trumbowyg
|
5
|
+
* ===========================================================
|
6
|
+
* Author : Cyril Biencourt (lizardK)
|
7
|
+
*/
|
8
|
+
|
9
|
+
(function($){
|
10
|
+
'use strict';
|
11
|
+
|
12
|
+
$.extend(true, $.trumbowyg, {
|
13
|
+
langs: {
|
14
|
+
en: {
|
15
|
+
base64: "Image as base64",
|
16
|
+
file: "File",
|
17
|
+
errFileReaderNotSupported: "FileReader is not supported by your browser."
|
18
|
+
},
|
19
|
+
fr: {
|
20
|
+
base64: "Image en base64",
|
21
|
+
file: "Fichier"
|
22
|
+
}
|
23
|
+
},
|
24
|
+
|
25
|
+
opts: {
|
26
|
+
btnsDef: {
|
27
|
+
base64: {
|
28
|
+
isSupported: function(){
|
29
|
+
if(typeof FileReader === "undefined"){
|
30
|
+
console.err('[Trumbowyg - Plugin base64] FileReader is not supported by your browser.');
|
31
|
+
return false;
|
32
|
+
}
|
33
|
+
return true;
|
34
|
+
},
|
35
|
+
func: function(params, tbw){
|
36
|
+
var file;
|
37
|
+
tbw.openModalInsert(
|
38
|
+
// Title
|
39
|
+
tbw.lang.base64,
|
40
|
+
|
41
|
+
// Fields
|
42
|
+
{
|
43
|
+
file: {
|
44
|
+
type: 'file',
|
45
|
+
required: true
|
46
|
+
},
|
47
|
+
alt: {
|
48
|
+
label: 'description'
|
49
|
+
}
|
50
|
+
},
|
51
|
+
|
52
|
+
// Callback
|
53
|
+
function(values){
|
54
|
+
var fReader = new FileReader();
|
55
|
+
|
56
|
+
fReader.onloadend = function(){
|
57
|
+
tbw.execCmd('insertImage', fReader.result);
|
58
|
+
$(['img[src="', fReader.result, '"]:not([alt])'].join(''), tbw.$box).attr('alt', values.alt);
|
59
|
+
tbw.closeModal();
|
60
|
+
};
|
61
|
+
|
62
|
+
fReader.readAsDataURL(file);
|
63
|
+
}
|
64
|
+
);
|
65
|
+
|
66
|
+
$('input[type=file]').on('change', function(e){
|
67
|
+
file = e.target.files[0];
|
68
|
+
});
|
69
|
+
}
|
70
|
+
}
|
71
|
+
}
|
72
|
+
}
|
73
|
+
});
|
74
|
+
})(jQuery);
|