Skip to content
This repository has been archived by the owner on Nov 19, 2019. It is now read-only.

Commit

Permalink
Merge pull request #119 from rahulprajapati-rtcamp/master
Browse files Browse the repository at this point in the history
Solved the issue for WordPress 4.4
  • Loading branch information
manishsongirkar committed Dec 24, 2015
2 parents 121fb63 + 148a6b3 commit 2809cd8
Show file tree
Hide file tree
Showing 11 changed files with 31 additions and 26 deletions.
1 change: 1 addition & 0 deletions .gitignore
@@ -1,3 +1,4 @@
.idea/
.sass-cache/ .sass-cache/
.scss-cache/ .scss-cache/
scss/.sass-cache/ scss/.sass-cache/
Expand Down
2 changes: 1 addition & 1 deletion admin/css/rtp-admin.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions admin/css/rtp-admin.scss
Expand Up @@ -48,9 +48,9 @@ $link-hover-color: #CD5A1B;
} }


/* Theme Option Container */ /* Theme Option Container */
.rtpanel-admin { overflow: hidden;width: 75%;position: relative;max-width: 1050px;font-size: 15px; // Self .rtpanel-admin.wrap { overflow: hidden;width: 75%;position: relative;max-width: 1050px;font-size: 15px; // Self
// Heading // Heading
h2 { border-bottom: 1px solid $gray; padding-bottom: 0; padding-left: 6px; } & > h2 { border-bottom: 1px solid $gray; padding-bottom: 0; padding-left: 6px; &.rtp-tab-wrapper { overflow: hidden; } }
} }


// rtPanel Icon // rtPanel Icon
Expand Down
4 changes: 2 additions & 2 deletions admin/js/rtp-admin.js
Expand Up @@ -33,11 +33,11 @@ jQuery(document).ready(function() {
jQuery('#normal-sortables .postbox').each( function(){ jQuery('#normal-sortables .postbox').each( function(){
if ( expand ) { if ( expand ) {
if( jQuery(this).hasClass('closed') ) { if( jQuery(this).hasClass('closed') ) {
jQuery(this).children('h3').trigger('click'); jQuery(this).children('.hndle').trigger('click');
} }
} else { } else {
if( !jQuery(this).hasClass('closed') ) { if( !jQuery(this).hasClass('closed') ) {
jQuery(this).children('h3').trigger('click'); jQuery(this).children('.hndle').trigger('click');
} }
} }
}); });
Expand Down

0 comments on commit 2809cd8

Please sign in to comment.