array woes. boo [ci skip]

This commit is contained in:
danielgrippi 2012-05-30 19:03:17 -07:00
parent f3d1afcc96
commit dac781cb4f

View file

@ -74,9 +74,9 @@ var app = {
},
/* mixpanel wrapper function */
instrument : function() {
instrument : function(type, name, object, callback) {
if(!window.mixpanel) { return }
window.mixpanel[arguments[0]](_.toArray(arguments).slice(1))
window.mixpanel[type](name, object, callback)
}
};