aboutsummaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2012-07-16 15:14:42 -0400
committerScott González <scott.gonzalez@gmail.com>2012-07-16 15:14:42 -0400
commitc484bc093bf69c23aed79cb951c8898aaec8331f (patch)
treef98f085a0ae4aa669f91f578afba1241fd59404e /build
parentb37fec9a24a6bc62bed8770148ef87a27a0bc8d7 (diff)
downloadjquery-ui-c484bc093bf69c23aed79cb951c8898aaec8331f.tar.gz
jquery-ui-c484bc093bf69c23aed79cb951c8898aaec8331f.zip
Manifest: Move transfer effect to core.json since it's not like other effects (no show/hide).
Diffstat (limited to 'build')
-rw-r--r--build/core.json13
-rw-r--r--build/effect.json3
-rw-r--r--build/tasks/build.js2
3 files changed, 14 insertions, 4 deletions
diff --git a/build/core.json b/build/core.json
index aac41f7aa..b0ccdfe7a 100644
--- a/build/core.json
+++ b/build/core.json
@@ -43,6 +43,19 @@
"collision"
]
},
+ "transfer": {
+ "name": "ui.effect-transfer",
+ "title": "jQuery UI Transfer Effect",
+ "description": "Displays a transfer effect from one element to another.",
+ "keywords": [
+ "effect"
+ ],
+ "homepage": "http://jqueryui.com/transfer-effect/",
+ "demo": "http://jqueryui.com/transfer-effect/",
+ "docs": "http://api.jqueryui.com/transfer-effect/",
+ "dependencies": [ "effect" ],
+ "category": "effect"
+ },
"widget": {
"description": "Provides a factory for creating stateful widgets with a common API.",
"keywords": [
diff --git a/build/effect.json b/build/effect.json
index b35bbb371..7119f85bc 100644
--- a/build/effect.json
+++ b/build/effect.json
@@ -34,8 +34,5 @@
},
"slide": {
"description": "Slides an element in and out of the viewport."
- },
- "transfer": {
- "description": "Displays a transfer effect from one element to another."
}
}
diff --git a/build/tasks/build.js b/build/tasks/build.js
index cc663309b..9608bdfff 100644
--- a/build/tasks/build.js
+++ b/build/tasks/build.js
@@ -45,7 +45,7 @@ grunt.registerTask( "manifest", "Generate jquery.json manifest files", function(
}
manifest = {
- name: replace( baseManifest.name ),
+ name: data.name || replace( baseManifest.name ),
title: data.title || replace( baseManifest.title ),
description: data.description,
keywords: [ "ui", plugin ]