mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-15 19:54:57 +08:00
Updating the Orchard.Blogs' dependencies
--HG-- branch : dev
This commit is contained in:
@@ -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
|
@@ -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);
|
Reference in New Issue
Block a user