Oublié les headers dans js et css

This commit is contained in:
JosephK 2014-11-06 15:51:39 +01:00
parent 5993579238
commit 6f95c4467a

View File

@ -308,14 +308,14 @@ $(document).ready(function() {
**/ **/
$('#title-form .btn-edit').on('click', function() { $('#title-form .btn-edit').on('click', function() {
$('#title-form h2').hide(); $('#title-form h3').hide();
$('.js-title').removeClass("hidden"); $('.js-title').removeClass("hidden");
$('.js-title input').focus(); $('.js-title input').focus();
return false; return false;
}); });
$('#title-form .btn-cancel').on('click', function() { $('#title-form .btn-cancel').on('click', function() {
$('#title-form h2').show(); $('#title-form h3').show();
$('#title-form .js-title').addClass("hidden"); $('#title-form .js-title').addClass("hidden");
$('#title-form .btn-edit').focus(); $('#title-form .btn-edit').focus();
return false; return false;