quote member names in Utils class
git-svn-id: http://svg-edit.googlecode.com/svn/trunk@125 eee81c28-f429-11dd-99c0-75d572ba1ddd
This commit is contained in:
@@ -185,7 +185,7 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="footer" class="tools_panel">
|
<div id="footer" class="tools_panel">
|
||||||
SVG-edit v2.1b svg-@ <a href="http://svg-edit.googlecode.com/">http://svg-edit.googlecode.com/</a>
|
SVG-edit v2.1b @ <a href="http://svg-edit.googlecode.com/">http://svg-edit.googlecode.com/</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -781,9 +781,9 @@ var Utils = {
|
|||||||
// public domain. It would be nice if you left this header intact.
|
// public domain. It would be nice if you left this header intact.
|
||||||
// Base64 code from Tyler Akins -- http://rumkin.com
|
// Base64 code from Tyler Akins -- http://rumkin.com
|
||||||
|
|
||||||
_keyStr : "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",
|
"_keyStr" : "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",
|
||||||
|
|
||||||
encode64 : function(input) {
|
"encode64" : function(input) {
|
||||||
var output = "";
|
var output = "";
|
||||||
var chr1, chr2, chr3;
|
var chr1, chr2, chr3;
|
||||||
var enc1, enc2, enc3, enc4;
|
var enc1, enc2, enc3, enc4;
|
||||||
@@ -812,7 +812,7 @@ var Utils = {
|
|||||||
return output;
|
return output;
|
||||||
},
|
},
|
||||||
|
|
||||||
decode64 : function(input) {
|
"decode64" : function(input) {
|
||||||
var output = "";
|
var output = "";
|
||||||
var chr1, chr2, chr3;
|
var chr1, chr2, chr3;
|
||||||
var enc1, enc2, enc3, enc4;
|
var enc1, enc2, enc3, enc4;
|
||||||
|
|||||||
Reference in New Issue
Block a user