Skip to content

Instantly share code, notes, and snippets.

@clouddueling
Created May 21, 2013 03:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save clouddueling/5617310 to your computer and use it in GitHub Desktop.
Save clouddueling/5617310 to your computer and use it in GitHub Desktop.
laravel unlock delete button
HTML::macro('unlock_delete', function($url, $message = 'Confirm delete?', $class = "")
{
return "
<div class='btn-group'>
<span class='btn {$class} btn-danger disabled' data-url=\"" . url($url) . "\" data-message=\"{$message}\">
<i class='icon-remove'></i>
</span>
<span class='btn {$class} unlock-btn'>
<i class='icon-lock'></i> Unlock
</span>
</div>
";
});
$('.unlock-btn').live('click', function(){
$(this).closest('.btn-group').find('.btn-danger').toggleClass('disabled');
$(this).find('i').toggleClass('icon-lock').toggleClass('icon-unlock');
});
@88-55-70-90-57-50-82
Copy link

where should I put it tho?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment