@titanium/turbo
Version:
🚀 Axway Amplify tool to use Turbo for turbo charging your Appcelerator Titanium SDK Framework!
11 lines • 317 B
JavaScript
var Image = Backbone.Model.extend();
var Images = Backbone.Collection.extend({
model: Image
});
Alloy.Collections.images = new Images();
Alloy.Collections.images.reset([
{ url: '/appc1.png' },
{ url: '/appc2.png' },
{ url: '/appc3.png', width: 100, height: 100 },
{ url: '/appc4.png', width: 50, height: 50 }
]);