Skip to content
fabien-d edited this page Apr 21, 2013 · 26 revisions

Keeping track of changeset.

2013/02/17 - 0.4.0rc1

  • Full list coming soon.

2013/04/20 - 0.3.9

  • 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

2013/02/04 - 0.3.8

  • alertify.debug() - PR

2013/01/20 - 0.3.7

  • Avoid CSS conflicts between alertify.js and the site using it

2013/01/15 - 0.3.6

  • Ability to set focus button
  • Hot fix to event unbind after transitionend for log messages

2013/01/12 - 0.3.5

2013/01/12 - 0.3.4

  • 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.

2013/01/12 - 0.3.3

  • Removed setTimeout used to give focus to dialog button or textbox. Replaced with transitionend event and direct focus (browsers with no transitionend 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 param fn(param1, ""); wouldn't allow return false to stop event bubbling causing the page to jump to the top (append # to the URL)

2012/12/24 - 0.3.2

  • animation using translate instead of positioning

2012/12/21 - 0.3.1

  • 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 });

2012/12/16 - 0.3.0

  • updated test suite
  • optional CSS parameter (ability to append custom CSS class to dialogs)
  • bootstrap theme alertify.bootstrap.css

2012/12/09 - 0.2.12

  • registered alertify as bower package
  • reset focus to last element to have focus

*wasn't keeping track of changeset before... my bad