File: js/uiformpassword.js
/**
* UIFormPassword is a password input of a form
*
* @class UIFormPassword
* @extends UI
* @constructor
* @module UI
* @author Emilio Mariscal (emi420 [at] gmail.com)
*/
(function ($, Mootor) {
"use strict";
var UIFormPassword,
UI;
// Dependences
UI = Mootor.UI;
// Private constructors
UIFormPassword = function() {
// code here
};
// Prototypal inheritance
$.extend(UIFormPassword.prototype, UI.prototype);
// Private static methods and properties
$.extend(UIFormPassword, {
});
// Public methods and properties
$.extend(UIFormPassword.prototype, {
});
}(window.$, window.Mootor));