presentation-template



presentation-template

0 0


presentation-template

My template for new presentations. Currently it leverages reveal.js

On Github johnbender / presentation-template

Math Envy

and CoffeeScript's Foibles

John Bender

          
grade = (student) ->
  if student.excellentWork
    "A+"
  else if student.okayStuff
    if student.triedHard then "B" else "B-"
  else
    "C"

eldest = if 24 > 21 then "Liz" else "Ike"

square = (x) -> x * x

two = -> 2
          
        
          
// Current jQuery.fn.removeAttr
jQuery.fn.removeAttr = function( name ) {
    return this.each(function() {
        jQuery.removeAttr( this, name );
    });
};