diff options
author | Renato Botelho <renato@netgate.com> | 2015-08-25 08:08:24 -0300 |
---|---|---|
committer | Renato Botelho <renato@netgate.com> | 2015-08-25 14:49:54 -0300 |
commit | 46bc6e545a17e77202aaf01ec0cd8d5a46567525 (patch) | |
tree | 32d18dda436ec739c67c489ceb771e8629cd926f /usr/local/www/filebrowser/browser.js | |
parent | 4d9801c2dbd2b3e54a39578ee62b93af66607227 (diff) | |
download | pfsense-46bc6e545a17e77202aaf01ec0cd8d5a46567525.zip pfsense-46bc6e545a17e77202aaf01ec0cd8d5a46567525.tar.gz |
Move main pfSense content to src/
Diffstat (limited to 'usr/local/www/filebrowser/browser.js')
-rw-r--r-- | usr/local/www/filebrowser/browser.js | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/usr/local/www/filebrowser/browser.js b/usr/local/www/filebrowser/browser.js deleted file mode 100644 index 2769db3..0000000 --- a/usr/local/www/filebrowser/browser.js +++ /dev/null @@ -1,48 +0,0 @@ -/* - pfSense_MODULE: shell -*/ - -jQuery(document).ready( - function() { - jQuery("#fbOpen").click( - function() { - jQuery("#fbBrowser").fadeIn(750); - fbBrowse(jQuery("#fbTarget").val()); - } - ); - } -); - -function fbBrowse(path) { - jQuery("#fileContent").fadeOut(); - - if (jQuery("#fbCurrentDir")) { - jQuery("#fbCurrentDir").html("Loading ..."); - } - - jQuery.ajax( - "/filebrowser/browser.php?path=" + encodeURI(path ? path : "/"), - { type: "get", complete: fbComplete } - ); - -} - -function fbComplete(req) { - jQuery("#fbBrowser").html(req.responseText); - - var actions = { - fbHome: function() { fbBrowse("/"); }, - fbClose: function() { jQuery("#fbBrowser").fadeOut(750); }, - fbDir: function() { fbBrowse(this.id); }, - fbFile: function() { jQuery("#fbTarget").val(this.id); } - } - - for (var type in actions) { - jQuery("#fbBrowser ." + type).each( - function() { - jQuery(this).click(actions[type]); - jQuery(this).css("cursor","pointer"); - } - ); - } -} |