/* globals jQuery, svgEditor, svgedit, svgCanvas, canvg */
/*
* ext-server_moinsave.js
*
* Licensed under the MIT License
*
* Copyright(c) 2010 Alexis Deveria
* 2011 MoinMoin:ReimarBauer
* adopted for moinmoins item storage. it sends in one post png and svg data
* (I agree to dual license my work to additional GPLv2 or later)
*
*/
svgEditor.addExtension('server_opensave', {
callback () {
const $ = jQuery;
const Utils = svgedit.utilities;
const saveSvgAction = '/+modify';
// Create upload target (hidden iframe)
/* const target = */ $('').hide().appendTo('body');
svgEditor.setCustomHandlers({
save (win, data) {
const svg = '\n' + data;
const qstr = $.param.querystring();
const name = qstr.substr(9).split('/+get/')[1];
const svgData = Utils.encode64(svg);
if (!$('#export_canvas').length) {
$('