Merge pull request #736 from tamias/label_no_element
Avoid error when label has no matching element
This commit is contained in:
commit
17f9d78e26
@ -529,7 +529,7 @@ the specific language governing permissions and limitations under the Apache Lic
|
|||||||
attr = attr.replace(/([\[\].])/g,'\\$1'); /* escapes [, ], and . so properly selects the id */
|
attr = attr.replace(/([\[\].])/g,'\\$1'); /* escapes [, ], and . so properly selects the id */
|
||||||
target = $("#"+attr);
|
target = $("#"+attr);
|
||||||
target = target.data("select2");
|
target = target.data("select2");
|
||||||
if (target !== undefined) { target.focus(); e.preventDefault();}
|
if (target !== undefined && target !== null) { target.focus(); e.preventDefault();}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
Loading…
x
Reference in New Issue
Block a user