Skip to content

Commit

Permalink
bump version 1.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mkhairi committed May 13, 2015
1 parent f5e6799 commit fea4964
Show file tree
Hide file tree
Showing 10 changed files with 13 additions and 13 deletions.
8 changes: 4 additions & 4 deletions app/assets/javascripts/alertify.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* alertifyjs 1.4.0 http://alertifyjs.com
* alertifyjs 1.4.1 http://alertifyjs.com
* AlertifyJS is a javascript framework for developing pretty browser dialogs and notifications.
* Copyright 2015 Mohammad Younes <Mohammad@alertifyjs.com> (http://alertifyjs.com)
* Licensed under MIT <http://opensource.org/licenses/mit-license.php>*/
Expand Down Expand Up @@ -2987,7 +2987,7 @@
timer: null,
index: null,
text: null,
duratuin: null,
duration: null,
task: function (event, self) {
if (self.isOpen()) {
self.__internal.buttons[autoConfirm.index].element.innerHTML = autoConfirm.text + ' (&#8207;' + autoConfirm.duration + '&#8207;) ';
Expand Down Expand Up @@ -3312,9 +3312,9 @@
var returnValue;
switch (closeEvent.index) {
case 0:
this.value = input.value;
this.settings.value = input.value;
if (typeof this.get('onok') === 'function') {
returnValue = this.get('onok').call(this, closeEvent, this.value);
returnValue = this.get('onok').call(this, closeEvent, this.settings.value);
if (typeof returnValue !== 'undefined') {
closeEvent.cancel = !returnValue;
}
Expand Down
2 changes: 1 addition & 1 deletion app/assets/stylesheets/alertify.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* alertifyjs 1.4.0 http://alertifyjs.com
* alertifyjs 1.4.1 http://alertifyjs.com
* AlertifyJS is a javascript framework for developing pretty browser dialogs and notifications.
* Copyright 2015 Mohammad Younes <Mohammad@alertifyjs.com> (http://alertifyjs.com)
* Licensed under MIT <http://opensource.org/licenses/mit-license.php>*/
Expand Down
2 changes: 1 addition & 1 deletion app/assets/stylesheets/alertify.rtl.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* alertifyjs 1.4.0 http://alertifyjs.com
* alertifyjs 1.4.1 http://alertifyjs.com
* AlertifyJS is a javascript framework for developing pretty browser dialogs and notifications.
* Copyright 2015 Mohammad Younes <Mohammad@alertifyjs.com> (http://alertifyjs.com)
* Licensed under MIT <http://opensource.org/licenses/mit-license.php>*/
Expand Down
2 changes: 1 addition & 1 deletion app/assets/stylesheets/alertify/bootstrap.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* alertifyjs 1.4.0 http://alertifyjs.com
* alertifyjs 1.4.1 http://alertifyjs.com
* AlertifyJS is a javascript framework for developing pretty browser dialogs and notifications.
* Copyright 2015 Mohammad Younes <Mohammad@alertifyjs.com> (http://alertifyjs.com)
* Licensed under MIT <http://opensource.org/licenses/mit-license.php>*/
Expand Down
2 changes: 1 addition & 1 deletion app/assets/stylesheets/alertify/bootstrap.rtl.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* alertifyjs 1.4.0 http://alertifyjs.com
* alertifyjs 1.4.1 http://alertifyjs.com
* AlertifyJS is a javascript framework for developing pretty browser dialogs and notifications.
* Copyright 2015 Mohammad Younes <Mohammad@alertifyjs.com> (http://alertifyjs.com)
* Licensed under MIT <http://opensource.org/licenses/mit-license.php>*/
Expand Down
2 changes: 1 addition & 1 deletion app/assets/stylesheets/alertify/default.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* alertifyjs 1.4.0 http://alertifyjs.com
* alertifyjs 1.4.1 http://alertifyjs.com
* AlertifyJS is a javascript framework for developing pretty browser dialogs and notifications.
* Copyright 2015 Mohammad Younes <Mohammad@alertifyjs.com> (http://alertifyjs.com)
* Licensed under MIT <http://opensource.org/licenses/mit-license.php>*/
Expand Down
2 changes: 1 addition & 1 deletion app/assets/stylesheets/alertify/default.rtl.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* alertifyjs 1.4.0 http://alertifyjs.com
* alertifyjs 1.4.1 http://alertifyjs.com
* AlertifyJS is a javascript framework for developing pretty browser dialogs and notifications.
* Copyright 2015 Mohammad Younes <Mohammad@alertifyjs.com> (http://alertifyjs.com)
* Licensed under MIT <http://opensource.org/licenses/mit-license.php>*/
Expand Down
2 changes: 1 addition & 1 deletion app/assets/stylesheets/alertify/semantic.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* alertifyjs 1.4.0 http://alertifyjs.com
* alertifyjs 1.4.1 http://alertifyjs.com
* AlertifyJS is a javascript framework for developing pretty browser dialogs and notifications.
* Copyright 2015 Mohammad Younes <Mohammad@alertifyjs.com> (http://alertifyjs.com)
* Licensed under MIT <http://opensource.org/licenses/mit-license.php>*/
Expand Down
2 changes: 1 addition & 1 deletion app/assets/stylesheets/alertify/semantic.rtl.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* alertifyjs 1.4.0 http://alertifyjs.com
* alertifyjs 1.4.1 http://alertifyjs.com
* AlertifyJS is a javascript framework for developing pretty browser dialogs and notifications.
* Copyright 2015 Mohammad Younes <Mohammad@alertifyjs.com> (http://alertifyjs.com)
* Licensed under MIT <http://opensource.org/licenses/mit-license.php>*/
Expand Down
2 changes: 1 addition & 1 deletion lib/alertifyjs/rails/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Alertifyjs #:nodoc:
module Rails #:nodoc:
VERSION = "1.4.0"
VERSION = "1.4.1"
end
end

0 comments on commit fea4964

Please sign in to comment.