diff options
author | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2012-09-29 18:00:45 +0200 |
---|---|---|
committer | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2012-09-29 18:00:45 +0200 |
commit | f71f4abfe59dd423018073b2104047d89f5aadd6 (patch) | |
tree | fb3c2cd8c4af2318966a2d9e1299a4e0b4c00862 | |
parent | 0c8556d927c43a19ded34b5c741ed1004c349fa3 (diff) | |
download | jquery-ui-1-8-stable.tar.gz jquery-ui-1-8-stable.zip |
Grunt: Fix download_docs task1-8-stable
-rw-r--r-- | grunt.js | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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' }; })); |