Commit db70164d authored by denisx's avatar denisx Committed by XhmikosR
Browse files

ignore case (#25373)

Less on 2 symbols
parent bd9084d2
5 merge requests!28721Hot test,!27561Adds font-weight-medium to font weight classes,!25494web pack,!23207#22402 : modal: new autofocus & keyboardBtnNav options,!17021v4
Showing with 1 addition and 1 deletion
+1 -1
......@@ -20,7 +20,7 @@ const Util = (($) => {
// Shoutout AngusCroll (https://goo.gl/pxwQGp)
function toType(obj) {
return {}.toString.call(obj).match(/\s([a-zA-Z]+)/)[1].toLowerCase()
return {}.toString.call(obj).match(/\s([a-z]+)/i)[1].toLowerCase()
}
function getSpecialTransitionEndEvent() {
......
Supports Markdown
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