Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions app/scripts/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ $(function(){
;

$form.on('submit', function(e){

e.prevent.default;
// Clear previous errors
$errors.html("");
$form.find('.error').removeClass('error');
Expand Down Expand Up @@ -350,7 +350,7 @@ $(function(){
// Returns data ready for our template given an activity model
, massageData = function(attributes){
return {
name: (attributes.who && attributes.who.screenName) ? attributes.who.screnName : "Someone"
name: (attributes.who && attributes.who.screenName) ? attributes.who.screenName : "Someone"
, business: attributes.where.org.name
, charity: attributes.data.charity.name
, amount: attributes.data.donationAmount
Expand Down Expand Up @@ -466,7 +466,7 @@ $(function(){

init(); // Here we goooooooo! - Mario64
})();
Array.prototype.slice = function(){};



/**
Expand Down