speedtag/chrome/content/speedtag.js
2011-05-24 02:05:35 +05:30

12 lines
270 B
JavaScript

$(function() {
var savePath = '';
$('#saveLocationBtn').click(function() {
savePath = selectFile();
});
$('#selectAudioFile').click(function() {
fil = selectFile();
data = mozillaLoadFile(fil);
mozillaSaveFile("/tmp/blah.mp3", data);
});
});