about summary refs log tree commit diff
path: root/app/javascript/mastodon/common.js
blob: fba21316a77dc9c75dd7deea6e84b2b553d541dc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
import Rails from 'rails-ujs';

export function start() {
  require('font-awesome/css/font-awesome.css');
  require.context('../images/', true);

  try {
    Rails.start();
  } catch (e) {
    // If called twice
  }
};