Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PDF slides are not all exported #46

Closed
cmoulliard opened this issue Mar 20, 2014 · 1 comment
Closed

PDF slides are not all exported #46

cmoulliard opened this issue Mar 20, 2014 · 1 comment
Assignees
Labels
Milestone

Comments

@cmoulliard
Copy link
Collaborator

This issue is due that we don't pass the revealjs folder in this script

<!-- If the query includes 'print-pdf', include the PDF print sheet -->
<script>
    if( window.location.search.match( /print-pdf/gi ) ) {
        var link = document.createElement( 'link' );
        link.rel = 'stylesheet';
        link.type = 'text/css';
        link.href = 'css/print/pdf.css';
        document.getElementsByTagName( 'head' )[0].appendChild( link );
    }
</script>

Should be

<!-- If the query includes 'print-pdf', include the PDF print sheet -->
<script>
    if( window.location.search.match( /print-pdf/gi ) ) {
        var link = document.createElement( 'link' );
        link.rel = 'stylesheet';
        link.type = 'text/css';
        link.href = 'revealjs/css/print/pdf.css';
        document.getElementsByTagName( 'head' )[0].appendChild( link );
    }
</script>
@cmoulliard cmoulliard added this to the 1.0.5 milestone Mar 20, 2014
@cmoulliard cmoulliard added the bug label Mar 20, 2014
@cmoulliard cmoulliard self-assigned this Mar 20, 2014
@cmoulliard
Copy link
Collaborator Author

Modification done for revealjs slim backend

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant