www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

bloc.js (283B)


      1 (function($) {
      2     widget(tk, {
      3         bloc: function(_) {
      4             _.options(
      5                 'nom',         'Exemple',
      6                 'description', "Un bloc d'exemple"
      7             );
      8             
      9             _.window(this.nom, this.description);
     10         }
     11     });
     12 })(jQuery);