Merge pull request #1159 from jitsi/non-focusable-close-toastr

Makes close button non-focusable.
This commit is contained in:
hristoterezov 2016-11-23 15:41:11 -06:00 committed by GitHub
commit 56f15356c7
2 changed files with 4 additions and 2 deletions

View File

@ -474,7 +474,9 @@ UI.start = function () {
"hideEasing": "linear", "hideEasing": "linear",
"showMethod": "fadeIn", "showMethod": "fadeIn",
"hideMethod": "fadeOut", "hideMethod": "fadeOut",
"newestOnTop": false "newestOnTop": false,
// this is the default toastr close button html, just adds tabIndex
"closeHtml": '<button type="button" tabIndex="-1">&times;</button>'
}; };
} }

View File

@ -439,7 +439,7 @@ var messageHandler = {
* @param messageKey the key from the language file for the text of the * @param messageKey the key from the language file for the text of the
* message. * message.
* @param messageArguments object with the arguments for the message. * @param messageArguments object with the arguments for the message.
* @param options object with language options. * @param options passed to toastr (e.g. timeOut)
*/ */
notify: function(displayName, displayNameKey, cls, messageKey, notify: function(displayName, displayNameKey, cls, messageKey,
messageArguments, options) { messageArguments, options) {