home *** CD-ROM | disk | FTP | other *** search
- window.addEventListener("load",filePickerDirtyPatch,false);
-
- function filePickerDirtyPatch() {
- if(window.title && window.title.indexOf("FlashGot")==0
- && typeof(window.gotoDirectory)=="function") {
- window.fpdp_gotoDirectory=window.gotoDirectory;
- window.gotoDirectory=function(d) {
- window.fpdp_gotoDirectory(d);
- if( filePickerMode == nsIFilePicker.modeGetFolder
- && textInput && (!textInput.value)
- && d && d.path
- ) {
- textInput.value="."+(d.path.indexOf("\\")>-1?"\\":"/");
- textInput.select();
- textInput.focus();
- }
- }
- }
- }
-