|
@@ -162,11 +162,16 @@ function ui_save_file() {
|
162
|
162
|
|
163
|
163
|
var a = $("#file-save-link")[0];
|
164
|
164
|
a.href = url;
|
165
|
|
- a.download = "rpg_cards.json";
|
|
165
|
+ a.download = prompt("Filename: (blank for default)", ui_save_file.filename)
|
|
166
|
+ if(!a.download || a.download == 'null') {
|
|
167
|
+ return
|
|
168
|
+ }
|
|
169
|
+ ui_save_file.filename = a.download
|
166
|
170
|
a.click();
|
167
|
171
|
|
168
|
172
|
setTimeout(function () { URL.revokeObjectURL(url); }, 500);
|
169
|
173
|
}
|
|
174
|
+ui_save_file.filename = 'rpg_cards.json'
|
170
|
175
|
|
171
|
176
|
function ui_update_selected_card() {
|
172
|
177
|
var card = ui_selected_card();
|