2017-11-18 23:12:52 +00:00
|
|
|
// This file will be loaded on public pages, regardless of theme.
|
2017-11-21 06:13:37 +00:00
|
|
|
|
2018-08-05 10:55:56 +00:00
|
|
|
import createHistory from 'history/createBrowserHistory';
|
|
|
|
import ready from '../mastodon/ready';
|
|
|
|
|
2017-11-21 06:13:37 +00:00
|
|
|
const { delegate } = require('rails-ujs');
|
2018-07-31 20:21:15 +00:00
|
|
|
const { length } = require('stringz');
|
2017-11-21 06:13:37 +00:00
|
|
|
|
|
|
|
delegate(document, '.webapp-btn', 'click', ({ target, button }) => {
|
|
|
|
if (button !== 0) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
window.location.href = target.href;
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
|
|
|
delegate(document, '.status__content__spoiler-link', 'click', ({ target }) => {
|
|
|
|
const contentEl = target.parentNode.parentNode.querySelector('.e-content');
|
|
|
|
|
|
|
|
if (contentEl.style.display === 'block') {
|
|
|
|
contentEl.style.display = 'none';
|
|
|
|
target.parentNode.style.marginBottom = 0;
|
|
|
|
} else {
|
|
|
|
contentEl.style.display = 'block';
|
|
|
|
target.parentNode.style.marginBottom = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
});
|
2018-08-18 16:04:49 +00:00
|
|
|
|
|
|
|
delegate(document, '.modal-button', 'click', e => {
|
|
|
|
e.preventDefault();
|
|
|
|
|
|
|
|
let href;
|
|
|
|
|
|
|
|
if (e.target.nodeName !== 'A') {
|
|
|
|
href = e.target.parentNode.href;
|
|
|
|
} else {
|
|
|
|
href = e.target.href;
|
|
|
|
}
|
|
|
|
|
|
|
|
window.open(href, 'mastodon-intent', 'width=445,height=600,resizable=no,menubar=no,status=no,scrollbars=yes');
|
|
|
|
});
|