Tim Almdal
69ef76530d
Re enable the submit button if the dialog processing resends the form because of an error.
2009-10-31 09:42:09 -07:00
Tim Almdal
6af697686a
Put logic into gallery.dialog.js so that when the form is submitted, the submit button is disabled and the user is no longer able to submit multiple clicks. This should fix tickets: #623 , #790 , #799
2009-10-23 13:08:10 -07:00
Chad Kieffer
80bb78fa4e
Fixed resized photo float issue, added g-clearfix to g-pager on the photo view. Tightened up g-pager styles. Removed a few unecessary !importants.
2009-10-09 12:07:27 -06:00
Chad Kieffer
3e6ba7acc3
Renamed most, if not all css selectors from gName to g-name. Moved a few shared images from wind to lib. Deleted unused images in the admin_wind. This will likely break a few ajax features.
2009-10-04 00:27:22 -06:00
Chad Kieffer
e1e8904e4a
Convert gDialog and gCancel over to g-dialog and g-cancel. Refactor CSS id's and classes in the login/reset password dialog.
2009-09-30 22:49:36 -06:00
Chad Kieffer
75ee962c9e
Apply hover effect to dialog buttons.
2009-08-29 17:32:34 -06:00
Chad Kieffer
210ba966f8
Fixed issue where button classes and cancel link weren't being re-applied to forms when an open dialog is reloaded.
2009-08-28 18:20:56 -06:00
Chad Kieffer
fc1c4d5119
Button styles and event handlers weren't being applied in dialogs, fixes #669 .
2009-08-28 16:37:14 -06:00
Tim Almdal
1c5b04a2c5
Fix the problem where the login page and edit permission pages were
...
supersized based on ly last commit.
2009-08-08 16:26:34 -07:00
Tim Almdal
aac06342b3
Merge branch 'master' of git://github.com/gallery/gallery3
2009-08-08 16:11:28 -07:00
Tim Almdal
ae428a7e21
remove a debug statement left over from previous commit
2009-08-08 15:52:04 -07:00
Tim Almdal
cb1ae141bb
Create an new option 'immediate' and if set to true then don't try to set up click events, but just show the dialog. Also remove the destroy method and put all the cleanup into the dialog close handler
2009-08-08 15:46:53 -07:00
Tim Almdal
7b0ea229b8
Make the organize dialog open properly in IE8, Chrome and FF. For some reason (probably a timing thing) the height of the contents was not being set correctly in FF. So we just hard code an estimate of the size of the Draw handle, and message areas.
2009-08-07 17:07:04 -07:00
Bharat Mediratta
e4eec71efa
Rename gallery.common.js functions to conform to our naming standards
...
and have some basic namespacing:
showMessage --> gallery_show_message
vAlign --> gallery_valign
showLoading --> gallery_show_loading
Convert gallery.show_full_size.js to be a jQuery function and give it a namespace:
show_full_size --> gallery_show_full_size
2009-08-07 11:53:40 -07:00
Tim Almdal
445a8fb1b6
Change galleryPanel and galleryDialog widgets to gallery_panel and gallery_dialog respectively
...
Signed-off-by: Bharat Mediratta <bharat@menalto.com >
2009-08-08 02:08:42 +08:00
Tim Almdal
a302a9c3fa
Refactor the gallery dialog into a jQuery widget
...
Signed-off-by: Bharat Mediratta <bharat@menalto.com >
2009-08-08 02:08:28 +08:00
Tim Almdal
9f396178ce
Revert "Allow a theme to override the page refresh mechanism. Create a new"
...
This reverts commit 1f014aae6c .
2009-08-05 09:24:27 -07:00
Tim Almdal
1f014aae6c
Allow a theme to override the page refresh mechanism. Create a new
...
javascript lib (gallery.reload.js) which defines the functions
gallery_reload() and gallery_location(new_location). They just
do a window.location.reload() and window.location = new_location.
This change breaks the assumption that all themes will handle page reloads
the same and allows the theme to customize the page refresh.
2009-07-27 12:39:12 -07:00
Bharat Mediratta
214d977f4d
Don't close the dialog window after we successfully complete an
...
action. The expectation is that we're going to reload the page (or
redirect to a new url). If we close the dialog, then we can trigger
the onhover for items we've just deleted causing errors.
Simplify the API while we're at it by getting rid of the no-longer-used
on_success argument to openDialog()
This fixes #528 .
2009-07-11 06:51:21 -07:00
Andy Staudacher
21f228b1ae
Ticket 86 (addendum) - Guard against themes that don't define MSG_CANCEL and add the message to admin_default as
...
well.
2009-06-29 21:03:40 -07:00
Andy Staudacher
0eb9a2aacd
Fix for ticket 86 - Make Cancel button in doalogs localizable.
2009-06-29 20:55:23 -07:00
Tim Almdal
75d98701ae
Guard the calling of the form closing event so its not called if there
...
is no form.
2009-03-26 04:09:03 +00:00
Tim Almdal
520a4b41b3
Add a "form_closing" custom event to the dialog processing. This
...
allows the form in the dialog todo custom processing when the form
closes.
For example, the server_add dialog (next commit) uses this callback to
determine if the upload task was cancelled and display a warning
message when the page reloads.
Usage:
$("#gServerAdd form").bind("form_closing", function(target){...});
2009-03-24 17:30:06 +00:00
Bharat Mediratta
2ef8e28198
Pass on_success through to ajaxify_dialog, resolving an bug created
...
in r20302.
2009-03-08 00:23:15 +00:00
Tim Almdal
e96e26a12f
Fix for ticket #130
...
1) Shuffled code around to create a on_form_loaded function
2) Check for a data.reset string in the json return. If it exists and
is a function then call. The idea being that if there is an error we
might have to reset some jquery widget initialization.
2009-03-06 22:35:05 +00:00
Chad Kieffer
ecaf6bda32
Added fix i18n todo item for cancel link
2009-02-23 00:44:50 +00:00
Chad Kieffer
9b73213693
Add Cancel link next to submit buttons in dialogs. Apply button style to buttons in dialogs.
2009-02-22 08:05:15 +00:00
Chad Kieffer
fc162362de
Set one of 3 dialog widths keying off of form's CSS width value: 300px, 500px, or $(window).width() -100. Tested in IE 6, 7, 8 and looks good. Also, remove titlebar from progress bar dialogs.
2009-02-10 05:48:55 +00:00
Chad Kieffer
767bf41287
Dialogs don't need to be resizeable, at least not yet.
2009-02-09 01:19:54 +00:00
Bharat Mediratta
a68ac7d2ce
Fix dialogs in IE7 so that they appear. The sizes are still wrong, though.
2009-02-08 23:39:25 +00:00
Chad Kieffer
aa1abbf82a
Let the theme control overlay opacity for dialogs.
2009-02-08 19:35:10 +00:00
Chad Kieffer
ce826c3048
Updated jQuery UI in lib to 1.6rc6. Removed opacity settings in openDialog, refactored showLoading() a bit.
2009-02-07 21:01:52 +00:00
Jakob Hilden
5b17619ea8
added inplace edit to tag admin (form still needs to be set to rename using AJAX)
...
removed unnecessary {element: dialogLinks[i]} from dialog and panelLink handling. now uses event.currentTarget
2009-02-04 07:14:22 +00:00
Chad Kieffer
573f787d63
Set dialog width to 200px for dialog's whose content is less than 400px wide, like the login form.
2009-01-25 20:58:15 +00:00
Chad Kieffer
55cd2afde5
Admin theme style cleanup. Merged separate selected, available, unavailable into a single set of reusable classes. Applied alternating row bg colors. Removed inline CSS from admin views. Moved user admin css into admin_default theme style sheet.
2009-01-24 20:06:13 +00:00
Chad Kieffer
19811aec53
Minor formatting cleanup, removed unecessary line.
2009-01-23 01:19:46 +00:00
Chad Kieffer
42e635bff0
Theme admin refinement. Make more room to show the preview by enlarging the iframe and removing the heading above it.
2009-01-12 07:57:13 +00:00
Bharat Mediratta
120ad3a2cd
Pull the dialog title from the first <h1> we find, fall back to the first <fieldset> <legend>
2009-01-11 00:18:29 +00:00
Chad Kieffer
7569b39802
Updated to jquery ui 1.6rc4. Lots of changes, improved widget theme css and icons. No need to fix position dialogs anymore. Included the following in the combined file + i18n files. Requires push back up to vendor branch.
...
UI Core
Effects Core
Draggable - Req'd by Sortable
Resizeable - Image/watermark/avatar scaling
Sortable - Rearrange
Dialog - All over :)
Datepicker - Edit albums/items
Progressbar
Highlight - Message display, comment addition
Transfer - Adding tags from available list to field
Not fully integrated into the default theme yet.
2009-01-10 06:25:44 +00:00
Bharat Mediratta
b21215d2e6
use "position: fixed" to keep the dialog centered in the viewport.
2009-01-06 09:38:40 +00:00
Bharat Mediratta
a63502b3c6
Refactor the way that dialogs work:
...
1) Get rid of the resizing behavior; create the dialog in the right
place and then show it.
2) Grab the fieldset legend and put it into the title of the dialog,
so that we don't have to use title="" params in anchors.
3) Stop using fixed buttons and let the form define its own buttons.
4) Stop suppressing all form buttons.
2009-01-06 08:33:39 +00:00
Bharat Mediratta
06b4145b76
Quick edit dialogs should stay on the same page and trigger a reload.
2009-01-05 08:20:07 +00:00
Bharat Mediratta
7482b6683e
Add "quick edit" which lets you edit a photo's details from the albums
...
page.
2009-01-05 08:05:50 +00:00
Bharat Mediratta
11d2788af8
Refactor common dialog JS code out into lib/gallery.dialog.js
2009-01-01 00:06:52 +00:00