From dc8040ee04ef2819c99d55dc74e9fe56d4ba4d1e Mon Sep 17 00:00:00 2001 From: Alexander Lantsev Date: Mon, 6 Jul 2015 08:03:40 +0000 Subject: MirLua: !api break - scripts will be load after ME_SYSTEM_MODULESLOADED event - removed event functions OnModulesLoaded, OnPreShutdown from m_core - removed OnMsgToolBarLoaded from m_msg_buttonsbar - removed OnTopToolBarLoaded from m_toptoolbar - fixed examples git-svn-id: http://svn.miranda-ng.org/main/trunk@14495 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/MirLua/docs/examples/popup.lua | 22 ++++++++++------------ 1 file changed, 10 insertions(+), 12 deletions(-) (limited to 'plugins/MirLua/docs/examples/popup.lua') diff --git a/plugins/MirLua/docs/examples/popup.lua b/plugins/MirLua/docs/examples/popup.lua index 4d48ace8a3..7195962d47 100644 --- a/plugins/MirLua/docs/examples/popup.lua +++ b/plugins/MirLua/docs/examples/popup.lua @@ -4,16 +4,14 @@ local popup = require('m_popup') local clist = require('m_clist') m.CreateServiceFunction('MirLua/ShowPopup', function() - local popupData = - { - Title = 'Title', - Text = 'Popup content', - hContact = 0, - Flags = 1 - } - popup.AddPopup(popupData) - end) - -m.OnModulesLoaded(function() - clist.AddMainMenuItem({ Name = "Show lua popup", Service = 'MirLua/ShowPopup' }) + local popupData = + { + Title = 'Title', + Text = 'Popup content', + hContact = 0, + Flags = 1 + } + popup.AddPopup(popupData) end) + +clist.AddMainMenuItem({ Name = "Show lua popup", Service = 'MirLua/ShowPopup' }) -- cgit v1.2.3