Fix scripts where broken jQuery might cause issues

서드파티 자료에서 jQuery의 $를 덮어써 버릴 경우 발생할 수 있는 문제를
미리 차단하기 위해 다소 보수적으로 코딩함
This commit is contained in:
Kijin Sung 2017-07-02 00:48:52 +09:00
parent 21072195c0
commit c96d586827
12 changed files with 12 additions and 12 deletions

View file

@ -110,7 +110,7 @@
</section>
<script>
$(function() {
jQuery(function($) {
$("a.delete_domain").on("click", function(event) {
event.preventDefault();
var domain = $(this).data("domain");

View file

@ -65,7 +65,7 @@
<!--[if lt IE 9]>
<script>
$(function() {
jQuery(function($) {
$('#checkBrowserMessage').show();
});
</script>

View file

@ -79,4 +79,4 @@
});
} (jQuery));
})(jQuery);