Entradas

Mostrando entradas de junio, 2016

Constructor del Controller y variable global

(function constructor(args) {         Alloy.Collections.Producto.fetch();         drawRowCredito();     crearRowTotal();     crearRowInfoCompra();     anyadirProductoCarrito();         $._prueba = "variable global"; })(arguments[0] || {}); Ti.API.info("### es global?? " + $._prueba);