Search and Top Navigation
#4416 closed feature (fixed)
Opened March 30, 2009 11:05PM UTC
Closed November 13, 2009 04:36AM UTC
Last modified January 17, 2010 06:09AM UTC
Add fade effect (implementation included)
Reported by: | dohsun | Owned by: | |
---|---|---|---|
Priority: | major | Milestone: | 1.8 |
Component: | ui.effects.* (individual effect) | Version: | 1.7.1 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
Hey, I couldn't for the life of me figure out how to get my dialogs to fade in and fade out without mucking around the UI source code. My solution was to create a new effect called fade. The benefit is now you could use it everywhere where you need fade (untested-I think you can...) and it won't break when you upgrade your JQuery UI.
Attachments (1)
Change History (6)
Changed March 30, 2009 11:10PM UTC by comment:1
Changed May 07, 2009 11:28AM UTC by comment:2
component: | effects.* (individual effect) → ui.dialog |
---|---|
milestone: | TBD → 1.7.2 |
type: | feature → bug |
This should be supported by dialog already, needs verification.
Changed May 07, 2009 01:34PM UTC by comment:3
milestone: | 1.7.2 → 1.8 |
---|
Changed June 09, 2009 01:18AM UTC by comment:4
component: | ui.dialog → effects.* (individual effect) |
---|---|
priority: | minor → major |
summary: | Fade effect for Dialog (maybe for all JQuery UI) → Add fade effect (implementation included) |
type: | bug → feature |
Changing to effects.* since this is really about a big hole in effects that we have which causes frustration for a lot of users.
Right now the best you can do is provide a number for the show/hide options, which will fade and slide the dialog.
Changed November 13, 2009 04:36AM UTC by comment:5
resolution: | → fixed |
---|---|
status: | new → closed |
Fixed in r3447.
Changed November 13, 2009 01:25PM UTC by comment:6
Mediawiki docs: http://gist.github.com/233823
Replying to [ticket:4416 dohsun]:
Forgot to mention, my goal was to get this working:
$("#thedialog").dialog({
show: 'fade',
hide: 'fade'
});
Thanks!