a9eaa780f5
Conflicts: - app/javascript/mastodon/features/compose/components/compose_form.js Upstream cleaned up a bit, including on lines in which we replaced the hardcoded 500 character limit with a maxChar constant. Applied the changes while keeping maxChar instead of 500. - app/javascript/packs/public.js Moved upstream's new animated avatar hover handling in app/javascript/core/public.js - app/javascript/styles/fonts/montserrat.scss Upstream fixed local font name, applied those changes. - app/javascript/styles/fonts/roboto.scss Upstream fixed local font name, applied those changes. - lib/mastodon/version.rb Upstream made repo URL configurable, did the same, but default to glitch-soc
25 lines
1.1 KiB
JavaScript
25 lines
1.1 KiB
JavaScript
const element = document.getElementById('initial-state');
|
|
const initialState = element && JSON.parse(element.textContent);
|
|
|
|
const getMeta = (prop) => initialState && initialState.meta && initialState.meta[prop];
|
|
|
|
export const reduceMotion = getMeta('reduce_motion');
|
|
export const autoPlayGif = getMeta('auto_play_gif');
|
|
export const displayMedia = getMeta('display_media');
|
|
export const expandSpoilers = getMeta('expand_spoilers');
|
|
export const unfollowModal = getMeta('unfollow_modal');
|
|
export const boostModal = getMeta('boost_modal');
|
|
export const deleteModal = getMeta('delete_modal');
|
|
export const me = getMeta('me');
|
|
export const searchEnabled = getMeta('search_enabled');
|
|
export const maxChars = (initialState && initialState.max_toot_chars) || 500;
|
|
export const invitesEnabled = getMeta('invites_enabled');
|
|
export const repository = getMeta('repository');
|
|
export const source_url = getMeta('source_url');
|
|
export const version = getMeta('version');
|
|
export const mascot = getMeta('mascot');
|
|
export const profile_directory = getMeta('profile_directory');
|
|
export const isStaff = getMeta('is_staff');
|
|
|
|
export default initialState;
|