30 lines
316 B
JavaScript

// @codekit-prepend "gui.js"
// @koala-prepend "gui.js"
(function($) {
MaterioPersonalNotes = function(){
/**
* init()
*/
function init(){
trace('MaterioPersonalNotes :: init');
};
init();
};
$(document).ready(function() {
var materioflag = new MaterioPersonalNotes();
});
})(jQuery);