Skip to content

Instantly share code, notes, and snippets.

@pavlakis
Created February 3, 2013 19:09
Show Gist options
  • Save pavlakis/4703212 to your computer and use it in GitHub Desktop.
Save pavlakis/4703212 to your computer and use it in GitHub Desktop.
define([], function () {
return function (name, content) {
this.name = name,
this.content = content,
this.getHtml = function() {
return "<div class='slide' id='#" + this.name + "'>" + content + "</div>";
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment