]> git.mxchange.org Git - friendica.git/commitdiff
Frio Bugfix: correct wrong use of default arg 'title' in modal.js
authorrabuzarus <trebor@central-unit>
Fri, 25 Nov 2016 18:13:40 +0000 (19:13 +0100)
committerrabuzarus <trebor@central-unit>
Fri, 25 Nov 2016 18:13:40 +0000 (19:13 +0100)
view/theme/frio/js/modal.js

index 82b1ebdb919db133baade1a63cf15efc32f9e09e..f7927e46ec9653481b301b4699c5ac00d2664efa 100644 (file)
@@ -90,7 +90,11 @@ $(document).ready(function(){
 });
 
 // overwrite Dialog.show from main js to load the filebrowser into a bs modal
-Dialog.show = function(url, title="") {
+Dialog.show = function(url, title) {
+       if (typeof(title)==='undefined') {
+               title = "";
+       }
+
        var modal = $('#modal').modal();
        modal.find("#modal-header h4").html(title);
        modal