Просмотр исходного кода

Merge branch '1471-quickslot-fix' into 'master'

Fix quick slot not being clickable

Closes #1471

See merge request Isleward/isleward!484
tags/v0.8.0
Big Bad Waffle 3 лет назад
Родитель
Сommit
435abde852
1 измененных файлов: 2 добавлений и 1 удалений
  1. +2
    -1
      src/client/ui/templates/hud/hud.js

+ 2
- 1
src/client/ui/templates/hud/hud.js Просмотреть файл

@@ -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 () {


Загрузка…
Отмена
Сохранить