5 lines
137 B
JavaScript
5 lines
137 B
JavaScript
|
|
$( document ).ready(function() {
|
||
|
|
$(".disabled-rate .star").each(function(){
|
||
|
|
$(this).raty('readOnly', true);
|
||
|
|
});
|
||
|
|
});
|