# blockenberg/2.0.7/blocks/word-cloud/frontend.js

Blockenberg — 600+ Advanced Gutenberg Blocks &amp; AI Agent for WordPress Block Editor, version 2.0.7. 20 lines.

- Page: https://pluginprobe.com/plugins/blockenberg/2.0.7/code/blocks/word-cloud/frontend.js
- Raw: https://pluginprobe.com/plugins/blockenberg/2.0.7/raw/blocks/word-cloud/frontend.js
- Modified: 2026-03-06T12:32:40+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/blockenberg/2.0.7/code/blocks/word-cloud/frontend.js#L10-L20`.

```javascript
/* Word Cloud — frontend */
(function () {
    'use strict';

    /* CSS handles scale hover via [data-hover="scale"]:hover.
       No JS needed unless we add click-to-filter in future.
       This file intentionally minimal — kept for future extension. */

    function init() {
        /* Nothing to initialise: all effects are pure CSS.
           Words with links are <a> tags; others are <span>. */
    }

    if (document.readyState === 'loading') {
        document.addEventListener('DOMContentLoaded', init);
    } else {
        init();
    }
}());

```
