Skip to content

Commit

Permalink
update CSS & JS
Browse files Browse the repository at this point in the history
  • Loading branch information
christianwach committed Dec 18, 2014
1 parent b6eeb70 commit b67c54c
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 10 deletions.
2 changes: 1 addition & 1 deletion themes/commentpress-modern/assets/css/screen.css

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions themes/commentpress-modern/assets/css/screen.dev.css
Original file line number Diff line number Diff line change
Expand Up @@ -3180,6 +3180,11 @@ body.fee .metabox_container label
text-transform: uppercase;
}

.editor_toggle_wrapper
{
padding: 15px 7px;
}




Expand Down
21 changes: 13 additions & 8 deletions themes/commentpress-modern/assets/js/screen.dev.js
Original file line number Diff line number Diff line change
Expand Up @@ -2811,17 +2811,22 @@ jQuery(document).ready( function($) {
* still in development, so much of this is liable to change.
*/

// put some vars into global scope
var cp_comment_form;
// are comments open?
if ( cp_comments_open == 'y' ) {

// disable the comment form
addComment.disableForm();
// put some vars into global scope
var cp_comment_form;

// save comment form
cp_comment_form = $('#respond_wrapper').clone();
// disable the comment form
addComment.disableForm();

// save original comments column heading
cp_column_title_original = $( '#comments_header h2 a' ).text();
// save comment form
cp_comment_form = $('#respond_wrapper').clone();

// save original comments column heading
cp_column_title_original = $( '#comments_header h2 a' ).text();

}



Expand Down
Loading

0 comments on commit b67c54c

Please sign in to comment.