Delete console output.
This commit is contained in:
parent
296242f8d3
commit
13e7550afe
2 changed files with 1 additions and 3 deletions
|
@ -109,8 +109,7 @@
|
||||||
|
|
||||||
window.addEventListener( 'message', function( event ) {
|
window.addEventListener( 'message', function( event ) {
|
||||||
var data = JSON.parse( event.data );
|
var data = JSON.parse( event.data );
|
||||||
console.log(data);
|
// No need for updating the notes in case of fragment changes
|
||||||
// No need for updating the notes in case of fragement changes
|
|
||||||
if ( data.notes !== undefined) {
|
if ( data.notes !== undefined) {
|
||||||
if( data.markdown ) {
|
if( data.markdown ) {
|
||||||
notes.innerHTML = (new Showdown.converter()).makeHtml( data.notes );
|
notes.innerHTML = (new Showdown.converter()).makeHtml( data.notes );
|
||||||
|
|
|
@ -29,7 +29,6 @@ var RevealNotes = (function() {
|
||||||
* set in the events above to define the needed slideDate.
|
* set in the events above to define the needed slideDate.
|
||||||
*/
|
*/
|
||||||
function post(eventType) {
|
function post(eventType) {
|
||||||
console.log(eventType);
|
|
||||||
var slideElement = Reveal.getCurrentSlide(),
|
var slideElement = Reveal.getCurrentSlide(),
|
||||||
indexh = Reveal.getIndices().h,
|
indexh = Reveal.getIndices().h,
|
||||||
indexv = Reveal.getIndices().v,
|
indexv = Reveal.getIndices().v,
|
||||||
|
|
Loading…
Reference in a new issue