PluginProbe
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor / 2.0.7
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor v2.0.7
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
blockenberg / blocks / word-cloud / frontend.js

frontend.js in Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor 2.0.7, at blocks/word-cloud/frontend.js

20 lines 562 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /* Word Cloud — frontend */
2 (function () {
3 'use strict';
4
5 /* CSS handles scale hover via [data-hover="scale"]:hover.
6 No JS needed unless we add click-to-filter in future.
7 This file intentionally minimal — kept for future extension. */
8
9 function init() {
10 /* Nothing to initialise: all effects are pure CSS.
11 Words with links are <a> tags; others are <span>. */
12 }
13
14 if (document.readyState === 'loading') {
15 document.addEventListener('DOMContentLoaded', init);
16 } else {
17 init();
18 }
19 }());
20