Timers and other features for Heroes of the Storm
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 

12 行
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. })