Commit f140084f authored by Josh Dague's avatar Josh Dague

Don't explicitly reference global jQuery

Removes `window.jQuery` in favor of `jQuery`, fixes #10038
parent 0c040063
......@@ -123,4 +123,4 @@
})
})
}(window.jQuery);
}(jQuery);
......@@ -95,4 +95,4 @@
$(document).on('click.bs.alert.data-api', dismiss, Alert.prototype.close)
}(window.jQuery);
}(jQuery);
......@@ -106,4 +106,4 @@
e.preventDefault()
})
}(window.jQuery);
}(jQuery);
......@@ -214,4 +214,4 @@
})
})
}(window.jQuery);
}(jQuery);
......@@ -176,4 +176,4 @@
$target.collapse(option)
})
}(window.jQuery);
}(jQuery);
......@@ -151,4 +151,4 @@
.on('click.bs.dropdown.data-api' , toggle, Dropdown.prototype.toggle)
.on('keydown.bs.dropdown.data-api', toggle + ', [role=menu]' , Dropdown.prototype.keydown)
}(window.jQuery);
}(jQuery);
......@@ -243,4 +243,4 @@
.on('show.bs.modal', '.modal', function () { $(document.body).addClass('modal-open') })
.on('hidden.bs.modal', '.modal', function () { $(document.body).removeClass('modal-open') })
}(window.jQuery);
}(jQuery);
......@@ -114,4 +114,4 @@
return this
}
}(window.jQuery);
}(jQuery);
......@@ -155,4 +155,4 @@
})
})
}(window.jQuery);
}(jQuery);
......@@ -132,4 +132,4 @@
$(this).tab('show')
})
}(window.jQuery);
}(jQuery);
......@@ -383,4 +383,4 @@
return this
}
}(window.jQuery);
}(jQuery);
......@@ -53,4 +53,4 @@
$.support.transition = transitionEnd()
})
}(window.jQuery);
}(jQuery);
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment