www

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

onglets.js (445B)


      1 (function($) {
      2     widget(tk, {
      3         onglets: function(_) {
      4             _.options();
      5             
      6             _.vcontainer('', [1],
      7                          _.hcontainer('', [1,2],
      8                                       _.div('', 'tab1'),
      9                                       _.div('', 'tab2')),
     10                          _.div("", 'tab1Contenu'),
     11                          _.div("", 'tab2Contenu')).width('100%');
     12         }
     13     });
     14 })(jQuery);