merge in notes improvement

This commit is contained in:
hakimel 2013-02-06 19:15:30 -05:00
parent fd7d09f697
commit 380264afc8
2 changed files with 17 additions and 17 deletions

View File

@ -29,16 +29,16 @@
border: none; border: none;
-webkit-transform-origin: 0 0; -webkit-transform-origin: 0 0;
-moz-transform-origin: 0 0; -moz-transform-origin: 0 0;
-ms-transform-origin: 0 0; -ms-transform-origin: 0 0;
-o-transform-origin: 0 0; -o-transform-origin: 0 0;
transform-origin: 0 0; transform-origin: 0 0;
-webkit-transform: scale(0.5); -webkit-transform: scale(0.5);
-moz-transform: scale(0.5); -moz-transform: scale(0.5);
-ms-transform: scale(0.5); -ms-transform: scale(0.5);
-o-transform: scale(0.5); -o-transform: scale(0.5);
transform: scale(0.5); transform: scale(0.5);
} }
#wrap-next-slide { #wrap-next-slide {
@ -55,16 +55,16 @@
border: none; border: none;
-webkit-transform-origin: 0 0; -webkit-transform-origin: 0 0;
-moz-transform-origin: 0 0; -moz-transform-origin: 0 0;
-ms-transform-origin: 0 0; -ms-transform-origin: 0 0;
-o-transform-origin: 0 0; -o-transform-origin: 0 0;
transform-origin: 0 0; transform-origin: 0 0;
-webkit-transform: scale(0.35); -webkit-transform: scale(0.35);
-moz-transform: scale(0.35); -moz-transform: scale(0.35);
-ms-transform: scale(0.35); -ms-transform: scale(0.35);
-o-transform: scale(0.35); -o-transform: scale(0.35);
transform: scale(0.35); transform: scale(0.35);
} }
.slides { .slides {

View File

@ -5,7 +5,7 @@
var RevealNotes = (function() { var RevealNotes = (function() {
function openNotes() { function openNotes() {
var jsFileLocation = document.querySelector('script[src*=notes]').src; // this js file path var jsFileLocation = document.querySelector('script[src$="notes.js"]').src; // this js file path
jsFileLocation = jsFileLocation.replace(/notes\.js(\?.*)?$/, ''); // the js folder path jsFileLocation = jsFileLocation.replace(/notes\.js(\?.*)?$/, ''); // the js folder path
var notesPopup = window.open( jsFileLocation + 'notes.html', 'reveal.js - Notes', 'width=1120,height=850' ); var notesPopup = window.open( jsFileLocation + 'notes.html', 'reveal.js - Notes', 'width=1120,height=850' );