File: assets/EXAMPLEs/exampleLIB/exampleLIB.js

Recommend this page to a friend!
  Classes of Juan Jose   rsLIB   assets/EXAMPLEs/exampleLIB/exampleLIB.js   Download  
File: assets/EXAMPLEs/exampleLIB/exampleLIB.js
Role: Example script
Content type: text/plain
Description: Example Secondary File
Class: rsLIB
Load JavaScript and CSS using AJAX requests
Author: By
Last change: Update of assets/EXAMPLEs/exampleLIB/exampleLIB.js
Date: 2 years ago
Size: 389 bytes
 

Contents

Class file image Download
/** Clase principal de la libería ExampleLIB. Sólo para propósitos de ejemplo y depuración */ var exampleLIB = (function () { "use-strict"; //VARIABLES INTERNAS INVISIBLES DEL CLOSURE //ABSTRACIÓN var _TAG = "From 'exampleLIB.js'"; var _conf = null; function getConf(conf){ _conf=conf; return _conf.getTAG(); } //PUBLIC API return { tag: _TAG, conf: getConf } })();