Merge pull request #3 from farukuzun/master

Fix "Download as ..." for wrong filenames
This commit is contained in:
Andras Timar 2016-01-12 15:02:14 +01:00
commit 4eabeecc51

View File

@ -194,6 +194,16 @@ var documentsMain = {
iframe.find('#tb_toolbar-up_item_close').click(function() {
documentsMain.onClose();
});
var frameWindow = $('#loleafletframe')[0].contentWindow;
(function() {
cloudSuiteOnClick = frameWindow.onClick;
frameWindow.onClick = function() {
fileName = encodeURIComponent(title.substr(0, title.lastIndexOf('.')) || title);
frameWindow.map.options.doc = fileName;
cloudSuiteOnClick.apply(this, arguments);
frameWindow.map.options.doc = documentsMain.url;
};
})();
});
},