mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-10 18:12:26 +03:00
15 lines
394 B
JavaScript
15 lines
394 B
JavaScript
|
/** @constructor */
|
||
|
function TemplateBuilder(templateType) {
|
||
|
//** document me */
|
||
|
//this.templateType = templateType;
|
||
|
|
||
|
/** @constructor */
|
||
|
this.Template = function() { // nested constructor of constructor TemplateFactory
|
||
|
/** document me */
|
||
|
this.render = function(data) {
|
||
|
/** document me */
|
||
|
this.rendered = true;
|
||
|
}
|
||
|
};
|
||
|
|
||
|
}
|