2020-12-24 18:33:49 -08:00
|
|
|
import 'core-js/stable'
|
|
|
|
import 'regenerator-runtime/runtime'
|
|
|
|
|
2020-12-25 12:53:14 -08:00
|
|
|
import '../legacy/jquery'
|
2020-12-24 18:33:49 -08:00
|
|
|
import {} from 'jquery-ujs'
|
2021-02-26 13:41:46 -08:00
|
|
|
import 'popper.js'
|
|
|
|
import 'bootstrap'
|
2020-12-24 18:33:49 -08:00
|
|
|
import 'particleground/jquery.particleground.min'
|
2020-12-25 06:50:34 -08:00
|
|
|
import 'sweetalert'
|
2020-12-24 18:33:49 -08:00
|
|
|
import Cookies from 'js-cookie'
|
|
|
|
|
2020-12-25 07:22:44 -08:00
|
|
|
require('nprogress/nprogress.css')
|
|
|
|
|
2020-12-25 06:07:47 -08:00
|
|
|
# this file is generated by Rails
|
2020-12-25 12:53:14 -08:00
|
|
|
import I18n from '../legacy/i18n'
|
|
|
|
import '../legacy/memes'
|
|
|
|
import '../legacy/notifications'
|
|
|
|
import '../legacy/pagination'
|
|
|
|
import '../legacy/locale-box'
|
|
|
|
import '../legacy/util'
|
2020-12-24 18:33:49 -08:00
|
|
|
|
2015-06-08 07:49:47 -07:00
|
|
|
window.translate = (scope, options) ->
|
|
|
|
# for some reason I18n errors when calling it by assign proxy, so we got to wrap it
|
|
|
|
I18n.translate(scope, options)
|
|
|
|
|
|
|
|
I18n.defaultLocale = 'en';
|
|
|
|
I18n.locale = Cookies.get('hl') || 'en';
|
|
|
|
|
2014-11-10 09:19:04 -08:00
|
|
|
$(document).on "click", "button#create-account", ->
|
|
|
|
Turbolinks.visit "/sign_up"
|
2015-01-03 10:43:51 -08:00
|
|
|
|
|
|
|
_ready = ->
|
2015-05-26 22:41:38 -07:00
|
|
|
if document.getElementById('particles')?
|
2015-07-29 08:08:07 -07:00
|
|
|
jumbo = $ '.j2-jumbo'
|
|
|
|
bodyColorOrig = jumbo.css 'background-color'
|
|
|
|
bodyColor = doppler 0.25, bodyColorOrig
|
|
|
|
console.log bodyColor, bodyColorOrig
|
2015-05-26 22:41:38 -07:00
|
|
|
particleground document.getElementById('particles'),
|
2015-07-29 08:08:07 -07:00
|
|
|
dotColor: bodyColor
|
|
|
|
lineColor: bodyColor
|
2015-09-20 06:16:24 -07:00
|
|
|
density: 23000
|
2015-05-12 14:53:42 -07:00
|
|
|
|
2015-01-03 10:43:51 -08:00
|
|
|
$(document).ready _ready
|
2021-02-26 13:41:46 -08:00
|
|
|
$(document).on 'turbolinks:load', _ready
|
|
|
|
|
|
|
|
$(document).on 'turbolinks:render', ->
|
2021-02-26 13:50:49 -08:00
|
|
|
$('.dropdown-toggle').dropdown()
|
|
|
|
$('[data-toggle="tooltip"]').tooltip()
|