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.
15 lines
498 B
15 lines
498 B
local E, L, V, P, G = unpack(ElvUI)
|
|
local S = E:GetModule('Skins')
|
|
|
|
local _G = _G
|
|
|
|
function S:Blizzard_IslandsPartyPoseUI()
|
|
if not (E.private.skins.blizzard.enable and E.private.skins.blizzard.islandsPartyPose) then return end
|
|
|
|
local IslandsPartyPoseFrame = _G.IslandsPartyPoseFrame
|
|
IslandsPartyPoseFrame:StripTextures()
|
|
IslandsPartyPoseFrame:SetTemplate('Transparent')
|
|
S:HandleButton(IslandsPartyPoseFrame.LeaveButton)
|
|
end
|
|
|
|
S:AddCallbackForAddon('Blizzard_IslandsPartyPoseUI')
|
|
|