X-Git-Url: https://git.nubati.net/cgi-bin/gitweb.cgi?p=phpfspot.git;a=blobdiff_plain;f=phpfspot.js;h=ebe124225f169a182530acda770bdccc46c22f72;hp=8db1f651b132cbf964f6fe4ef06280a5f31c2d2e;hb=dcc26041d1dd86d47516e143fd5e475e588180cf;hpb=6c98040d5b5f29f3952b8222d5cf256007347e5d diff --git a/phpfspot.js b/phpfspot.js index 8db1f65..ebe1242 100644 --- a/phpfspot.js +++ b/phpfspot.js @@ -337,8 +337,13 @@ function datesearch() * called for photo-index export. will return the * selected mode via AJAX from the server. */ -function setViewMode(mode) +function setViewMode(srv_webpath, mode) { + if(srv_webpath != undefined) + web_path = srv_webpath; + else + web_path = ''; + var exprt = document.getElementById('output'); exprt.innerHTML = "Loading..."; exprt.innerHTML = HTML_AJAX.grab(encodeURI(web_path + '/rpc.php?action=get_export&mode=' + mode)); @@ -678,8 +683,13 @@ function noop() {} /** * start slideshow */ -function startSlideShow() +function startSlideShow(srv_webpath) { + if(srv_webpath != undefined) + web_path = srv_webpath; + else + web_path = ''; + if(!sliding) { HTML_AJAX.grab(encodeURI(web_path + '/rpc.php?action=reset_slideshow')); nextSlide();