viewpdf.html.php 465 B

123456789101112131415
  1. <style>
  2. body{padding-bottom:0px;}
  3. </style>
  4. <iframe src='<?php echo $this->createLink('traincourse', 'viewPDF', "chapterID={$chapter->id}");?>' border='0' scrolling="no" allowfullscreen style='width:100%;display:block;top:0;z-index:60;' id='pdf' name='pdf' height='800'></iframe>
  5. <script>
  6. $(function()
  7. {
  8. function fullscreen()
  9. {
  10. return document.getElementById('pdf').requestFullscreen();
  11. }
  12. $('#pdfFullscreen').click(fullscreen);
  13. })
  14. </script>