Revision: 2884
Author: brettz9
Date: Fri Jun 13 08:25:38 2014 UTC
Log: Comment on line of code appearing unnecessary
http://code.google.com/p/svg-edit/source/detail?r=2884
Modified:
/trunk/editor/extensions/ext-server_moinsave.js
=======================================
--- /trunk/editor/extensions/ext-server_moinsave.js Thu May 22 10:21:29
2014 UTC
+++ /trunk/editor/extensions/ext-server_moinsave.js Fri Jun 13 08:25:38
2014 UTC
@@ -36,7 +36,7 @@
canvg(c, svg, {renderCallback: function() {
var datauri = c.toDataURL('image/png');
// var uiStrings = svgEditor.uiStrings;
- var png_data = Utils.encode64(datauri);
+ var png_data = Utils.encode64(datauri); // Brett: This encoding
seems unnecessary
var form = $('<form>').attr({
method: 'post',
action: save_svg_action + '/' + name,