-
Notifications
You must be signed in to change notification settings - Fork 725
Changeset
Fabien Doiron edited this page Oct 8, 2013
·
29 revisions
Keeping track of changeset.
- Full list coming soon.
- Fixed iOS return on prompt dialog, issue #175
- Fixed display multiple dialogs using AJAX, issue #166
- Fixed backwards tabbing to keep focus in dialog
- Added grunt watch and connect
- Updates example HTML to reflect the gh-pages
- Fix for dialog blocking mouse interactions
- Fix for overlay not blocking mouse interactions in IE
- Fix for IE9 compat where current focused button was not showing
- example folder for quick debugging during development
- updated to grunt 0.4
- reversed the order of the log messages, newer logs get added to the bottom
- resolved button order on tabbing through dialog boxes
- resolved older iOS dialog issue
- alertify.debug() - PR
- Avoid CSS conflicts between alertify.js and the site using it
- Ability to set focus button
- Hot fix to event unbind after
transitionend
for log messages
- hide notification holder when none are showing
- button click area in default theme
- Moved common elements to be fetch only once per dialog (buttons, form, input)
- Fixed
transitionend
events - Create common
setFocus
private method instead of repeating code - Hide dialog after fading out
- Replaced IE7-8 CSS hack. Turns out IE10 reads it
\9
.
- Removed
setTimeout
used to give focus to dialog button or textbox. Replaced withtransitionend
event and direct focus (browsers with notransitionend
support) - Unique hidden class
alertify-cover-hidden
for cover element - Separated callback function call for prompt and other dialogs. Some browsers had issues calling a function with a missing parameter.
e.g.function fn (param1) {}
called with extra paramfn(param1, "");
wouldn't allow return false to stop event bubbling causing the page to jump to the top (append # to the URL)
-
animation using
translate
instead of positioning
- animate log messages on close
- persistent notification messages setting the wait parameter to 0. e.g.
alertify.success("message", 0);
- ability to reverse button order using
alertify.set({ buttonReverse: true });
- updated test suite
- optional CSS parameter (ability to append custom CSS class to dialogs)
- bootstrap theme
alertify.bootstrap.css
- registered alertify as bower package
- reset focus to last element to have focus
*wasn't keeping track of changeset before... my bad