Dumy data clean up

This commit is contained in:
Manish Verma
2018-08-16 12:55:59 +05:30
parent 2d11901b3f
commit 7920b17dcc
2 changed files with 19 additions and 12 deletions

View File

@@ -70,12 +70,11 @@ class="active"
@stop
@section('FooterInclude')
<script type="text/javascript">
$('#clean-confirm').click(function() {
if($(this). prop("checked") == true){
document.getElementById("clean-btn").disabled = false;
} else {
document.getElementById("clean-btn").disabled = true;
}
$('#clean-confirm').on('ifChecked', function () {
document.getElementById("clean-btn").disabled = false;
});
$('#clean-confirm').on('ifUnchecked', function () {
document.getElementById("clean-btn").disabled = true;
});
$('#clean-btn').on('click', function(){