Explorar el Código

Fix quick slot not being clickable

tags/v0.8.0
Vildravn hace 3 años
padre
commit
c9c6c49eea
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. +2
    -1
      src/client/ui/templates/hud/hud.js

+ 2
- 1
src/client/ui/templates/hud/hud.js Ver fichero

@@ -28,7 +28,8 @@ define([

this.find('.quickItem')
.on('mousemove', this.showQuickItemTooltip.bind(this, true))
.on('mouseleave', this.showQuickItemTooltip.bind(this, false));
.on('mouseleave', this.showQuickItemTooltip.bind(this, false))
.on('click', this.useQuickItem.bind(this));
},

build: function () {


Cargando…
Cancelar
Guardar