Hi narendrababu,
Please open file "\CuteSoft_Client\Gallery\Editor\Explorer\Code.js"
Find section below
- div.ondblclick=ToDelegate(scope,function()
- {
- browser.ShowViewer(photo);
- });
Change it to the code below, then double click on the image will hide the admin dialog. Also, you can get the image path by photo.Url.
- div.ondblclick = function ()
- {
-
-
- closebtn.click();
- }
Regards,
Ken