Change the way we launch PicLensLite so that it doesn't upscale small images.

This resolves ticket #205.
This commit is contained in:
Bharat Mediratta
2009-04-05 02:41:38 +00:00
parent 802f2431c7
commit d9c1dd67d4

View File

@@ -23,7 +23,8 @@ class slideshow_menu_Core {
->append(Menu::factory("link")
->id("slideshow")
->label(t("View slideshow"))
->url("javascript:PicLensLite.start()")
->url("javascript:PicLensLite.start(" .
"{maxScale:0,feedUrl:PicLensLite.indexFeeds()[0].url})")
->css_id("gSlideshowLink"));
}
@@ -32,7 +33,8 @@ class slideshow_menu_Core {
->append(Menu::factory("link")
->id("slideshow")
->label(t("View slideshow"))
->url("javascript:PicLensLite.start()")
->url("javascript:PicLensLite.start(" .
"{maxScale:0,feedUrl:PicLensLite.indexFeeds()[0].url})")
->css_id("gSlideshowLink"));
}
}