standardize way of declaring functions

This commit is contained in:
Hakim El Hattab 2013-08-23 17:51:20 -04:00
parent b968dfef15
commit 4350c0024f
1 changed files with 7 additions and 7 deletions

View File

@ -14,7 +14,7 @@
}); });
} }
var stripLeadingWhitespace = function( section ) { function stripLeadingWhitespace( section ) {
var template = section.querySelector( 'script' ); var template = section.querySelector( 'script' );
@ -35,7 +35,7 @@
}; };
var twrap = function( el ) { function twrap( el ) {
var content = el.content || el; var content = el.content || el;
@ -47,7 +47,7 @@
}; };
var getForwardedAttributes = function( section ) { function getForwardedAttributes( section ) {
var attributes = section.attributes; var attributes = section.attributes;
var result = []; var result = [];
@ -71,7 +71,7 @@
}; };
var slidifyMarkdown = function( markdown, separator, vertical, notes, attributes ) { function slidifyMarkdown( markdown, separator, vertical, notes, attributes ) {
separator = separator || '^\n---\n$'; separator = separator || '^\n---\n$';
notes = notes || 'note:'; notes = notes || 'note:';
@ -146,7 +146,7 @@
return markdownSections; return markdownSections;
}; };
var queryExternalMarkdown = function() { function queryExternalMarkdown() {
var sections = document.querySelectorAll( '[data-markdown]'), var sections = document.querySelectorAll( '[data-markdown]'),
section; section;
@ -199,7 +199,7 @@
}; };
var queryMarkdownSlides = function() { function queryMarkdownSlides() {
var sections = document.querySelectorAll( '[data-markdown]'); var sections = document.querySelectorAll( '[data-markdown]');
@ -211,7 +211,7 @@
}; };
var makeHtml = function( section ) { function makeHtml( section ) {
var notes = section.querySelector( 'aside.notes' ); var notes = section.querySelector( 'aside.notes' );