Mercurial > bins
diff 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 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/templates.swigs/search_data.js Wed Oct 15 23:28:56 2008 +0200 @@ -0,0 +1,16 @@ + +sd = new Array(); // search data: array of image objects + +// image object constructor +function io(search_string, title, url, thumb_url, width, height, + album_title, album_url) { + this.search_string = search_string; + this.title = title; + this.url = url; + this.thumb_url = thumb_url; + this.width = width; + this.height = height; + this.album_title = album_title; + this.album_url = album_url; +} +