🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-08-07 02:40:51 | PHP 8.2.32
📂
/ (Root)
/
home
/
eliteewa
/
public_html
/
wp-content
/
plugins
/
blocksy-companion
/
static
/
js
/
frontend
/
sticky
📍 /home/eliteewa/public_html/wp-content/plugins/blocksy-companion/static/js/frontend/sticky
🔄 Refresh
✏️
Editing: start-position.js
Writable
export const computeStartPositionForRowConfiguration = (rowConfiguration) => { return ( rowConfiguration // Ignore rows with height 0 .filter((row) => row.height !== 0) .reduce((result, row) => { if (result.indexOf(0) > -1) { return [...result, 0] } return [...result, row.sticky ? 0 : row.height] }, []) .reduce((sum, height) => sum + height, 0) ) }
💾 Save Changes
❌ Cancel