You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
tracend edited this page Dec 30, 2011
·
12 revisions
This is a brief introduction how to use and create your own plugins for the CMS
Views in plugins are located in"
plugins/*/views/$filename
Ideally all the jQuery plugins you use would optionally call define() to register as a module. Some of the plugins you use may already call define() to register as an AMD module. If they do not, then you can wrap the code yourself with this wrapper:
define(['jquery'], function () {
//Plugin code goes here.
});