Mercurial > bins
annotate templates.swigs/search_data.js @ 2:c44d020e5f8a 1.1.29-extended
Importing extended patched version from http://www.uli-eckhardt.de/bins/index.en.html
author | Peter Gervai <grin@grin.hu> |
---|---|
date | Wed, 15 Oct 2008 23:31:54 +0200 |
parents | a84c32f131df |
children |
rev | line source |
---|---|
0 | 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 |