diff options
author | Klaus Weidenbach <Klaus.Weidenbach@gmx.net> | 2015-03-15 22:18:59 +0100 |
---|---|---|
committer | Klaus Weidenbach <Klaus.Weidenbach@gmx.net> | 2015-03-15 23:56:32 +0100 |
commit | 792e475a78ffb1f1facd615b00511c9107d0ac5a (patch) | |
tree | 9a42d3038e50ee5445c501457b7f5b8af42f6591 /view/js/ratings.js | |
parent | fdcbb61bcb61a980a7a9171432498a9cac6e0965 (diff) | |
download | volse-hubzilla-792e475a78ffb1f1facd615b00511c9107d0ac5a.tar.gz volse-hubzilla-792e475a78ffb1f1facd615b00511c9107d0ac5a.tar.bz2 volse-hubzilla-792e475a78ffb1f1facd615b00511c9107d0ac5a.zip |
Some JavaScript cleanups.
Adding some missing and remove some unnecessary semicolons.
Change some comparing operators.
Changed access to objects with dot operator.
Diffstat (limited to 'view/js/ratings.js')
-rw-r--r-- | view/js/ratings.js | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/view/js/ratings.js b/view/js/ratings.js index 3d48ecca5..5ce4c0d00 100644 --- a/view/js/ratings.js +++ b/view/js/ratings.js @@ -4,7 +4,7 @@ var ratingText = ''; var currentHash = ''; function fetchRatings(hash) { - $.get('prate/'+hash, function(data) { + $.get('prate/' + hash, function(data) { if(typeof(data.rating) !== 'undefined') { ratingVal = data.rating; ratingText = data.rating_text; @@ -13,22 +13,20 @@ function fetchRatings(hash) { }); } - function doRatings(hash) { fetchRatings(hash); } function buildRatingForm(hash) { - var html = '<form id="ratings_form" action="prate" method="post"><input type="hidden" name="target" value="'+hash+'" /><div class="rating-desc">'+aStr['rating_desc']+'</div><input id="dir-rating-range" class="directory-slider" type="text" value="'+ratingVal+'" name="rating" style="display: none;" /><div class="rating-text-label">'+aStr['rating_text']+'<input type="text" name="rating_text" class="directory-rating-text" value="'+ratingText+'" /><br /><input name="submit" class="directory-rating-submit" type="submit" value="'+aStr['submit']+'" onclick="postRatings(); return false;"></form><div class="clear"></div><script>$("#dir-rating-range").jRange({ from: -10, to: 10, step: 1, showLabels: false, showScale: true, scale : [ "-10","-5","0","5","10" ], onstatechange: function(v) { $("#dir-rating-range").val(v); } });</script>'; + var html = '<form id="ratings_form" action="prate" method="post"><input type="hidden" name="target" value="' + hash + '" /><div class="rating-desc">' + aStr.rating_desc + '</div><input id="dir-rating-range" class="directory-slider" type="text" value="' + ratingVal + '" name="rating" style="display: none;" /><div class="rating-text-label">' + aStr.rating_text + '<input type="text" name="rating_text" class="directory-rating-text" value="' + ratingText + '" /><br><input name="submit" class="directory-rating-submit" type="submit" value="' + aStr.submit + '" onclick="postRatings(); return false;"></form><div class="clear"></div><script>$("#dir-rating-range").jRange({ from: -10, to: 10, step: 1, showLabels: false, showScale: true, scale: [ "-10","-5","0","5","10" ], onstatechange: function(v) { $("#dir-rating-range").val(v); } });</script>'; $.colorbox({maxwidth: "50%", maxHeight: "50%", html: html, close: 'X' }); currentHash = hash; } function postRatings() { - $.post('prate',$('#ratings_form').serialize(),function(data) { + $.post('prate', $('#ratings_form').serialize(), function(data) { $.colorbox.remove(); - $('#edited-'+currentHash).show(); - },'json'); -} - + $('#edited-' + currentHash).show(); + }, 'json'); +}
\ No newline at end of file |