Skip to content

Commit

Permalink
Correcting issue causing a failure to save textareas.
Browse files Browse the repository at this point in the history
  • Loading branch information
Luke Wilde committed Mar 20, 2012
1 parent fa49ce3 commit 047baa7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/jquery.formsaver.js
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@
return true;
}
var field = $( this );
var prefix = self.href + targetFormId + field.attr( "name" ) + self.options.customKeyPrefix;
var prefix = field.attr( "name" ) + self.options.customKeyPrefix;
var resque = self.browserStorage.get( prefix );
if ( resque ) {
self.restoreFieldsData( field, resque );
Expand Down

0 comments on commit 047baa7

Please sign in to comment.