-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathparams.json
6 lines (6 loc) · 1.82 KB
/
params.json
1
2
3
4
5
6
{
"name": "Jquery.msgbox",
"tagline": "A jquery popup plugin",
"body": "jquery.msgbox\r\n=============\r\n\r\nA jquery popup/modal/dialog plugin. Version 8.0\r\n\r\nDocumentation and examples: https://pwwang.github.io/jquery.msgbox/doc.html\r\n\r\nBrowser support: morden browsers, IE7+\r\n\r\nRequired: jquery 1.7+\r\n\r\n*Previous version could be found at https://code.google.com/p/jquery-msgbox/*\r\n\r\n\r\nWhy another jquery popup plugin ?\r\n---------------------------------\r\n\r\nMost of the exising jquery popup plugins are lacking some of the features:\r\n\r\n* Multiple instances support\r\n* Resize handler to resize the popup box\r\n* Maximization/Minimization of the popup box\r\n* Dragging support\r\n* Theme customization\r\n* Key bindings support\r\n* Working as a photo slideshow\r\n\r\nInstall\r\n-------\r\n```bash\r\nbower install jquery.msgbox\r\n```\r\n\r\nFeatures\r\n-------------\r\n\r\n*(c) could be customized*\r\n\r\n* Key bindings (c)\r\n* Overlay events (c)\r\n* Draggable\r\n* Resizable\r\n* Icons, (prev,play,next,min,max,close) (c)\r\n* Buttons in footer, and their events could be fully customized (c)\r\n* Working as a photo viewer\r\n* Themes (c)\r\n* Multiple instances (task tar simulation)\r\n* Internationalization (c)\r\n* API\r\n\r\nBasic usage\r\n-----------\r\n\r\n\t$(\".trigger\").msgbox({\r\n\t\ttype: 'html',\r\n\t\tcontent: '<p>Hello</p>'\r\n\t});\r\n\r\n\t// calling API\r\n\t$(\".trigger\").msgbox().close();\r\n\t\r\n\t// multiple instances\r\n\t$.msgbox({\r\n\t\ttype: 'text',\r\n\t\tcontent: 'instance1',\r\n\t\tid: 0\r\n\t});\r\n\t$.msgbox({\r\n\t\ttype: 'html',\r\n\t\tcontent: 'instance2',\r\n\t\tid: 'msgbox1'\r\n\t});\r\n\t\r\n\t// calling API\r\n\t$.msgbox(0).close();\r\n\t$.msgbox('msgbox1').min();\r\n",
"note": "Don't delete this file! It's used internally to help with page regeneration."
}