Browse
For agents
About
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor
/
2.0.6
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor
v2.0.6
Switch version
2.0.13
2.0.12
2.0.11
2.0.10
2.0.9
trunk
2.0.2
2.0.3
2.0.4
2.0.5
2.0.6
2.0.7
2.0.8
Overview
Code
blockenberg
/
blocks
/
star-rating
/
frontend.js
frontend.js
in Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor 2.0.6, at blocks/star-rating/frontend.js
15 lines
392 B
Find file
t
No matching file
Up and down to move
Enter to open
Esc to close
Raw
Download
Zip
View raw
1
//
Star Rating — CSS-only block. No JS required on frontend.
2
(
function
(
)
{
3
'
use strict
'
;
4
//
Reserved for future interactivity (e.g. animated fill on scroll).
5
function
initStarRating
(
)
{
6
//
no-op
7
}
8
9
if
(
document
.
readyState
===
'
loading
'
)
{
10
document
.
addEventListener
(
'
DOMContentLoaded
'
,
initStarRating
)
;
11
}
else
{
12
initStarRating
(
)
;
13
}
14
}
)
(
)
;
15