11 lines
598 B
JavaScript
11 lines
598 B
JavaScript
// profile.js — Default user profile text shown in the popup.
|
|
// ============================================================================
|
|
// DO NOT hardcode profile facts here. This file only RENDERS the single source
|
|
// of truth defined in profile_data.js. Edit that file instead.
|
|
// profile_data.js must be loaded before this script.
|
|
// ============================================================================
|
|
|
|
const DEFAULT_PROFILE = (typeof renderProfileText === 'function')
|
|
? renderProfileText()
|
|
: '/* profile_data.js failed to load — check the script order in popup.html */';
|