Il Revealing Module Pattern non c'entra proprioCodice PHP:
var panel = function () {
var init = function(nome){
alert(nome)
}
return {
init: init
}
}();
var panel1 = function () {
var init = function(nome){
alert(nome)
}
return {
init: init
}
};
alert(panel.constructor);
alert(panel1.constructor);
una bella p.pp.
Ad ogni modo grazie mi hai fatto scoprire un
bel link![]()
![]()