storkCore

Artifact [4a3b9ae26d]
Login

Artifact [4a3b9ae26d]

Artifact 4a3b9ae26deb5f77e3fd0e307fdb09afe63cdc55:


var FormController = clone(Stork);


FormController.addField = function(fieldElement) {
    var my = this;

    fieldElement.onfocus = function() {
	my.onFocus(fieldElement);
    }
}

FormController.onFocus = function(element) {
    return true;
}