6 lines
138 B
JavaScript
6 lines
138 B
JavaScript
$(function()
|
|
{
|
|
if(hasExecution) $('.confirmBtn').removeClass('hidden');
|
|
if(!hasExecution) $('.confirmBtn').addClass('hidden');
|
|
})
|