5bb7be4968
Each Details_* plugin and the main Details addon now lives in its own repo-root folder, matching the Exiles fork-layout convention.
19 lines
541 B
Lua
19 lines
541 B
Lua
|
|
local Details = _G.Details
|
|
local AceLocale = LibStub("AceLocale-3.0")
|
|
local L = AceLocale:GetLocale("Details")
|
|
local addonName, Details222 = ...
|
|
|
|
function Details.RegisterDragonFlightEditMode()
|
|
if (EventRegistry and type(EventRegistry) == "table") then
|
|
local onEnterEditMode = function()
|
|
|
|
end
|
|
|
|
local onLeaveEditMode = function()
|
|
|
|
end
|
|
EventRegistry:RegisterCallback("EditMode.Enter", onEnterEditMode)
|
|
EventRegistry:RegisterCallback("EditMode.Edit", onLeaveEditMode)
|
|
end
|
|
end |