www

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

recherche.js (473B)


      1 function MRecherche() {
      2     $.extend(this, {
      3         uid: singleton.uid(),
      4         
      5         // Parents
      6         monde: null,
      7         
      8         // Enfants
      9         
     10         // Instanciation
     11         instances: [],
     12         demanderInstance: function() {
     13             var mir = new MInstanceRecherche();
     14             mir.mRecherche = this;
     15             this.instances.push(mir);
     16             return mir;
     17         },
     18         
     19         // Ajout
     20         
     21         // Évènements
     22     });
     23 }