How to make PDF undownloadable using pdf.js

前端 未结 7 1375
长发绾君心
长发绾君心 2021-02-04 12:50

I found the pdf.js project, which is very useful. However, I am unable to figure out how to remove the \"Download\" option.

7条回答
  •  自闭症患者
    2021-02-04 13:27

    just add this in viewer.css

    .download
    {
        display:none !important;    
    }
    
    .print
    {
        display:none !important;
    }
    

提交回复
热议问题