summaryrefslogtreecommitdiffstats
path: root/src/usr/local/www/filebrowser/browser.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/usr/local/www/filebrowser/browser.js')
-rw-r--r--src/usr/local/www/filebrowser/browser.js28
1 files changed, 14 insertions, 14 deletions
diff --git a/src/usr/local/www/filebrowser/browser.js b/src/usr/local/www/filebrowser/browser.js
index 54e07ee..6e75272 100644
--- a/src/usr/local/www/filebrowser/browser.js
+++ b/src/usr/local/www/filebrowser/browser.js
@@ -1,22 +1,22 @@
-jQuery(document).ready(
+$(document).ready(
function() {
- jQuery("#fbOpen").click(
+ $("#fbOpen").click(
function() {
- jQuery("#fbBrowser").fadeIn(750);
- fbBrowse(jQuery("#fbTarget").val());
+ $("#fbBrowser").fadeIn(750);
+ fbBrowse($("#fbTarget").val());
}
);
}
);
function fbBrowse(path) {
- jQuery("#fileContent").fadeOut();
+ $("#fileContent").fadeOut();
- if (jQuery("#fbCurrentDir")) {
- jQuery("#fbCurrentDir").html("Loading ...");
+ if ($("#fbCurrentDir")) {
+ $("#fbCurrentDir").html("Loading ...");
}
- jQuery.ajax(
+ $.ajax(
"/filebrowser/browser.php?path=" + encodeURI(path ? path : "/"),
{ type: "get", complete: fbComplete }
);
@@ -24,20 +24,20 @@ function fbBrowse(path) {
}
function fbComplete(req) {
- jQuery("#fbBrowser").html(req.responseText);
+ $("#fbBrowser").html(req.responseText);
var actions = {
fbHome: function() { fbBrowse("/"); },
- fbClose: function() { jQuery("#fbBrowser").fadeOut(750); },
+ fbClose: function() { $("#fbBrowser").fadeOut(750); },
fbDir: function() { fbBrowse(this.id); },
- fbFile: function() { jQuery("#fbTarget").val(this.id); }
+ fbFile: function() { $("#fbTarget").val(this.id); }
}
for (var type in actions) {
- jQuery("#fbBrowser ." + type).each(
+ $("#fbBrowser ." + type).each(
function() {
- jQuery(this).click(actions[type]);
- jQuery(this).css("cursor","pointer");
+ $(this).click(actions[type]);
+ $(this).css("cursor","pointer");
}
);
}
OpenPOWER on IntegriCloud