Skip to content
Snippets Groups Projects
Commit c2fdc0a8 authored by Jared Hancock's avatar Jared Hancock
Browse files

jQuery: Fix default slow appearance of .show()

With the patch introduced to fix the `afterShow` event for jQuery three,
this appear sort of slowly be default. This addresses the issue by providing
a default of 0ms to show things, so they show immediately.
parent 0ef7cc1a
No related branches found
No related tags found
No related merge requests found
......@@ -1308,7 +1308,7 @@ jQuery(function($) {
$.fn.show = function() {
var argsArray = Array.prototype.slice.call(arguments),
arg = argsArray[0],
options = {};
options = argsArray[1] || {duration: 0};
if (typeof(arg) === 'number')
options.duration = arg;
else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment