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.
17 lines
421 B
17 lines
421 B
local E, L, V, P, G = unpack(ElvUI)
|
|
local S = E:GetModule('Skins')
|
|
|
|
local _G = _G
|
|
|
|
function S:TaxiFrame()
|
|
if not (E.private.skins.blizzard.enable and E.private.skins.blizzard.taxi) then return end
|
|
|
|
local TaxiFrame = _G.TaxiFrame
|
|
TaxiFrame:StripTextures()
|
|
TaxiFrame:SetTemplate('Transparent')
|
|
_G.TaxiRouteMap:SetTemplate()
|
|
|
|
S:HandleCloseButton(TaxiFrame.CloseButton)
|
|
end
|
|
|
|
S:AddCallback('TaxiFrame')
|
|
|