materio_personalnotes.js 316 B

1234567891011121314151617181920212223242526272829
  1. // @codekit-prepend "gui.js"
  2. // @koala-prepend "gui.js"
  3. (function($) {
  4. MaterioPersonalNotes = function(){
  5. /**
  6. * init()
  7. */
  8. function init(){
  9. trace('MaterioPersonalNotes :: init');
  10. };
  11. init();
  12. };
  13. $(document).ready(function() {
  14. var materioflag = new MaterioPersonalNotes();
  15. });
  16. })(jQuery);