Skip to content

Commit

Permalink
Added VERSION property.
Browse files Browse the repository at this point in the history
  • Loading branch information
czottmann committed Aug 24, 2010
1 parent 7bac222 commit 6656fa4
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions jquery.base64.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@
jQuery.base64 = ( function( $ ) {

var _PADCHAR = "=",
_ALPHA = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
_ALPHA = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",
_VERSION = "1.0";


function _getbyte64( s, i ) {
Expand Down Expand Up @@ -181,7 +182,8 @@ jQuery.base64 = ( function( $ ) {

return {
decode: _decode,
encode: _encode
encode: _encode,
VERSION: _VERSION
};

}( jQuery ) );
Expand Down

0 comments on commit 6656fa4

Please sign in to comment.