Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tuyen-vuduc/tinymce-plugins
My plugins for Tiny MVC
https://github.com/tuyen-vuduc/tinymce-plugins
Last synced: 19 days ago
JSON representation
My plugins for Tiny MVC
- Host: GitHub
- URL: https://github.com/tuyen-vuduc/tinymce-plugins
- Owner: tuyen-vuduc
- Created: 2015-03-27T16:23:03.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-03-27T16:39:11.000Z (over 9 years ago)
- Last Synced: 2024-05-02T05:02:07.178Z (7 months ago)
- Language: JavaScript
- Size: 137 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
DatePicker
=========
This plugin is built based upon [jQuery.DatePicker](https://jqueryui.com/datepicker/). However, *jQuery.DatePicker* doesn't exponse it's important class, *DatePicker* to customize, so I have to copy code over with small customization.How to use
-------------
With below setting, when user types #, the date picker will be showndatepicker: {
trigger: '#',
dateFormat: 'dd-MM-yy'
}FileUpload
=========This plugin is definitely built based upon [jQuery.FileUpload](https://blueimp.github.io/jQuery-File-Upload/). The current implementation only allows to upload one file at a time, and it's is separated from image/media plugins.
How to use
-------------
With below setting, when user types [, the FileOpenDialog will be shownfileupload: {
trigger: '['
url: 'targetedUr;',
dataType: 'json',
autoUpload: true,
maxFileSize: 5000000, // 5 MB
}