Skip to content
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. });

Clone this wiki locally