aboutsummaryrefslogtreecommitdiffstats
path: root/view
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2015-02-03 16:52:09 -0800
committerfriendica <info@friendica.com>2015-02-03 16:52:09 -0800
commit5cb2f55dbbe715219dd18c60345e341ed478a753 (patch)
tree615ec85b00bd3c417eff2c9b772d2b21c0051a8f /view
parentde79bb89fc0f6d0a55b1734e4deeb0dd5eed2fb9 (diff)
downloadvolse-hubzilla-5cb2f55dbbe715219dd18c60345e341ed478a753.tar.gz
volse-hubzilla-5cb2f55dbbe715219dd18c60345e341ed478a753.tar.bz2
volse-hubzilla-5cb2f55dbbe715219dd18c60345e341ed478a753.zip
rating form work
Diffstat (limited to 'view')
-rw-r--r--view/css/mod_directory.css7
-rw-r--r--view/js/mod_directory.js9
-rwxr-xr-xview/tpl/direntry.tpl2
3 files changed, 17 insertions, 1 deletions
diff --git a/view/css/mod_directory.css b/view/css/mod_directory.css
index 1e140d933..e93f23ec6 100644
--- a/view/css/mod_directory.css
+++ b/view/css/mod_directory.css
@@ -10,6 +10,13 @@
float: right;
margin-right: 5px;
}
+.directory-slider {
+ padding: 15px;
+ width: 100px;
+}
+.directory-rating-text {
+ margin-top: 30px;
+}
.directory-photo {
margin-left: 25px;
diff --git a/view/js/mod_directory.js b/view/js/mod_directory.js
index 74c8b414d..60bfe98ba 100644
--- a/view/js/mod_directory.js
+++ b/view/js/mod_directory.js
@@ -3,9 +3,18 @@ function dirdetails(hash) {
$.get('dirprofile' + '?f=&hash=' + hash, function( data ) {
$.colorbox({ maxWidth: "50%", maxHeight: "75%", html: data });
});
+}
+
+
+function doRatings(hash) {
+
+ var html = '<form action="prate" method="post"><input type="hidden" name="target" value="'+hash+'" /><input id="dir-rating-range" class="directory-slider" type="text" value="0" name="rating" style="display: none;" /><input type="text" name="rating-text" class="directory-rating-text" /><input name="submit" type="submit" value="submit" ></form><div class="clear"></div><script>$("#dir-rating-range").jRange({ from: -10, to: 10, step: 1, width:"100%", 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 });
}
+
$(document).ready(function() {
collapseHeight();
}); \ No newline at end of file
diff --git a/view/tpl/direntry.tpl b/view/tpl/direntry.tpl
index 1761ed12d..461c5dcde 100755
--- a/view/tpl/direntry.tpl
+++ b/view/tpl/direntry.tpl
@@ -17,7 +17,7 @@
{{*if $entry.rateme*}}
<div id="dir-rating-wrapper-{{$entry.id}}" class="directory-rating" >{{if $entry.total_ratings}}<a href="ratings/{{$entry.hash}}"><button class="btn btn-default">{{$entry.total_ratings}}</button></a>{{/if}}
-<button class="btn btn-default"><i class="icon-pencil"></i></button>
+<button class="btn btn-default" onclick="doRatings('{{$entry.hash}}'); return false;" ><i class="icon-pencil"></i></button>
</div>
{{*/if*}}
{{if $entry.public_forum}}