Skip to content

Commit

Permalink
Update v1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
markserbol committed Apr 14, 2014
1 parent 1d35a28 commit 67556f0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions jquery.flip-quote.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* jquery.flip-quote.js v1.0.0, jQuery Flip-Quote
* jquery.flip-quote.js v1.0.1, jQuery Flip-Quote
*
* Copyright 2014 Mark Serbol.
* Use, reproduction, distribution, and modification of this code is subject to the terms and
Expand Down Expand Up @@ -43,8 +43,8 @@

container.addClass('fQ_container').css({'font-size': opts.fontSize});

frontFace = $('<div/>', {class: 'fQ_front', html:'<q>'+ text +'</q>'});
backFace = $('<div/>', {class: 'fQ_back'});
frontFace = $('<div/>', {'class': 'fQ_front', html:'<q>'+ text +'</q>'});
backFace = $('<div/>', {'class': 'fQ_back'});

frontFace.add(backFace).appendTo(container)
.css({
Expand Down Expand Up @@ -135,4 +135,4 @@
});
}

})(jQuery);
})(jQuery);

0 comments on commit 67556f0

Please sign in to comment.