remove temp folder structure

This commit is contained in:
Crum
2018-02-19 21:03:21 -06:00
parent 85a2a5bcf7
commit 611f11aff9
408 changed files with 0 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
local E, L, V, P, G = unpack(ElvUI); --Import: Engine, Locales, PrivateDB, ProfileDB, GlobalDB
local S = E:GetModule("Skins");
--Cache global variables
--Lua functions
local _G = _G
--WoW API / Variables
local function LoadSkin()
if E.private.skins.blizzard.enable ~= true or E.private.skins.blizzard.greeting ~= true then return end
E:StripTextures(QuestFrameGreetingPanel)
E:Kill(QuestGreetingFrameHorizontalBreak)
S:HandleScrollBar(QuestGreetingScrollFrameScrollBar)
S:HandleButton(QuestFrameGreetingGoodbyeButton, true)
GreetingText:SetTextColor(1, 1, 1)
CurrentQuestsText:SetTextColor(1, 1, 0)
AvailableQuestsText:SetTextColor(1, 1, 0)
for i = 1, MAX_NUM_QUESTS do
local button = _G["QuestTitleButton"..i]
button:SetTextColor(1, 1, 0)
end
end
S:AddCallback("Greeting", LoadSkin)