mirror of https://github.com/status-im/codimd.git
Add Print icon to slide view
It redirects the user to the print view of the document. I claim that people should either be smart enough to use ctrl+P or ask someone who knows how to print a webpage. I don't want to babysit our users. Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
This commit is contained in:
parent
d87505d583
commit
04d16e4d6e
|
@ -266,4 +266,12 @@ Press `B` or `.` on your keyboard to pause the presentation. This is helpful whe
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
## Print your Slides
|
||||||
|
|
||||||
|
Down below you can find a print icon<i class="fa fa-fw fa-print"></i>.
|
||||||
|
|
||||||
|
After you click on it, use the print function of your browser (either CTRL+P or cmd+P) to print the slides as PDF.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
# The End
|
# The End
|
||||||
|
|
|
@ -14,6 +14,7 @@ window.lastchangetime = window.lastchangeui.time.attr('data-updatetime')
|
||||||
updateLastChange()
|
updateLastChange()
|
||||||
const url = window.location.pathname
|
const url = window.location.pathname
|
||||||
$('.ui-edit').attr('href', `${url}/edit`)
|
$('.ui-edit').attr('href', `${url}/edit`)
|
||||||
|
$('.ui-print').attr('href', `${url}?print-pdf`)
|
||||||
|
|
||||||
$(document).ready(() => {
|
$(document).ready(() => {
|
||||||
// tooltip
|
// tooltip
|
||||||
|
|
|
@ -69,7 +69,7 @@
|
||||||
<span class="text-uppercase ui-status-lastchange"></span>
|
<span class="text-uppercase ui-status-lastchange"></span>
|
||||||
<span class="ui-lastchange text-uppercase" data-createtime="<%- createtime %>" data-updatetime="<%- updatetime %>"></span>
|
<span class="ui-lastchange text-uppercase" data-createtime="<%- createtime %>" data-updatetime="<%- updatetime %>"></span>
|
||||||
</span>
|
</span>
|
||||||
<span class="pull-right"><%- viewcount %> views <a href="#" class="ui-edit" title="Edit this note"><i class="fa fa-fw fa-pencil"></i></a></span>
|
<span class="pull-right"><%- viewcount %> views <a href="#" class="ui-edit" title="Edit this note"><i class="fa fa-fw fa-pencil"></i></a><a class="ui-print" href="" title="Open print view"><i class="fa fa-fw fa-print"></i></a></span>
|
||||||
<br>
|
<br>
|
||||||
<% if(ownerprofile && owner !== lastchangeuser) { %>
|
<% if(ownerprofile && owner !== lastchangeuser) { %>
|
||||||
<span class="ui-owner">
|
<span class="ui-owner">
|
||||||
|
|
Loading…
Reference in New Issue