]> git.mxchange.org Git - friendica.git/commitdiff
Frio: make jslint more happy
authorfabrixxm <fabrix.xm@gmail.com>
Sat, 11 Jun 2016 07:40:50 +0000 (09:40 +0200)
committerfabrixxm <fabrix.xm@gmail.com>
Sat, 11 Jun 2016 07:40:50 +0000 (09:40 +0200)
view/theme/frio/js/modal.js

index f1efbd752e56fbcaba340731d672e58c1d90dcac..973847509e7371416909a436fb99ab76dbe5d566 100644 (file)
@@ -19,7 +19,7 @@ $(document).ready(function(){
                // restore cached jot at its hidden position ("#jot-content")
                $("#jot-content").append(jotcache);
                // clear the jotcache
-               jotcache = ''
+               jotcache = '';
        });
 
        // Add Colorbox for viewing Network page images
@@ -60,7 +60,7 @@ $(document).ready(function(){
 
        // Open filebrowser for elements with the class "image-select"
        // The following part handles the filebrowser for field_fileinput.tpl
-       $("body").on("click", ".image-select", function(e){
+       $("body").on("click", ".image-select", function(){
                // set a extra attribute to mark the clicked button
                this.setAttribute("image-input", "select");
                Dialog.doImageBrowser("input");
@@ -69,7 +69,7 @@ $(document).ready(function(){
        // Insert filebrowser images into the input field (field_fileinput.tpl)
        $("body").on("fbrowser.image.input", function(e, filename, embedcode, id, img) {
                // select the clicked button by it's attribute
-               var elm = $("[image-input='select']")
+               var elm = $("[image-input='select']");
                // select the input field which belongs to this button
                var input = elm.parent(".input-group").children("input");
                // remove the special indicator attribut from the button
@@ -134,7 +134,7 @@ Dialog._load = function(url) {
        // initialize the filebrowser
        var jsbrowser = function() {
                FileBrowser.init(nickname, type, hash);
-       }
+       };
        loadScript("view/theme/frio/js/filebrowser.js", jsbrowser);
 };
 
@@ -166,7 +166,7 @@ function loadModalTitle() {
 function addToModal(url) {
        var char = qOrAmp(url);
 
-       var url = url + char + 'mode=none';
+       url = url + char + 'mode=none';
        var modal = $('#modal').modal();
 
        modal
@@ -182,7 +182,7 @@ function addToModal(url) {
                                loadModalTitle();
                        }
                });
-};
+}
 
 // function to load the html from the edit post page into
 // the jot modal
@@ -201,7 +201,7 @@ function editpost(url) {
        }
 
        var modal = $('#jot-modal').modal();
-       var url = url + " #profile-jot-form";
+       url = url + " #profile-jot-form";
 
        //var rand_num = random_digits(12);
        $(".jot-nav #jot-perms-lnk").parent("li").hide();