Commit 1c69f917 authored by Romain Courteaud's avatar Romain Courteaud

Missing filebrowser js

parent 84aa663f
/*global document, jQuery */
"use strict";
(function (document, $) {
$(document).ready(function () {
$.ajax({
method: 'GET',
// XXX Hardcoded
url: "browser://browser/ls/",
context: $('body'),
error: function (jqXHR, textStatus, errorThrown) {
$(this).text(errorThrown);
},
success: function (value, textStatus, jqXHR) {
$(this).text(value);
},
});
});
}(document, jQuery));
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment