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.
13 lines
347 B
13 lines
347 B
local E, L, V, P, G = unpack(ElvUI)
|
|
local S = E:GetModule('Skins')
|
|
|
|
local _G = _G
|
|
|
|
function S:Blizzard_QuestTimer()
|
|
if not (E.private.skins.blizzard.enable and E.private.skins.blizzard.questTimers) then return end
|
|
|
|
S:HandleFrame(_G.QuestTimerFrame, true)
|
|
_G.QuestTimerHeader:Point('TOP', 1, 8)
|
|
end
|
|
|
|
S:AddCallbackForAddon('Blizzard_QuestTimer')
|
|
|