• Welcome to the Chevereto User Community!

    Here, users from all over the world come together to learn, share, and collaborate on everything related to Chevereto. It's a place to exchange ideas, ask questions, and help improve the software.

    Please keep in mind:

    • This community is user-driven. Always be polite and respectful to others.
    • Support development by purchasing a Chevereto license, which also gives you priority support.
    • Go further by joining the Community Subscription for even faster response times and to help sustain this space

How to make images 'saveable'?

Guneyd

Chevereto Member
Right now, you can't click on the images with the right-click on your mouse and do 'save as..' . How can I enable users to save the images that they view in such a way?
 
Most of the users complained about that right-click thing so it was disabled. To download an image there is a separate download button.
 
Most of the users complained about that right-click thing so it was disabled. To download an image there is a separate download button.
Thank you for the clarification Rodolfo. I know about the download button, but it is still unconventional for there to be no 'right save' click. Can I restore it using HTML/CSS? And if so, do you happen to know what file(s) I need to edit?
I'm sorry for asking so many questions.
 
It should be somewhere in chevereto.js
Rodolfo, I've tried looking for it but I've been unable to find it. I've also looked in Peafowl.js and still no luck.
Could you please point me in the right direction, what should I be looking for (variable name or something)?

Thank you.
 
app/lib/chevereto.js

Change this:
Code:
.on("contextmenu", CHV.obj.image_viewer.container, function(e) {
        e.preventDefault();
        return false;
    })

To this:
Code:
.on("contextmenu", CHV.obj.image_viewer.container, function(e) {
        /*e.preventDefault();
        return false;*/
    })
 
Last edited:
Back
Top