diff options
author | Craig Andrews <candrews@integralblue.com> | 2009-12-04 01:57:14 -0500 |
---|---|---|
committer | Craig Andrews <candrews@integralblue.com> | 2009-12-04 01:57:14 -0500 |
commit | 40afc7e9877855272caa5c65fb3575e4420b2966 (patch) | |
tree | 87c6743581b311e16972459c5f3903ea209986e8 /EVENTS.txt | |
parent | c89b10ffe4adb1df724b6a7c5c31b42c7dd3376b (diff) |
Add 4 new events: StartCssLinkElement, EndCssLinkElement, StartScriptElement, EndScriptElement
Diffstat (limited to 'EVENTS.txt')
-rw-r--r-- | EVENTS.txt | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/EVENTS.txt b/EVENTS.txt index 34a222e8f..f4ec62033 100644 --- a/EVENTS.txt +++ b/EVENTS.txt @@ -574,3 +574,24 @@ EndShortenUrl: After a URL has been shortened - $shortenerName: name of the requested shortener - $shortenedUrl: short version of the url +StartCssLinkElement: Before a <link rel="stylesheet"..> element is written +- $action +- &$src +- &$theme +- &$media + +EndCssLinkElement: After a <link rel="stylesheet"..> element is written +- $action +- $src +- $theme +- $media + +StartScriptElement: Before a <script...> element is written +- $action +- &$src +- &$type + +EndScriptElement: After a <script...> element is written +- $action +- $src +- $type |