aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJörn Zaefferer <joern.zaefferer@gmail.com>2012-09-29 18:00:45 +0200
committerJörn Zaefferer <joern.zaefferer@gmail.com>2012-09-29 18:00:45 +0200
commitf71f4abfe59dd423018073b2104047d89f5aadd6 (patch)
treefb3c2cd8c4af2318966a2d9e1299a4e0b4c00862
parent0c8556d927c43a19ded34b5c741ed1004c349fa3 (diff)
downloadjquery-ui-1-8-stable.tar.gz
jquery-ui-1-8-stable.zip
Grunt: Fix download_docs task1-8-stable
-rw-r--r--grunt.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/grunt.js b/grunt.js
index 01aef88a2..34ebe8f07 100644
--- a/grunt.js
+++ b/grunt.js
@@ -430,19 +430,19 @@ grunt.registerTask( "download_docs", function() {
var files = "draggable droppable resizable selectable sortable accordion autocomplete button datepicker dialog progressbar slider tabs position"
.split(" ").map(function(widget) {
return {
- url: "http://docs.jquery.com/action/render/UI/API/" + version + "/" + capitalize(widget),
+ url: "http://docs.jquery.com/UI/API/" + version + "/" + capitalize(widget) + "?action=render",
dest: docsDir + '/' + widget + '.html'
};
});
files = files.concat("animate addClass effect hide removeClass show switchClass toggle toggleClass".split(" ").map(function(widget) {
return {
- url: "http://docs.jquery.com/action/render/UI/Effects/" + widget,
+ url: "http://docs.jquery.com/UI/Effects/" + widget + "?action=render",
dest: docsDir + '/' + widget + '.html'
};
}));
files = files.concat("Blind Clip Drop Explode Fade Fold Puff Slide Scale Bounce Highlight Pulsate Shake Size Transfer".split(" ").map(function(widget) {
return {
- url: "http://docs.jquery.com/action/render/UI/Effects/" + widget,
+ url: "http://docs.jquery.com/UI/Effects/" + widget + "?action=render",
dest: docsDir + '/effect-' + widget.toLowerCase() + '.html'
};
}));