Timers and other features for Heroes of the Storm
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.
 
 
 
 
 

12 lines
259 B

  1. 'use strict'
  2. /* eslint-disable */
  3. require('eventsource-polyfill')
  4. var hotClient = require('webpack-hot-middleware/client?noInfo=true&reload=true')
  5. hotClient.subscribe(function (event) {
  6. if (event.action === 'reload') {
  7. window.location.reload()
  8. }
  9. })