New example project.

Generate jasmine-standalone-x.x.x.zip.
This commit is contained in:
Lee Byrd & Christian Williams
2010-06-24 17:15:06 -07:00
parent 22065fafad
commit 1057596665
9 changed files with 174 additions and 45 deletions

7
example/src/Song.js Normal file
View File

@@ -0,0 +1,7 @@
function Song() {
}
Song.prototype.persistFavoriteStatus = function(value) {
// something complicated
throw new Error("not yet implemented");
};