|
|
|
@ -1,5 +1,4 @@
|
|
|
|
+(function($) {
|
|
|
|
var allowCircleToBlog = function(e) {
|
|
|
|
var allowCircleToBlog = function(e) {
|
|
|
|
|
|
|
|
var allow = $(this).prop('checked');
|
|
|
|
var allow = $(this).prop('checked');
|
|
|
|
var circleid = $(this).data('circle-id');
|
|
|
|
var circleid = $(this).data('circle-id');
|
|
|
|
var targetid = $(this).data('target-id');
|
|
|
|
var targetid = $(this).data('target-id');
|
|
|
|
@ -20,8 +19,4 @@
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
e.preventDefault();
|
|
|
|
e.preventDefault();
|
|
|
|
};
|
|
|
|
}
|
|
|
|
$(document).ready(function() {
|
|
|
|
|
|
|
|
$('input.Blogcirle[type=checkbox]').on('change', allowCircleToBlog);
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
})(jQuery);
|
|
|
|
|