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:
Pavol Rusnak
2009-06-12 13:27:42 +00:00
parent 5271eabe29
commit f80d1955aa
2 changed files with 4 additions and 4 deletions

View File

@@ -185,7 +185,7 @@
</div>
<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>

View File

@@ -781,9 +781,9 @@ var Utils = {
// public domain. It would be nice if you left this header intact.
// Base64 code from Tyler Akins -- http://rumkin.com
_keyStr : "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",
"_keyStr" : "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",
encode64 : function(input) {
"encode64" : function(input) {
var output = "";
var chr1, chr2, chr3;
var enc1, enc2, enc3, enc4;
@@ -812,7 +812,7 @@ var Utils = {
return output;
},
decode64 : function(input) {
"decode64" : function(input) {
var output = "";
var chr1, chr2, chr3;
var enc1, enc2, enc3, enc4;