You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
226 B

  1. 'use strict'
  2. import $ from 'jquery'
  3. import _ from 'lodash'
  4. module.exports = {
  5. complete () {
  6. $('#page-loader').addClass('is-loaded')
  7. _.delay(() => {
  8. $('#page-loader').addClass('is-hidden')
  9. }, 1100)
  10. }
  11. }