comparison templates.swigs/search_data.js @ 0:a84c32f131df 1.1.29

Import vendor version
author Peter Gervai <grin@grin.hu>
date Wed, 15 Oct 2008 23:28:56 +0200
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:a84c32f131df
1
2 sd = new Array(); // search data: array of image objects
3
4 // image object constructor
5 function io(search_string, title, url, thumb_url, width, height,
6 album_title, album_url) {
7 this.search_string = search_string;
8 this.title = title;
9 this.url = url;
10 this.thumb_url = thumb_url;
11 this.width = width;
12 this.height = height;
13 this.album_title = album_title;
14 this.album_url = album_url;
15 }
16