├── src ├── formValidator │ ├── README.md │ ├── demo.gif │ ├── readme │ │ ├── formValidator.png │ │ └── formValidator.vsdx │ └── formValidator.css ├── _lib │ ├── README.md │ ├── fonts │ │ └── glyphicons-halflings-regular.woff │ └── jquery.cookie.min.js ├── upload │ ├── run.cmd │ ├── demo.gif │ ├── demo.html │ ├── package.json │ ├── app.js │ ├── public │ │ ├── ajaxUpload-single.js │ │ ├── ajaxUpload-single.test.js │ │ └── ajaxUpload-single.css │ └── README.md ├── _fixDesktop │ ├── AJAX.json │ ├── AJAX.js │ ├── HTMLElement.js │ ├── onended.html │ ├── README.md │ ├── Console.js │ ├── Event.html │ ├── EventPath.js │ ├── AJAX.html │ ├── onended.js │ ├── _fixCSS.html │ └── Event.js ├── baseUtils │ ├── _grunt-demo-how-to │ │ ├── css │ │ │ ├── a.css │ │ │ ├── b.css │ │ │ ├── app.js │ │ │ ├── package.json │ │ │ └── Gruntfile.js │ │ └── js │ │ │ ├── a.js │ │ │ ├── b.js │ │ │ ├── requirejs.config.js │ │ │ └── package.json │ ├── index.html │ └── dateFormater.js ├── views │ ├── run.cmd │ ├── steps.png │ └── .babelrc ├── webcom │ ├── demo.css │ ├── demo.js │ ├── demo.png │ ├── list.html │ ├── README.md │ └── demo.html ├── editor │ ├── ueditor │ │ ├── public │ │ │ └── ueditor │ │ │ │ ├── themes │ │ │ │ ├── iframe.css │ │ │ │ └── default │ │ │ │ │ └── images │ │ │ │ │ ├── anchor.gif │ │ │ │ │ ├── arrow.png │ │ │ │ │ ├── charts.png │ │ │ │ │ ├── icons.gif │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── lock.gif │ │ │ │ │ ├── scale.png │ │ │ │ │ ├── spacer.gif │ │ │ │ │ ├── upload.png │ │ │ │ │ ├── word.gif │ │ │ │ │ ├── arrow_up.png │ │ │ │ │ ├── cursor_h.gif │ │ │ │ │ ├── cursor_h.png │ │ │ │ │ ├── cursor_v.gif │ │ │ │ │ ├── cursor_v.png │ │ │ │ │ ├── filescan.png │ │ │ │ │ ├── loading.gif │ │ │ │ │ ├── sortable.png │ │ │ │ │ ├── arrow_down.png │ │ │ │ │ ├── button-bg.gif │ │ │ │ │ ├── highlighted.gif │ │ │ │ │ ├── icons-all.gif │ │ │ │ │ ├── loaderror.png │ │ │ │ │ ├── pagebreak.gif │ │ │ │ │ ├── sparator_v.png │ │ │ │ │ ├── toolbar_bg.png │ │ │ │ │ ├── videologo.gif │ │ │ │ │ ├── wordpaste.png │ │ │ │ │ ├── cancelbutton.gif │ │ │ │ │ ├── unhighlighted.gif │ │ │ │ │ ├── dialog-title-bg.png │ │ │ │ │ ├── neweditor-tab-bg.png │ │ │ │ │ ├── table-cell-align.png │ │ │ │ │ └── tangram-colorpicker.png │ │ │ │ ├── lang │ │ │ │ ├── en │ │ │ │ │ └── images │ │ │ │ │ │ ├── copy.png │ │ │ │ │ │ ├── music.png │ │ │ │ │ │ ├── addimage.png │ │ │ │ │ │ ├── button.png │ │ │ │ │ │ ├── upload.png │ │ │ │ │ │ ├── background.png │ │ │ │ │ │ ├── localimage.png │ │ │ │ │ │ ├── deletedisable.png │ │ │ │ │ │ ├── deleteenable.png │ │ │ │ │ │ ├── listbackground.png │ │ │ │ │ │ ├── alldeletebtnupskin.png │ │ │ │ │ │ ├── rotateleftdisable.png │ │ │ │ │ │ ├── rotateleftenable.png │ │ │ │ │ │ ├── rotaterightdisable.png │ │ │ │ │ │ ├── rotaterightenable.png │ │ │ │ │ │ └── alldeletebtnhoverskin.png │ │ │ │ └── zh-cn │ │ │ │ │ └── images │ │ │ │ │ ├── copy.png │ │ │ │ │ ├── music.png │ │ │ │ │ ├── upload.png │ │ │ │ │ └── localimage.png │ │ │ │ ├── dialogs │ │ │ │ ├── image │ │ │ │ │ └── images │ │ │ │ │ │ ├── bg.png │ │ │ │ │ │ ├── icons.gif │ │ │ │ │ │ ├── icons.png │ │ │ │ │ │ ├── image.png │ │ │ │ │ │ ├── success.gif │ │ │ │ │ │ ├── success.png │ │ │ │ │ │ ├── alignicon.jpg │ │ │ │ │ │ └── progress.png │ │ │ │ ├── table │ │ │ │ │ ├── dragicon.png │ │ │ │ │ ├── edittip.html │ │ │ │ │ └── edittable.css │ │ │ │ ├── video │ │ │ │ │ └── images │ │ │ │ │ │ ├── bg.png │ │ │ │ │ │ ├── icons.gif │ │ │ │ │ │ ├── icons.png │ │ │ │ │ │ ├── image.png │ │ │ │ │ │ ├── success.gif │ │ │ │ │ │ ├── success.png │ │ │ │ │ │ ├── progress.png │ │ │ │ │ │ ├── center_focus.jpg │ │ │ │ │ │ ├── file-icons.gif │ │ │ │ │ │ ├── file-icons.png │ │ │ │ │ │ ├── left_focus.jpg │ │ │ │ │ │ ├── none_focus.jpg │ │ │ │ │ │ └── right_focus.jpg │ │ │ │ ├── emotion │ │ │ │ │ └── images │ │ │ │ │ │ ├── 0.gif │ │ │ │ │ │ ├── bface.gif │ │ │ │ │ │ ├── cface.gif │ │ │ │ │ │ ├── fface.gif │ │ │ │ │ │ ├── tface.gif │ │ │ │ │ │ ├── wface.gif │ │ │ │ │ │ ├── yface.gif │ │ │ │ │ │ ├── jxface2.gif │ │ │ │ │ │ └── neweditor-tab-bg.png │ │ │ │ ├── attachment │ │ │ │ │ ├── images │ │ │ │ │ │ ├── bg.png │ │ │ │ │ │ ├── icons.gif │ │ │ │ │ │ ├── icons.png │ │ │ │ │ │ ├── image.png │ │ │ │ │ │ ├── success.gif │ │ │ │ │ │ ├── success.png │ │ │ │ │ │ ├── alignicon.gif │ │ │ │ │ │ ├── alignicon.png │ │ │ │ │ │ ├── progress.png │ │ │ │ │ │ ├── file-icons.gif │ │ │ │ │ │ └── file-icons.png │ │ │ │ │ └── fileTypeImages │ │ │ │ │ │ ├── icon_chm.gif │ │ │ │ │ │ ├── icon_doc.gif │ │ │ │ │ │ ├── icon_exe.gif │ │ │ │ │ │ ├── icon_jpg.gif │ │ │ │ │ │ ├── icon_mp3.gif │ │ │ │ │ │ ├── icon_mv.gif │ │ │ │ │ │ ├── icon_pdf.gif │ │ │ │ │ │ ├── icon_ppt.gif │ │ │ │ │ │ ├── icon_psd.gif │ │ │ │ │ │ ├── icon_rar.gif │ │ │ │ │ │ ├── icon_txt.gif │ │ │ │ │ │ ├── icon_xls.gif │ │ │ │ │ │ └── icon_default.png │ │ │ │ ├── background │ │ │ │ │ └── images │ │ │ │ │ │ ├── bg.png │ │ │ │ │ │ └── success.png │ │ │ │ ├── scrawl │ │ │ │ │ └── images │ │ │ │ │ │ ├── addimg.png │ │ │ │ │ │ ├── brush.png │ │ │ │ │ │ ├── delimg.png │ │ │ │ │ │ ├── empty.png │ │ │ │ │ │ ├── emptyH.png │ │ │ │ │ │ ├── eraser.png │ │ │ │ │ │ ├── redo.png │ │ │ │ │ │ ├── redoH.png │ │ │ │ │ │ ├── scale.png │ │ │ │ │ │ ├── scaleH.png │ │ │ │ │ │ ├── size.png │ │ │ │ │ │ ├── undo.png │ │ │ │ │ │ ├── undoH.png │ │ │ │ │ │ └── delimgH.png │ │ │ │ ├── template │ │ │ │ │ ├── images │ │ │ │ │ │ ├── bg.gif │ │ │ │ │ │ ├── pre0.png │ │ │ │ │ │ ├── pre1.png │ │ │ │ │ │ ├── pre2.png │ │ │ │ │ │ ├── pre3.png │ │ │ │ │ │ └── pre4.png │ │ │ │ │ ├── template.html │ │ │ │ │ └── template.css │ │ │ │ ├── charts │ │ │ │ │ └── images │ │ │ │ │ │ ├── charts0.png │ │ │ │ │ │ ├── charts1.png │ │ │ │ │ │ ├── charts2.png │ │ │ │ │ │ ├── charts3.png │ │ │ │ │ │ ├── charts4.png │ │ │ │ │ │ └── charts5.png │ │ │ │ ├── wordimage │ │ │ │ │ ├── imageUploader.swf │ │ │ │ │ └── fClipboard_ueditor.swf │ │ │ │ ├── help │ │ │ │ │ └── help.css │ │ │ │ ├── spechars │ │ │ │ │ └── spechars.html │ │ │ │ ├── music │ │ │ │ │ └── music.html │ │ │ │ └── preview │ │ │ │ │ └── preview.html │ │ │ │ ├── third-party │ │ │ │ ├── video-js │ │ │ │ │ ├── font │ │ │ │ │ │ ├── vjs.eot │ │ │ │ │ │ ├── vjs.ttf │ │ │ │ │ │ └── vjs.woff │ │ │ │ │ └── video-js.swf │ │ │ │ ├── webuploader │ │ │ │ │ ├── Uploader.swf │ │ │ │ │ └── webuploader.css │ │ │ │ ├── zeroclipboard │ │ │ │ │ └── ZeroClipboard.swf │ │ │ │ └── highcharts │ │ │ │ │ └── modules │ │ │ │ │ ├── heatmap.js │ │ │ │ │ ├── heatmap.src.js │ │ │ │ │ └── no-data-to-display.js │ │ │ │ └── php │ │ │ │ └── action_crawler.php │ │ ├── demo.gif │ │ ├── README.md │ │ ├── package.json │ │ ├── app.js │ │ ├── ueditor-local.js │ │ └── ueditor-proxy.js │ ├── level2 │ │ ├── icons │ │ │ ├── cut.gif │ │ │ ├── bold.gif │ │ │ ├── clean.gif │ │ │ ├── copy.gif │ │ │ ├── paste.gif │ │ │ ├── print.png │ │ │ ├── quote.gif │ │ │ ├── redo.gif │ │ │ ├── undo.gif │ │ │ ├── format.png │ │ │ ├── indent.gif │ │ │ ├── italic.gif │ │ │ ├── outdent.gif │ │ │ ├── dottedlist.gif │ │ │ ├── hyperlink.gif │ │ │ ├── underline.gif │ │ │ ├── justifycenter.gif │ │ │ ├── justifyleft.gif │ │ │ ├── justifyright.gif │ │ │ └── numberedlist.gif │ │ ├── rich-text-editor.css │ │ └── rich-text-editor_example.html │ └── demo.html ├── alert │ ├── demo.gif │ ├── demo.html │ ├── alert.css.map │ ├── alert.js │ └── alert.scss ├── pull │ ├── demo.gif │ ├── loading.gif │ └── scroll-down.png ├── tabs │ ├── demo.gif │ ├── tabs.css │ ├── tabs-1.css │ └── demo.html ├── toast │ ├── demo.gif │ ├── toast.css │ └── demo.html ├── confirm │ ├── demo.gif │ ├── demo.html │ ├── confirm.css.map │ └── confirm.js ├── datetime │ ├── demo.png │ ├── demo.html │ └── index.js ├── events │ ├── demo.gif │ └── demo.html ├── formJSON │ └── demo.png ├── lazyload │ ├── demo.gif │ ├── demo.html │ ├── demo4.html │ ├── demo3.html │ └── demo2.html ├── loadpage │ ├── abc.jpg │ ├── demo.gif │ ├── demo.js │ └── demo2.html ├── paging │ ├── demo.gif │ ├── demo.html │ ├── paging.css │ └── paging.scss ├── prompt │ ├── demo.gif │ ├── demo.html │ ├── prompt.css.map │ └── prompt.js ├── pull-v2 │ ├── demo.gif │ └── pullUp.js ├── tooltip │ ├── demo.gif │ └── demo.html ├── ui-input │ └── demo.gif ├── ui-like │ ├── demo.gif │ └── index.html ├── citySelect │ ├── demo.gif │ └── demo.html ├── clearable │ ├── demo.gif │ ├── demo.html │ └── clearable.css ├── deletable │ ├── demo.gif │ ├── deletable.css │ └── demo.html ├── imageView │ ├── demo.gif │ └── demo.html ├── CSS-Controls │ ├── like │ │ ├── demo.gif │ │ ├── icon.png │ │ ├── demo.html │ │ └── test-perspective.html │ ├── radio │ │ ├── demo.png │ │ ├── demo.html │ │ └── ui-radio.css │ ├── switch │ │ ├── demo.gif │ │ └── demo.html │ ├── checkbox │ │ ├── demo.gif │ │ └── demo.html │ └── demo.html ├── baseCSS │ ├── README.md │ ├── bootstrap │ │ ├── less │ │ │ ├── mixins │ │ │ │ ├── center-block.less │ │ │ │ ├── text-emphasis.less │ │ │ │ ├── size.less │ │ │ │ ├── background-variant.less │ │ │ │ ├── opacity.less │ │ │ │ ├── text-overflow.less │ │ │ │ ├── tab-focus.less │ │ │ │ ├── labels.less │ │ │ │ ├── resize.less │ │ │ │ ├── progress-bar.less │ │ │ │ ├── nav-divider.less │ │ │ │ ├── reset-filter.less │ │ │ │ ├── alerts.less │ │ │ │ ├── nav-vertical-align.less │ │ │ │ ├── responsive-visibility.less │ │ │ │ ├── pagination.less │ │ │ │ ├── border-radius.less │ │ │ │ ├── panels.less │ │ │ │ ├── list-group.less │ │ │ │ ├── hide-text.less │ │ │ │ ├── clearfix.less │ │ │ │ ├── table-row.less │ │ │ │ ├── image.less │ │ │ │ └── buttons.less │ │ │ ├── .csslintrc │ │ │ ├── wells.less │ │ │ ├── breadcrumbs.less │ │ │ ├── responsive-embed.less │ │ │ ├── component-animations.less │ │ │ ├── close.less │ │ │ ├── thumbnails.less │ │ │ ├── utilities.less │ │ │ ├── media.less │ │ │ ├── pager.less │ │ │ ├── jumbotron.less │ │ │ ├── mixins.less │ │ │ ├── bootstrap.less │ │ │ ├── labels.less │ │ │ └── badges.less │ │ └── bootstrap-core.less │ ├── base.css │ ├── bootstrap-extend.css │ └── bootstrap-sass │ │ └── buttons.scss ├── menu │ ├── menu.css │ ├── demo2.html │ └── demo.html ├── panel │ ├── panel.js │ └── demo.html ├── _fixMobile │ ├── README.md │ ├── HTMLElement.js │ └── EventPath.js ├── shareWX │ └── demo.html ├── sort │ └── demo.html ├── template │ ├── README.md │ └── demo.html ├── loadingPage │ ├── demo.html │ └── loadingPage.js ├── popup │ ├── popup.css │ ├── demo.html │ └── popup.js ├── preview │ ├── demo.html │ └── preview.js └── infiniteScroll │ └── infiniteScroll.js ├── run.cmd ├── index.html ├── test ├── lib │ └── jasmine-2.3.4 │ │ └── jasmine_favicon.png ├── src │ ├── Song.js │ └── Player.js ├── spec │ └── SpecHelper.js └── SpecRunner.html ├── _config.yml ├── .editorconfig ├── .jshintrc ├── .gitignore ├── package.json ├── .eslintrc ├── optimizer.js └── LICENSE /src/formValidator/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /run.cmd: -------------------------------------------------------------------------------- 1 | supervisor app.js 2 | -------------------------------------------------------------------------------- /src/_lib/README.md: -------------------------------------------------------------------------------- 1 | ## 说明 2 | * 第三方库 3 | -------------------------------------------------------------------------------- /src/upload/run.cmd: -------------------------------------------------------------------------------- 1 | supervisor app.js 2 | -------------------------------------------------------------------------------- /src/_fixDesktop/AJAX.json: -------------------------------------------------------------------------------- 1 | {"a":"abc","b":"bbc"} 2 | -------------------------------------------------------------------------------- /src/baseUtils/_grunt-demo-how-to/css/a.css: -------------------------------------------------------------------------------- 1 | body{ 2 | color:#fff; 3 | } -------------------------------------------------------------------------------- /src/baseUtils/_grunt-demo-how-to/css/b.css: -------------------------------------------------------------------------------- 1 | body{ 2 | color:#f0f; 3 | } -------------------------------------------------------------------------------- /src/views/run.cmd: -------------------------------------------------------------------------------- 1 | babel views.es6.js --watch --out-file views.js 2 | -------------------------------------------------------------------------------- /src/webcom/demo.css: -------------------------------------------------------------------------------- 1 | .list li { 2 | background-color: #FDFFC7; 3 | } 4 | -------------------------------------------------------------------------------- /src/webcom/demo.js: -------------------------------------------------------------------------------- 1 | console.log('This message comes from demo.js.') 2 | -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/themes/iframe.css: -------------------------------------------------------------------------------- 1 | /*可以在这里添加你自己的css*/ 2 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/alert/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/alert/demo.gif -------------------------------------------------------------------------------- /src/pull/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/pull/demo.gif -------------------------------------------------------------------------------- /src/tabs/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/tabs/demo.gif -------------------------------------------------------------------------------- /src/toast/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/toast/demo.gif -------------------------------------------------------------------------------- /src/confirm/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/confirm/demo.gif -------------------------------------------------------------------------------- /src/datetime/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/datetime/demo.png -------------------------------------------------------------------------------- /src/events/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/events/demo.gif -------------------------------------------------------------------------------- /src/formJSON/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/formJSON/demo.png -------------------------------------------------------------------------------- /src/lazyload/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/lazyload/demo.gif -------------------------------------------------------------------------------- /src/loadpage/abc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/loadpage/abc.jpg -------------------------------------------------------------------------------- /src/loadpage/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/loadpage/demo.gif -------------------------------------------------------------------------------- /src/paging/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/paging/demo.gif -------------------------------------------------------------------------------- /src/prompt/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/prompt/demo.gif -------------------------------------------------------------------------------- /src/pull-v2/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/pull-v2/demo.gif -------------------------------------------------------------------------------- /src/pull/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/pull/loading.gif -------------------------------------------------------------------------------- /src/tooltip/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/tooltip/demo.gif -------------------------------------------------------------------------------- /src/ui-input/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/ui-input/demo.gif -------------------------------------------------------------------------------- /src/ui-like/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/ui-like/demo.gif -------------------------------------------------------------------------------- /src/upload/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/upload/demo.gif -------------------------------------------------------------------------------- /src/views/steps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/views/steps.png -------------------------------------------------------------------------------- /src/webcom/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/webcom/demo.png -------------------------------------------------------------------------------- /src/citySelect/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/citySelect/demo.gif -------------------------------------------------------------------------------- /src/clearable/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/clearable/demo.gif -------------------------------------------------------------------------------- /src/deletable/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/deletable/demo.gif -------------------------------------------------------------------------------- /src/imageView/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/imageView/demo.gif -------------------------------------------------------------------------------- /src/formValidator/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/formValidator/demo.gif -------------------------------------------------------------------------------- /src/pull/scroll-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/pull/scroll-down.png -------------------------------------------------------------------------------- /src/editor/ueditor/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/demo.gif -------------------------------------------------------------------------------- /src/CSS-Controls/like/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/CSS-Controls/like/demo.gif -------------------------------------------------------------------------------- /src/CSS-Controls/like/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/CSS-Controls/like/icon.png -------------------------------------------------------------------------------- /src/CSS-Controls/radio/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/CSS-Controls/radio/demo.png -------------------------------------------------------------------------------- /src/editor/level2/icons/cut.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/level2/icons/cut.gif -------------------------------------------------------------------------------- /src/CSS-Controls/switch/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/CSS-Controls/switch/demo.gif -------------------------------------------------------------------------------- /src/baseCSS/README.md: -------------------------------------------------------------------------------- 1 | ## 说明 2 | * base.css 基础公共样式 3 | * bootstrap-extend.css bootstrap的扩展样式 4 | * row-fluid.css 简单删格样式 5 | -------------------------------------------------------------------------------- /src/editor/level2/icons/bold.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/level2/icons/bold.gif -------------------------------------------------------------------------------- /src/editor/level2/icons/clean.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/level2/icons/clean.gif -------------------------------------------------------------------------------- /src/editor/level2/icons/copy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/level2/icons/copy.gif -------------------------------------------------------------------------------- /src/editor/level2/icons/paste.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/level2/icons/paste.gif -------------------------------------------------------------------------------- /src/editor/level2/icons/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/level2/icons/print.png -------------------------------------------------------------------------------- /src/editor/level2/icons/quote.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/level2/icons/quote.gif -------------------------------------------------------------------------------- /src/editor/level2/icons/redo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/level2/icons/redo.gif -------------------------------------------------------------------------------- /src/editor/level2/icons/undo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/level2/icons/undo.gif -------------------------------------------------------------------------------- /src/CSS-Controls/checkbox/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/CSS-Controls/checkbox/demo.gif -------------------------------------------------------------------------------- /src/editor/level2/icons/format.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/level2/icons/format.png -------------------------------------------------------------------------------- /src/editor/level2/icons/indent.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/level2/icons/indent.gif -------------------------------------------------------------------------------- /src/editor/level2/icons/italic.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/level2/icons/italic.gif -------------------------------------------------------------------------------- /src/editor/level2/icons/outdent.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/level2/icons/outdent.gif -------------------------------------------------------------------------------- /src/editor/level2/icons/dottedlist.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/level2/icons/dottedlist.gif -------------------------------------------------------------------------------- /src/editor/level2/icons/hyperlink.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/level2/icons/hyperlink.gif -------------------------------------------------------------------------------- /src/editor/level2/icons/underline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/level2/icons/underline.gif -------------------------------------------------------------------------------- /src/menu/menu.css: -------------------------------------------------------------------------------- 1 | nav .sub-nav.collapse { 2 | display: none; 3 | } 4 | 5 | nav li.active { 6 | background-color: #f00; 7 | } 8 | -------------------------------------------------------------------------------- /src/editor/level2/icons/justifycenter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/level2/icons/justifycenter.gif -------------------------------------------------------------------------------- /src/editor/level2/icons/justifyleft.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/level2/icons/justifyleft.gif -------------------------------------------------------------------------------- /src/editor/level2/icons/justifyright.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/level2/icons/justifyright.gif -------------------------------------------------------------------------------- /src/editor/level2/icons/numberedlist.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/level2/icons/numberedlist.gif -------------------------------------------------------------------------------- /src/views/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "plugins": ["transform-es2015-arrow-functions", "babel-plugin-transform-es2015-template-literals"] 3 | } 4 | -------------------------------------------------------------------------------- /src/formValidator/readme/formValidator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/formValidator/readme/formValidator.png -------------------------------------------------------------------------------- /src/formValidator/readme/formValidator.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/formValidator/readme/formValidator.vsdx -------------------------------------------------------------------------------- /test/lib/jasmine-2.3.4/jasmine_favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/test/lib/jasmine-2.3.4/jasmine_favicon.png -------------------------------------------------------------------------------- /src/_lib/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/_lib/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /src/baseUtils/_grunt-demo-how-to/js/a.js: -------------------------------------------------------------------------------- 1 | (function() { 2 | var helloGrunt = "Hello Grunt!(From a.js)"; 3 | console.log(helloGrunt); 4 | })(); -------------------------------------------------------------------------------- /src/baseUtils/_grunt-demo-how-to/js/b.js: -------------------------------------------------------------------------------- 1 | (function() { 2 | var helloGrunt = "Hello Grunt!(From b.js)"; 3 | console.log(helloGrunt); 4 | })(); -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/lang/en/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/lang/en/images/copy.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/lang/en/images/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/lang/en/images/music.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/image/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/image/images/bg.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/table/dragicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/table/dragicon.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/video/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/video/images/bg.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/lang/en/images/addimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/lang/en/images/addimage.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/lang/en/images/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/lang/en/images/button.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/lang/en/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/lang/en/images/upload.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/lang/zh-cn/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/lang/zh-cn/images/copy.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/lang/zh-cn/images/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/lang/zh-cn/images/music.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/emotion/images/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/emotion/images/0.gif -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/lang/en/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/lang/en/images/background.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/lang/en/images/localimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/lang/en/images/localimage.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/lang/zh-cn/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/lang/zh-cn/images/upload.png -------------------------------------------------------------------------------- /src/_fixDesktop/AJAX.js: -------------------------------------------------------------------------------- 1 | 2 | if (!window.XMLHttpRequest) { 3 | 4 | window.XMLHttpRequest = function() { 5 | return new ActiveXObject('Microsoft.XMLHTTP'); 6 | } 7 | 8 | } 9 | -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/attachment/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/attachment/images/bg.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/background/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/background/images/bg.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/emotion/images/bface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/emotion/images/bface.gif -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/emotion/images/cface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/emotion/images/cface.gif -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/emotion/images/fface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/emotion/images/fface.gif -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/emotion/images/tface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/emotion/images/tface.gif -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/emotion/images/wface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/emotion/images/wface.gif -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/emotion/images/yface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/emotion/images/yface.gif -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/image/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/image/images/icons.gif -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/image/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/image/images/icons.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/image/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/image/images/image.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/image/images/success.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/image/images/success.gif -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/image/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/image/images/success.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/scrawl/images/addimg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/scrawl/images/addimg.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/scrawl/images/brush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/scrawl/images/brush.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/scrawl/images/delimg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/scrawl/images/delimg.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/scrawl/images/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/scrawl/images/empty.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/scrawl/images/emptyH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/scrawl/images/emptyH.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/scrawl/images/eraser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/scrawl/images/eraser.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/scrawl/images/redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/scrawl/images/redo.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/scrawl/images/redoH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/scrawl/images/redoH.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/scrawl/images/scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/scrawl/images/scale.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/scrawl/images/scaleH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/scrawl/images/scaleH.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/scrawl/images/size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/scrawl/images/size.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/scrawl/images/undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/scrawl/images/undo.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/scrawl/images/undoH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/scrawl/images/undoH.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/template/images/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/template/images/bg.gif -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/template/images/pre0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/template/images/pre0.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/template/images/pre1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/template/images/pre1.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/template/images/pre2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/template/images/pre2.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/template/images/pre3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/template/images/pre3.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/template/images/pre4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/template/images/pre4.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/video/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/video/images/icons.gif -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/video/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/video/images/icons.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/video/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/video/images/image.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/video/images/success.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/video/images/success.gif -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/video/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/video/images/success.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/lang/en/images/deletedisable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/lang/en/images/deletedisable.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/lang/en/images/deleteenable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/lang/en/images/deleteenable.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/lang/zh-cn/images/localimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/lang/zh-cn/images/localimage.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/themes/default/images/anchor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/themes/default/images/anchor.gif -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/themes/default/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/themes/default/images/arrow.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/themes/default/images/charts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/themes/default/images/charts.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/themes/default/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/themes/default/images/icons.gif -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/themes/default/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/themes/default/images/icons.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/themes/default/images/lock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/themes/default/images/lock.gif -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/themes/default/images/scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/themes/default/images/scale.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/themes/default/images/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/themes/default/images/spacer.gif -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/themes/default/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/themes/default/images/upload.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/themes/default/images/word.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/themes/default/images/word.gif -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/charts/images/charts0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/charts/images/charts0.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/charts/images/charts1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/charts/images/charts1.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/charts/images/charts2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/charts/images/charts2.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/charts/images/charts3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/charts/images/charts3.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/charts/images/charts4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/charts/images/charts4.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/charts/images/charts5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/charts/images/charts5.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/emotion/images/jxface2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/emotion/images/jxface2.gif -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/image/images/alignicon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/image/images/alignicon.jpg -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/image/images/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/image/images/progress.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/scrawl/images/delimgH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/scrawl/images/delimgH.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/video/images/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/video/images/progress.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/lang/en/images/listbackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/lang/en/images/listbackground.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/themes/default/images/arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/themes/default/images/arrow_up.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/themes/default/images/cursor_h.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/themes/default/images/cursor_h.gif -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/themes/default/images/cursor_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/themes/default/images/cursor_h.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/themes/default/images/cursor_v.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/themes/default/images/cursor_v.gif -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/themes/default/images/cursor_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/themes/default/images/cursor_v.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/themes/default/images/filescan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/themes/default/images/filescan.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/themes/default/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/themes/default/images/loading.gif -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/themes/default/images/sortable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/themes/default/images/sortable.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/third-party/video-js/font/vjs.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/third-party/video-js/font/vjs.eot -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/third-party/video-js/font/vjs.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/third-party/video-js/font/vjs.ttf -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/third-party/video-js/font/vjs.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/third-party/video-js/font/vjs.woff -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/third-party/video-js/video-js.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/third-party/video-js/video-js.swf -------------------------------------------------------------------------------- /test/src/Song.js: -------------------------------------------------------------------------------- 1 | function Song() { 2 | } 3 | 4 | Song.prototype.persistFavoriteStatus = function(value) { 5 | // something complicated 6 | throw new Error("not yet implemented"); 7 | }; -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/attachment/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/attachment/images/icons.gif -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/attachment/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/attachment/images/icons.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/attachment/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/attachment/images/image.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/attachment/images/success.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/attachment/images/success.gif -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/attachment/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/attachment/images/success.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/background/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/background/images/success.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/video/images/center_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/video/images/center_focus.jpg -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/video/images/file-icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/video/images/file-icons.gif -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/video/images/file-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/video/images/file-icons.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/video/images/left_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/video/images/left_focus.jpg -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/video/images/none_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/video/images/none_focus.jpg -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/video/images/right_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/video/images/right_focus.jpg -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/wordimage/imageUploader.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/wordimage/imageUploader.swf -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/lang/en/images/alldeletebtnupskin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/lang/en/images/alldeletebtnupskin.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/lang/en/images/rotateleftdisable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/lang/en/images/rotateleftdisable.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/lang/en/images/rotateleftenable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/lang/en/images/rotateleftenable.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/lang/en/images/rotaterightdisable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/lang/en/images/rotaterightdisable.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/lang/en/images/rotaterightenable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/lang/en/images/rotaterightenable.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/themes/default/images/arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/themes/default/images/arrow_down.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/themes/default/images/button-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/themes/default/images/button-bg.gif -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/themes/default/images/highlighted.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/themes/default/images/highlighted.gif -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/themes/default/images/icons-all.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/themes/default/images/icons-all.gif -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/themes/default/images/loaderror.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/themes/default/images/loaderror.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/themes/default/images/pagebreak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/themes/default/images/pagebreak.gif -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/themes/default/images/sparator_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/themes/default/images/sparator_v.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/themes/default/images/toolbar_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/themes/default/images/toolbar_bg.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/themes/default/images/videologo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/themes/default/images/videologo.gif -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/themes/default/images/wordpaste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/themes/default/images/wordpaste.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/third-party/webuploader/Uploader.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/third-party/webuploader/Uploader.swf -------------------------------------------------------------------------------- /src/baseCSS/bootstrap/less/mixins/center-block.less: -------------------------------------------------------------------------------- 1 | // Center-align a block level element 2 | 3 | .center-block() { 4 | display: block; 5 | margin-left: auto; 6 | margin-right: auto; 7 | } 8 | -------------------------------------------------------------------------------- /src/baseCSS/bootstrap/less/mixins/text-emphasis.less: -------------------------------------------------------------------------------- 1 | // Typography 2 | 3 | .text-emphasis-variant(@color) { 4 | color: @color; 5 | a&:hover { 6 | color: darken(@color, 10%); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /src/baseUtils/_grunt-demo-how-to/js/requirejs.config.js: -------------------------------------------------------------------------------- 1 | require.config({ 2 | paths: { 3 | a: "a", 4 | bb: "b" 5 | }, 6 | shim: { 7 | a: { 8 | deps: ["bb"] 9 | } 10 | } 11 | }); -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/attachment/images/alignicon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/attachment/images/alignicon.gif -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/attachment/images/alignicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/attachment/images/alignicon.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/attachment/images/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/attachment/images/progress.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/themes/default/images/cancelbutton.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/themes/default/images/cancelbutton.gif -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/themes/default/images/unhighlighted.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/themes/default/images/unhighlighted.gif -------------------------------------------------------------------------------- /src/editor/ueditor/README.md: -------------------------------------------------------------------------------- 1 | * Run command `node app.js` 2 | * Open browser & visit `localhost:3000` 3 | * Demo is in `public` directory 4 | 5 | * 打开cmd命令,运行命令`node app.js` 6 | * 打开游览器,访问`localhost:3000` 7 | -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/attachment/images/file-icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/attachment/images/file-icons.gif -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/attachment/images/file-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/attachment/images/file-icons.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/wordimage/fClipboard_ueditor.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/wordimage/fClipboard_ueditor.swf -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/lang/en/images/alldeletebtnhoverskin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/lang/en/images/alldeletebtnhoverskin.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/themes/default/images/dialog-title-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/themes/default/images/dialog-title-bg.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/themes/default/images/neweditor-tab-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/themes/default/images/neweditor-tab-bg.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/themes/default/images/table-cell-align.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/themes/default/images/table-cell-align.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/emotion/images/neweditor-tab-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/emotion/images/neweditor-tab-bg.png -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/third-party/zeroclipboard/ZeroClipboard.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/third-party/zeroclipboard/ZeroClipboard.swf -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/attachment/fileTypeImages/icon_chm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/attachment/fileTypeImages/icon_chm.gif -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/attachment/fileTypeImages/icon_doc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/attachment/fileTypeImages/icon_doc.gif -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/attachment/fileTypeImages/icon_exe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/attachment/fileTypeImages/icon_exe.gif -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/attachment/fileTypeImages/icon_jpg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/attachment/fileTypeImages/icon_jpg.gif -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/attachment/fileTypeImages/icon_mp3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/attachment/fileTypeImages/icon_mp3.gif -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/attachment/fileTypeImages/icon_mv.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/attachment/fileTypeImages/icon_mv.gif -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/attachment/fileTypeImages/icon_pdf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/attachment/fileTypeImages/icon_pdf.gif -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/attachment/fileTypeImages/icon_ppt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/attachment/fileTypeImages/icon_ppt.gif -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/attachment/fileTypeImages/icon_psd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/attachment/fileTypeImages/icon_psd.gif -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/attachment/fileTypeImages/icon_rar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/attachment/fileTypeImages/icon_rar.gif -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/attachment/fileTypeImages/icon_txt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/attachment/fileTypeImages/icon_txt.gif -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/attachment/fileTypeImages/icon_xls.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/attachment/fileTypeImages/icon_xls.gif -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/themes/default/images/tangram-colorpicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/themes/default/images/tangram-colorpicker.png -------------------------------------------------------------------------------- /src/baseCSS/bootstrap/less/mixins/size.less: -------------------------------------------------------------------------------- 1 | // Sizing shortcuts 2 | 3 | .size(@width; @height) { 4 | width: @width; 5 | height: @height; 6 | } 7 | 8 | .square(@size) { 9 | .size(@size; @size); 10 | } 11 | -------------------------------------------------------------------------------- /src/baseCSS/bootstrap/less/mixins/background-variant.less: -------------------------------------------------------------------------------- 1 | // Contextual backgrounds 2 | 3 | .bg-variant(@color) { 4 | background-color: @color; 5 | a&:hover { 6 | background-color: darken(@color, 10%); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /src/baseCSS/bootstrap/less/mixins/opacity.less: -------------------------------------------------------------------------------- 1 | // Opacity 2 | 3 | .opacity(@opacity) { 4 | opacity: @opacity; 5 | // IE8 filter 6 | @opacity-ie: (@opacity * 100); 7 | filter: ~"alpha(opacity=@{opacity-ie})"; 8 | } 9 | -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/attachment/fileTypeImages/icon_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoukekestar/modules/HEAD/src/editor/ueditor/public/ueditor/dialogs/attachment/fileTypeImages/icon_default.png -------------------------------------------------------------------------------- /src/upload/demo.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 |需要启动该目录下app.js
9 | 10 | 11 | -------------------------------------------------------------------------------- /src/_fixDesktop/HTMLElement.js: -------------------------------------------------------------------------------- 1 | // For IE 11 2 | // Element has no remove but removeNode method. 3 | if (HTMLElement && HTMLElement.prototype.removeNode) { 4 | HTMLElement.prototype.remove = HTMLElement.prototype.removeNode; 5 | } 6 | -------------------------------------------------------------------------------- /src/upload/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "zhoukekestar", 3 | "decription": "nodejs upload", 4 | "version": "0.1.0", 5 | "dependencies": { 6 | "express" : "^4.12.2", 7 | "connect-multiparty": "2.0.0" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/baseCSS/bootstrap/less/mixins/text-overflow.less: -------------------------------------------------------------------------------- 1 | // Text overflow 2 | // Requires inline-block or block for proper styling 3 | 4 | .text-overflow() { 5 | overflow: hidden; 6 | text-overflow: ellipsis; 7 | white-space: nowrap; 8 | } 9 | -------------------------------------------------------------------------------- /src/panel/panel.js: -------------------------------------------------------------------------------- 1 | (function(factory) { 2 | if (typeof define === "function" && define.amd) { 3 | define("panel", [ "jquery" ], factory); 4 | } else { 5 | factory(jQuery); 6 | } 7 | }(function($) { 8 | 9 | 10 | 11 | })); -------------------------------------------------------------------------------- /src/baseCSS/bootstrap/less/mixins/tab-focus.less: -------------------------------------------------------------------------------- 1 | // WebKit-style focus 2 | 3 | .tab-focus() { 4 | // Default 5 | outline: thin dotted; 6 | // WebKit 7 | outline: 5px auto -webkit-focus-ring-color; 8 | outline-offset: -2px; 9 | } 10 | -------------------------------------------------------------------------------- /src/editor/demo.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |如需查看ueditor效果,需要进入ueditor目录,运行app.js,并访问
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/baseCSS/bootstrap/less/mixins/labels.less: -------------------------------------------------------------------------------- 1 | // Labels 2 | 3 | .label-variant(@color) { 4 | background-color: @color; 5 | 6 | &[href] { 7 | &:hover, 8 | &:focus { 9 | background-color: darken(@color, 10%); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/baseCSS/bootstrap/less/mixins/resize.less: -------------------------------------------------------------------------------- 1 | // Resize anything 2 | 3 | .resizable(@direction) { 4 | resize: @direction; // Options: horizontal, vertical, both 5 | overflow: auto; // Per CSS3 UI, `resize` only applies when `overflow` isn't `visible` 6 | } 7 | -------------------------------------------------------------------------------- /src/_fixMobile/README.md: -------------------------------------------------------------------------------- 1 | ## 说明 2 | | 文件名 | 说明 | 3 | | ----- | ----- | 4 | | CustomEvent.js | 自定义事件的兼容修复: Event对象和webkitAnimationEnd事件 | 5 | | EventPath.js | event中的path属性兼容修复 | 6 | | HTMLElement.js | remove方法的修复及click事件的兼容修复 | 7 | | XMLHttpRequest.js | XMLHttpRequest对象修复 | 8 | -------------------------------------------------------------------------------- /src/baseCSS/bootstrap/less/mixins/progress-bar.less: -------------------------------------------------------------------------------- 1 | // Progress bars 2 | 3 | .progress-bar-variant(@color) { 4 | background-color: @color; 5 | 6 | // Deprecated parent class requirement as of v3.2.0 7 | .progress-striped & { 8 | #gradient > .striped(); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | 2 | # Install Ruby. Steps for Windows. 3 | # 1、gem install jekyll // v3.2.0 4 | # 2、gem install bundler 5 | # 3、bundle install 6 | # 4、Copy Ruby23-x64/lib/ruby/gems/2.3.0/gems/minima-1.0.1/_layouts/*.html TO Curent dir 7 | # 5、jekyll serve 8 | 9 | include: [_fixDesktop, _fixMobile, _lib] 10 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | #example################################# 2 | # editorconfig.org 3 | 4 | root = true 5 | 6 | [*] 7 | charset = utf-8 8 | end_of_line = lf 9 | indent_size = 2 10 | indent_style = space 11 | insert_final_newline = true 12 | trim_trailing_whitespace = true 13 | 14 | [*.py] 15 | indent_size = 4 16 | -------------------------------------------------------------------------------- /src/editor/ueditor/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "zhoukekestar", 3 | "decription": "nodejs for ueditor", 4 | "version": "0.1.0", 5 | "dependencies": { 6 | "express" : "^4.12.2", 7 | "connect-multiparty": "2.0.0", 8 | "body-parser" : "~1.12.0", 9 | "request" : "^2.60.0" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/upload/app.js: -------------------------------------------------------------------------------- 1 | var express = require('express'); 2 | var path = require('path'); 3 | var app = express(); 4 | 5 | app.use(express.static(path.join(__dirname, 'public'))); 6 | require('./local.js')(app); 7 | 8 | app.listen(3000); 9 | console.log('Listen on 3000. Visit it by: http://localhost:3000') 10 | -------------------------------------------------------------------------------- /src/baseCSS/bootstrap/less/mixins/nav-divider.less: -------------------------------------------------------------------------------- 1 | // Horizontal dividers 2 | // 3 | // Dividers (basically an hr) within dropdowns and nav lists 4 | 5 | .nav-divider(@color: #e5e5e5) { 6 | height: 1px; 7 | margin: ((@line-height-computed / 2) - 1) 0; 8 | overflow: hidden; 9 | background-color: @color; 10 | } 11 | -------------------------------------------------------------------------------- /src/baseCSS/bootstrap/less/mixins/reset-filter.less: -------------------------------------------------------------------------------- 1 | // Reset filters for IE 2 | // 3 | // When you need to remove a gradient background, do not forget to use this to reset 4 | // the IE filter for IE9 and below. 5 | 6 | .reset-filter() { 7 | filter: e(%("progid:DXImageTransform.Microsoft.gradient(enabled = false)")); 8 | } 9 | -------------------------------------------------------------------------------- /src/_fixDesktop/onended.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |指定input的clearable为true即可
10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /src/baseCSS/bootstrap/less/mixins/responsive-visibility.less: -------------------------------------------------------------------------------- 1 | // Responsive utilities 2 | 3 | // 4 | // More easily include all the states for responsive-utilities.less. 5 | .responsive-visibility() { 6 | display: block !important; 7 | table& { display: table; } 8 | tr& { display: table-row !important; } 9 | th&, 10 | td& { display: table-cell !important; } 11 | } 12 | 13 | .responsive-invisibility() { 14 | display: none !important; 15 | } 16 | -------------------------------------------------------------------------------- /src/shareWX/demo.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |访问//m.toomao.com/square可查看样例
9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /src/CSS-Controls/demo.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |打开控制台,点击下面按钮后。有错误信息输出,并有一个用于记录错误的请求发出
10 | 11 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /src/loadpage/demo.js: -------------------------------------------------------------------------------- 1 | require.config({ 2 | baseUrl: '../', 3 | paths: { 4 | jquery: 'http://cdn.bootcss.com/jquery/2.1.3/jquery.min', 5 | alertMsg: 'alertMsg/alertMsg.jquery', 6 | loadingPage: 'loadingPage/loadingPage', 7 | loadpage: 'loadpage/loadpage' 8 | } 9 | }); 10 | 11 | require(['loadingPage','jquery', 'loadpage'], function (l, $, load) { 12 | l.loaded(); 13 | 14 | load.afterLoadPage = function() { 15 | console.log('after') 16 | } 17 | load.beforeLoadPage = function() { 18 | console.log('before') 19 | } 20 | }); 21 | -------------------------------------------------------------------------------- /src/deletable/deletable.css: -------------------------------------------------------------------------------- 1 | .deletable.deletable-show { 2 | transition: transform .5s; 3 | transform: translateX(-60px); 4 | -webkit-transform: translateX(-60px); 5 | } 6 | .deletable .deletable-btn { 7 | position: absolute; 8 | right: -60px; 9 | width: 60px; 10 | height: 100%; 11 | background-color: #f00; 12 | top: 0; 13 | color: #fff; 14 | } 15 | .deletable .deletable-btn:after { 16 | content: '删除'; 17 | position: absolute; 18 | top: 50%; 19 | left: 50%; 20 | margin-top: -.5em; 21 | margin-left: -1em; 22 | font-size: 14px; 23 | } 24 | -------------------------------------------------------------------------------- /src/baseCSS/bootstrap/less/.csslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "adjoining-classes": false, 3 | "box-sizing": false, 4 | "box-model": false, 5 | "compatible-vendor-prefixes": false, 6 | "floats": false, 7 | "font-sizes": false, 8 | "gradients": false, 9 | "important": false, 10 | "known-properties": false, 11 | "outline-none": false, 12 | "qualified-headings": false, 13 | "regex-selectors": false, 14 | "shorthand": false, 15 | "text-indent": false, 16 | "unique-headings": false, 17 | "universal-selector": false, 18 | "unqualified-attributes": false 19 | } 20 | -------------------------------------------------------------------------------- /src/confirm/demo.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |API这样设计的原因,请查看alert模块
10 |API这样设计的原因,请查看alert模块
10 |26 | hello list2! 27 |
28 |该插件使用window.loadingPage全局对象,也可通过模块加载引用
17 |loadingPage.loading() 显示正在加载的画面
18 |loadingPage.loaded() 隐藏加载画面
19 | 20 | 21 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /src/loadpage/demo2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /src/popup/popup.css: -------------------------------------------------------------------------------- 1 | @CHARSET "UTF-8"; 2 | .page-popup{ 3 | position: fixed; 4 | width: 100%; 5 | height: 100%; 6 | background-color: rgba(0, 0, 0, 0.8); 7 | z-index: 101; 8 | color: #fff; 9 | /*transition: left .5s;*/ 10 | overflow-y: scroll; 11 | top: 0; 12 | left: 0; 13 | } 14 | .popup-close{ 15 | text-align: right; 16 | padding: 1em; 17 | margin: 0; 18 | font-size: 1.2em; 19 | } 20 | .popup-list{ 21 | margin: 0; 22 | list-style: none; 23 | padding: 0; 24 | } 25 | .popup-list li{ 26 | display: block; 27 | width: 12em; 28 | margin: auto; 29 | position: relative; 30 | padding: .5em 1em .5em 4em; 31 | } 32 | .popup-list li + li{ 33 | border-top: solid 1px #fff; 34 | } 35 | .popup-list img{ 36 | position: absolute; 37 | width: 2em; 38 | height: 2em; 39 | left: 1em; 40 | top: 1em; 41 | } 42 | .popup-list a{ 43 | display: block; 44 | margin: 1em 0; 45 | color: #fff; 46 | text-decoration: none; 47 | } -------------------------------------------------------------------------------- /src/preview/demo.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
--------------------------------------------------------------------------------
/src/_fixDesktop/_fixCSS.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | filter: progid:DXImageTransform.Microsoft.AlphaImageLoader( src='/images/home/down.png', sizingMethod='scale');
32 | 33 | 34 | -------------------------------------------------------------------------------- /src/baseCSS/bootstrap/less/utilities.less: -------------------------------------------------------------------------------- 1 | // 2 | // Utility classes 3 | // -------------------------------------------------- 4 | 5 | 6 | // Floats 7 | // ------------------------- 8 | 9 | .clearfix { 10 | .clearfix(); 11 | } 12 | .center-block { 13 | .center-block(); 14 | } 15 | .pull-right { 16 | float: right !important; 17 | } 18 | .pull-left { 19 | float: left !important; 20 | } 21 | 22 | 23 | // Toggling content 24 | // ------------------------- 25 | 26 | // Note: Deprecated .hide in favor of .hidden or .sr-only (as appropriate) in v3.0.1 27 | .hide { 28 | display: none !important; 29 | } 30 | .show { 31 | display: block !important; 32 | } 33 | .invisible { 34 | visibility: hidden; 35 | } 36 | .text-hide { 37 | .text-hide(); 38 | } 39 | 40 | 41 | // Hide from screenreaders and browsers 42 | // 43 | // Credit: HTML5 Boilerplate 44 | 45 | .hidden { 46 | display: none !important; 47 | } 48 | 49 | 50 | // For Affix plugin 51 | // ------------------------- 52 | 53 | .affix { 54 | position: fixed; 55 | } 56 | -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/table/edittip.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |当body背景色在toast弹出时变色时,请尝试将body指定颜色
15 | 16 | 17 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /src/ui-like/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |From: http://codepen.io/thebabydino/pen/RRRRZE, https://github.com/you-dont-need/You-Dont-Need-Javascript
24 |由于:
10 |所以:
17 |39 | hello list2! 40 |
41 |webcom-test
10 | 11 | 12 | 13 | 14 | 15 | 18 | 19 | 20 | 21 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/template/template.css: -------------------------------------------------------------------------------- 1 | .wrap{ padding: 5px;font-size: 14px;} 2 | .left{width:425px;float: left;} 3 | .right{width:160px;border: 1px solid #ccc;float: right;padding: 5px;margin-right: 5px;} 4 | .right .pre{height: 332px;overflow-y: auto;} 5 | .right .preitem{border: white 1px solid;margin: 5px 0;padding: 2px 0;} 6 | .right .preitem:hover{background-color: lemonChiffon;cursor: pointer;border: #ccc 1px solid;} 7 | .right .preitem img{display: block;margin: 0 auto;width:100px;} 8 | .clear{clear: both;} 9 | .top{height:26px;line-height: 26px;padding: 5px;} 10 | .bottom{height:320px;width:100%;margin: 0 auto;} 11 | .transparent{ background: url("images/bg.gif") repeat;} 12 | .bottom table tr td{border:1px dashed #ccc;} 13 | #colorPicker{width: 17px;height: 17px;border: 1px solid #CCC;display: inline-block;border-radius: 3px;box-shadow: 2px 2px 5px #D3D6DA;} 14 | .border_style1{padding:2px;border: 1px solid #ccc;border-radius: 5px;box-shadow:2px 2px 5px #d3d6da;} 15 | p{margin: 5px 0} 16 | table{clear:both;margin-bottom:10px;border-collapse:collapse;word-break:break-all;} 17 | li{clear:both} 18 | ol{padding-left:40px; } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015 keke 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | 23 | -------------------------------------------------------------------------------- /src/menu/demo.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |Please view this demo on mobile device.
29 |请在chrome的手机模式下查看,长按,左划,右划
30 |Set default img's source to "data:image/gif;base64,.."
16 |请在chrome的手机模式下查看,长按,左划,右划
28 |Lazyload for background-image.
16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /src/baseCSS/bootstrap-sass/buttons.scss: -------------------------------------------------------------------------------- 1 | 2 | /* @see https://github.com/twbs/bootstrap/blob/master/less/mixins/buttons.less */ 3 | @mixin button($color, $background, $border) { 4 | color: $color; 5 | background-color: $background; 6 | border-color: $border; 7 | 8 | &:hover, 9 | &:focus, 10 | &.focus, 11 | &:active, 12 | &.active { 13 | color: $color; 14 | background-color: darken($background, 10%); 15 | border-color: darken($border, 12%); 16 | } 17 | &:active, 18 | &.active { 19 | background-image: none; 20 | } 21 | &.disabled, 22 | &[disabled], 23 | fieldset[disabled] & { 24 | &, 25 | &:hover, 26 | &:focus, 27 | &.focus, 28 | &:active, 29 | &.active { 30 | background-color: $background; 31 | border-color: $border; 32 | } 33 | } 34 | } 35 | 36 | .btn-red { 37 | @include button(#fff, #B41800, #B41800) 38 | } 39 | .btn-success, 40 | .btn-upload, 41 | .btn-primary { 42 | @include button(#1F1F1F, #EAEAEA, #e0e0e0) 43 | } 44 | 45 | .btn-red.btn-wide, 46 | .btn-success.btn-wide, 47 | .btn-upload.btn-wide, 48 | .btn-primary.btn-wide { 49 | width: 200px; 50 | } 51 | 52 | .btn-text { 53 | cursor: pointer; 54 | display: inline-block; 55 | padding: 5px 0; 56 | color: #666; 57 | &:hover, 58 | &:focus, 59 | &.focus, 60 | &:active, 61 | &.active { 62 | color: #000; 63 | text-decoration: none; 64 | } 65 | } 66 | -------------------------------------------------------------------------------- /src/alert/alert.js: -------------------------------------------------------------------------------- 1 | !(function(factory) { 2 | if (typeof define === "function" && define.amd) { 3 | define(factory); 4 | } else { 5 | factory(); 6 | } 7 | }(function() { 8 | 9 | var _alert = window.alert 10 | , temp = null 11 | , dialog = 'You should change your imgs source before lazyload.
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
33 |
34 |
35 |
36 |
--------------------------------------------------------------------------------
/src/baseCSS/bootstrap/less/badges.less:
--------------------------------------------------------------------------------
1 | //
2 | // Badges
3 | // --------------------------------------------------
4 |
5 |
6 | // Base class
7 | .badge {
8 | display: inline-block;
9 | min-width: 10px;
10 | padding: 3px 7px;
11 | font-size: @font-size-small;
12 | font-weight: @badge-font-weight;
13 | color: @badge-color;
14 | line-height: @badge-line-height;
15 | vertical-align: baseline;
16 | white-space: nowrap;
17 | text-align: center;
18 | background-color: @badge-bg;
19 | border-radius: @badge-border-radius;
20 |
21 | // Empty badges collapse automatically (not available in IE8)
22 | &:empty {
23 | display: none;
24 | }
25 |
26 | // Quick fix for badges in buttons
27 | .btn & {
28 | position: relative;
29 | top: -1px;
30 | }
31 |
32 | .btn-xs &,
33 | .btn-group-xs > .btn & {
34 | top: 0;
35 | padding: 1px 5px;
36 | }
37 |
38 | // Hover state, but only for links
39 | a& {
40 | &:hover,
41 | &:focus {
42 | color: @badge-link-hover-color;
43 | text-decoration: none;
44 | cursor: pointer;
45 | }
46 | }
47 |
48 | // Account for badges in navs
49 | .list-group-item.active > &,
50 | .nav-pills > .active > a > & {
51 | color: @badge-active-color;
52 | background-color: @badge-active-bg;
53 | }
54 |
55 | .list-group-item > & {
56 | float: right;
57 | }
58 |
59 | .list-group-item > & + & {
60 | margin-right: 5px;
61 | }
62 |
63 | .nav-pills > li > a > & {
64 | margin-left: 3px;
65 | }
66 | }
67 |
--------------------------------------------------------------------------------
/src/clearable/clearable.css:
--------------------------------------------------------------------------------
1 | .clearable {
2 | display: inline-block;
3 | position: relative;
4 | }
5 | .clearable .clearable-button {
6 | display: none;
7 | position: absolute;
8 | top: 0;
9 | right: 0;
10 | padding: 4px 8px;
11 | }
12 | .clearable.active .clearable-button {
13 | display: block;
14 | }
15 | .clearable .clearable-button:after {
16 | content:'';
17 | height: 14px;
18 | width: 14px;
19 | background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAAbwAAAG8B8aLcQwAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAKESURBVFiFzdc9iF1VEAfw317jusRsZZPFgCkCFsEypBGMsRA2ySaN1aLloKW9pAix3lL3tGIRbMIWAT+y+aqWlCGQIphGfIKV7PoSbNbinEfevrz78S77IH+4xeXOmf//npkzM2dhf39fF6SUFnEeaziNlfLAoDyPsYXtiPivi9+FNgEppRVcxTqWO6llFz/iWkQMeglIKS3hG3yNox2JJzHEBq5HxIvOAlJKx3ETZ3sST2IHVyLir1YBKaUPcAsnDol8hD+wGhGPagWUP384B/JxEWfGd6IaI1+St31e5Irvm4XroAA54Q4r5k04W7hQQlCO2lP9s31WDHEqIgajHbjaQP5cLjwf4e8Ozn/Gu4gGm6OFU1Uq3HqL2t8j4j4+aRHxi3zc/sSTFqHrKaXFSi6vTRXuHdxIKS2WI1Qn4ldcjogXKaWT+KFFwDLOV3Jtb8MafmoQ8dsE+V2818VvJce3C+pE3MZaRDyfkRxOV152tD4iPsSlnuSwsrC5ubmLYzMsIrfcz0Yttyc57FXtNlOxjDfG3pfwVh9HlTxIzIK7uFi2/XgJxxN8jFe6XQsGswq4V8iHKaUTeOBlTvQRMajkMaoL7uNCRPxbyO/glIOJOauIx5WcUG14UEM+Ql8RWxW25RmuDv/IR22vhrxOxOct5LvYHnXD7/BljeEe3sfb8qQ0jXwcW/gCn+JGg933EfHVkfJyrSya1hGP4RmOODg/1GFNrpBvNtgMC2d2WEbnjYYFix3JR2gih43RuD7u9Lo8vc4bO4ULr9NQCuXDajGcB/nq5N3glbiWLnfG4YZjR/7zR5MfpiZWUXkO38oZ2xfD4uPctFsRr/PldIqQuVzP/wfq4CUgNa1WoAAAAABJRU5ErkJggg==);
20 | display: block;
21 | background-size: contain;
22 | }
23 |
--------------------------------------------------------------------------------
/src/CSS-Controls/like/test-perspective.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Dynamic dom.
16 | 17 | 18 | 19 | 20 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /src/editor/ueditor/public/ueditor/dialogs/table/edittable.css: -------------------------------------------------------------------------------- 1 | body{ 2 | overflow: hidden; 3 | width: 540px; 4 | } 5 | .wrapper { 6 | margin: 10px auto 0; 7 | font-size: 12px; 8 | overflow: hidden; 9 | width: 520px; 10 | height: 315px; 11 | } 12 | 13 | .clear { 14 | clear: both; 15 | } 16 | 17 | .wrapper .left { 18 | float: left; 19 | margin-left: 10px;; 20 | } 21 | 22 | .wrapper .right { 23 | float: right; 24 | border-left: 2px dotted #EDEDED; 25 | padding-left: 15px; 26 | } 27 | 28 | .section { 29 | margin-bottom: 15px; 30 | width: 240px; 31 | overflow: hidden; 32 | } 33 | 34 | .section h3 { 35 | font-weight: bold; 36 | padding: 5px 0; 37 | margin-bottom: 10px; 38 | border-bottom: 1px solid #EDEDED; 39 | font-size: 12px; 40 | } 41 | 42 | .section ul { 43 | list-style: none; 44 | overflow: hidden; 45 | clear: both; 46 | 47 | } 48 | 49 | .section li { 50 | float: left; 51 | width: 120px;; 52 | } 53 | 54 | .section .tone { 55 | width: 80px;; 56 | } 57 | 58 | .section .preview { 59 | width: 220px; 60 | } 61 | 62 | .section .preview table { 63 | text-align: center; 64 | vertical-align: middle; 65 | color: #666; 66 | } 67 | 68 | .section .preview caption { 69 | font-weight: bold; 70 | } 71 | 72 | .section .preview td { 73 | border-width: 1px; 74 | border-style: solid; 75 | height: 22px; 76 | } 77 | 78 | .section .preview th { 79 | border-style: solid; 80 | border-color: #DDD; 81 | border-width: 2px 1px 1px 1px; 82 | height: 22px; 83 | background-color: #F7F7F7; 84 | } -------------------------------------------------------------------------------- /src/popup/popup.js: -------------------------------------------------------------------------------- 1 | !(function(factory) { 2 | if (typeof define === "function" && define.amd) { 3 | define([ "jquery" ], factory); 4 | } else { 5 | var init = factory(jQuery); 6 | init(); 7 | } 8 | }(function($) { 9 | 10 | var Init = function() { 11 | 12 | // Popup page 13 | $("[data-role='popup']").hide().each(function() { 14 | 15 | var $this = $(this); 16 | var closeAnimate = $this.find(".popup-close").data("transition"); 17 | 18 | if (closeAnimate == undefined) 19 | closeAnimate = "bounceOutLeft"; 20 | 21 | $this.find(".popup-close,a").click(function() { 22 | 23 | $this 24 | .addClass("animated " + closeAnimate) 25 | .one('webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend', function() { 26 | $(this).removeClass("animated " + closeAnimate).hide(); 27 | }); 28 | }); 29 | }); 30 | 31 | 32 | // Popup button 33 | $("[data-rel='popup']").each(function() { 34 | 35 | // 36 | $(this).click(function() { 37 | var selector = $(this).data("href"); 38 | var animate = $(this).data("transition"); 39 | if (animate == undefined) 40 | animate = "bounceInLeft"; 41 | $(selector) 42 | .show() 43 | .addClass("animated " + animate) 44 | .one('webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend', function() { 45 | $(this).removeClass("animated " + animate); 46 | }); 47 | }); 48 | }); 49 | 50 | 51 | // Back button 52 | $("[data-rel='back']").click(function() { 53 | history.back(); 54 | }); 55 | }; 56 | 57 | return Init; 58 | 59 | })); -------------------------------------------------------------------------------- /src/prompt/prompt.js: -------------------------------------------------------------------------------- 1 | !(function(factory) { 2 | if (typeof define === "function" && define.amd) { 3 | define(factory); 4 | } else { 5 | factory(); 6 | } 7 | }(function() { 8 | 9 | var _prompt = window.prompt, 10 | temp; 11 | window.prompt = function(title, defaultText, callback) { 12 | 13 | // Use custom prompt. 14 | if (typeof callback === 'function') { 15 | 16 | var dialog = 17 | '