Reputation: 237
I want to show a banner for 5 second and then hide it using setTimeout() in Sencha Touch
Upvotes: 0
Views: 2175
Ext.Function.defer(function () { alert('Anonymous'); }, 5000);
Upvotes: 1