Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to version 2.1.0 #317

Merged
merged 40 commits into from
Sep 10, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
e7a1caf
Merge branch 'master' into development
shrimp2t Jun 11, 2018
8eec693
Fixed #289, fixed #302
shrimp2t Jun 11, 2018
d18a47b
Remove admin notice
shrimp2t Jun 11, 2018
2696151
Correct HTML attribute
shrimp2t Jun 11, 2018
8551a4e
update js
shrimp2t Jun 11, 2018
189ae0a
Add alt title for gallery images, #299
shrimp2t Jun 11, 2018
062d1f2
Update get image alt text
shrimp2t Jun 11, 2018
c9aadc9
Release new version
shrimp2t Jun 11, 2018
dc31ca8
add feature section image alt ext
congthien Jun 15, 2018
ac9ae0c
Fix issue customize text not working
shrimp2t Jun 18, 2018
a33dcfc
add videolightbox background image alt text
congthien Jun 19, 2018
ef06531
the vk.com website is running in https now
congthien Aug 31, 2018
bdc4479
Re-structure customize files
shrimp2t Sep 7, 2018
72d185d
Add Service content souce close #316
congthien Sep 7, 2018
b42e49e
Improve New Sections, fixed #296, fixed #315
shrimp2t Sep 7, 2018
6a4a5d9
Merge branch 'development' of https://github.com/FameThemes/onepress …
shrimp2t Sep 7, 2018
af109e2
Disable the archive prefix fixed #294
shrimp2t Sep 7, 2018
40ab068
Remove tgmpa config
shrimp2t Sep 7, 2018
a16f794
Add select page for News button close #305
congthien Sep 7, 2018
1b2fbed
update more new button link description
congthien Sep 7, 2018
82fada0
update changelog
congthien Sep 7, 2018
cdf66dc
Fixed #305
shrimp2t Sep 7, 2018
7472ac3
improve the Read Mores News condition
congthien Sep 7, 2018
b88139f
update changelog
congthien Sep 7, 2018
8b9e78c
Add upsell message for sections settings, fixed #313
shrimp2t Sep 7, 2018
57797b5
Split options file
shrimp2t Sep 7, 2018
10207c2
Add dotted navigation. fixed #312
shrimp2t Sep 8, 2018
6e68cf9
Split controls file
shrimp2t Sep 8, 2018
fd0f3a6
Rename sections #312
shrimp2t Sep 8, 2018
6afffe4
Update #312
shrimp2t Sep 8, 2018
40b9169
Udpate changelog
shrimp2t Sep 8, 2018
2c4a97f
Update default enable sections
shrimp2t Sep 8, 2018
128d660
Improve dots naviation #312
shrimp2t Sep 8, 2018
7351a61
Remove js log and add function comments #312
shrimp2t Sep 8, 2018
b32dcb9
Update #312
shrimp2t Sep 8, 2018
3683216
Update #312
shrimp2t Sep 8, 2018
0c50a8c
Update #312
shrimp2t Sep 8, 2018
e88be93
Update customize live css
shrimp2t Sep 10, 2018
12647fe
Update customize preview css
shrimp2t Sep 10, 2018
4be1b34
Update sections navigation settings
shrimp2t Sep 10, 2018
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,6 @@ module.exports = function( grunt ) {
grunt.loadNpmTasks( 'grunt-contrib-cssmin' );
grunt.loadNpmTasks('grunt-contrib-uglify');


grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-contrib-compress');
Expand Down
11 changes: 11 additions & 0 deletions assets/css/customizer.css
Original file line number Diff line number Diff line change
Expand Up @@ -565,3 +565,14 @@ body .wp-full-overlay{
text-indent: 0;
text-align: center;
}

.onepress-c-heading {
padding: 5px 12px;
background: #BBBBBB;
margin: 10px -12px 2px;
text-transform: uppercase;
letter-spacing: 2px;
font-weight: 500;
font-size: 12px;
color: #FFFFFF;
}
16 changes: 13 additions & 3 deletions assets/js/customizer-liveview.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,20 @@
} );
} );

$( window ).resize( function(){
var css_code = $( '#onepress-style-inline-css' ).html();
function update_css( ){
var css_code = $( '#onepress-style-inline-css' ).html();
// Fix Chrome Lost CSS When resize ??
$( '#onepress-style-inline-css' ).html( css_code );
$( '#onepress-style-inline-css' ).replaceWith( '<style class="replaced-style" id="onepress-style-inline-css">'+css_code+'</style>' );

}

// When preview ready
wp.customize.bind( 'preview-ready', function() {
update_css();
});

$( window ).resize( function(){
update_css();
});


Expand Down
Loading