Updating the Orchard.Blogs' dependencies

--HG--
branch : dev
This commit is contained in:
Nathan Heskew
2010-11-11 10:10:21 -08:00
parent a70493826f
commit 9dd4b78ba9
2 changed files with 16 additions and 14 deletions

View File

@@ -9,10 +9,10 @@ Features:
Orchard.Blogs:
Name: Blogs
Description: A simple web log.
Dependencies: Feeds
Dependencies: Shapes, Common, Routable, Feeds, Orchard.Widgets, Orchard.jQuery
Category: Content
Orchard.Blogs.RemotePublishing:
Name: Remote Blog Publishing
Description: Blog easier using a dedicated MetaWeblogAPI-compatible publishing tool.
Dependencies: XmlRpc
Category: Content Publishing
Dependencies: XmlRpc, Orchard.Blogs
Category: Content Publishing

View File

@@ -1,14 +1,16 @@
/** archives **/
$(function() {
$('.archives ul.years li.previous').each(function() {
$(this).click(function(ev) {
if (!ev || $(ev.target).not("a").size()) {
$(this).toggleClass("open");
$(this).find("h4>span").toggle();
$(this).children("ul").toggle();
}
});
(function ($) {
$(function() {
$('.archives ul.years li.previous').each(function() {
$(this).click(function(ev) {
if (!ev || $(ev.target).not("a").size()) {
$(this).toggleClass("open");
$(this).find("h4>span").toggle();
$(this).children("ul").toggle();
}
});
//$(this).hoverClassIfy();
//$(this).hoverClassIfy();
});
});
});
})(jQuery);