introduce disabled-rate class to disable rating

This commit is contained in:
Shlok Srivastava 2017-04-28 12:41:00 +00:00
parent e3174fa277
commit e32ff99f2f
4 changed files with 9 additions and 2 deletions

View file

@ -0,0 +1,5 @@
$( document ).ready(function() {
$(".disabled-rate .star").each(function(){
$(this).raty('readOnly', true);
});
});