Move Browser & Upload to own namespace

This commit is contained in:
Philipp 2022-11-27 01:25:59 +01:00
parent 051253a745
commit 50316bbb80
No known key found for this signature in database
GPG key ID: 24A7501396EB5432
20 changed files with 77 additions and 121 deletions

View file

@ -166,7 +166,7 @@ $(function() {
/* event from comment textarea button popups */
/* insert returned bbcode at cursor position or replace selected text */
$('body').on('fbrowser.photos.comment', function(e, filename, bbcode, id) {
$('body').on('fbrowser.photo.comment', function(e, filename, bbcode, id) {
$.colorbox.close();
var textarea = document.getElementById("comment-edit-text-" +id);
var start = textarea.selectionStart;
@ -1069,7 +1069,7 @@ var Dialog = {
* to the event handler
*/
doImageBrowser : function (name, id) {
var url = Dialog._get_url('photos', name, id);
var url = Dialog._get_url('photo', name, id);
return Dialog.show(url);
},