Add missing includes for yahoo and event, required by the new Group Manager JS code. Fixes bug #12095.

This commit is contained in:
Colin Kuskie 2011-04-06 11:20:05 -07:00
parent d5ba73fac7
commit 5f44936580
2 changed files with 3 additions and 0 deletions

View file

@ -2,6 +2,7 @@
- fixed #12094: Cannot enter in Macros in URLs inside TinyMCE.
- rfe #12093: Remotely stored photos for Story assets
- fixed #12088: Organization left out of transaction
- fixed #12095: Shop admin screen has JS errors?
7.10.13
- added #12079: Carousel Auto Play

View file

@ -155,6 +155,8 @@ sub headTags {
my $url = $self->session->url;
$style->setLink($url->extras('yui/build/container/assets/skins/sam/container.css'), { rel => 'stylesheet', type => 'text/css' });
$style->setLink($url->extras('yui/build/button/assets/skins/sam/button.css'), { rel => 'stylesheet', type => 'text/css' });
$style->setScript($url->extras('yui/build/yahoo/yahoo-min.js'), { type=>'text/javascript' });
$style->setScript($url->extras('yui/build/event/event-min.js'), { type=>'text/javascript' });
$style->setScript($url->extras('yui/build/connection/connection-min.js'), { type=>'text/javascript' });
$style->setScript($url->extras('yui/build/element/element-min.js'), { type=>'text/javascript' });
$style->setScript($url->extras('yui/build/button/button-min.js'), { type=>'text/javascript' });