Changeset 2584433
- Timestamp:
- 08/17/2021 08:11:52 PM (5 years ago)
- Location:
- transact
- Files:
-
- 6 edited
- 6 copied
-
tags/5.5.1 (copied) (copied from transact/trunk)
-
tags/5.5.1/frontend/assets/style.css (copied) (copied from transact/trunk/frontend/assets/style.css) (2 diffs)
-
tags/5.5.1/frontend/assets/transact_post.js (copied) (copied from transact/trunk/frontend/assets/transact_post.js) (2 diffs)
-
tags/5.5.1/frontend/controllers/transact-handle-buttons.php (modified) (1 diff)
-
tags/5.5.1/frontend/controllers/transact-single-post.php (copied) (copied from transact/trunk/frontend/controllers/transact-single-post.php)
-
tags/5.5.1/readme.txt (copied) (copied from transact/trunk/readme.txt) (2 diffs)
-
tags/5.5.1/transact-plugin.php (copied) (copied from transact/trunk/transact-plugin.php) (1 diff)
-
trunk/frontend/assets/style.css (modified) (2 diffs)
-
trunk/frontend/assets/transact_post.js (modified) (2 diffs)
-
trunk/frontend/controllers/transact-handle-buttons.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/transact-plugin.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
transact/tags/5.5.1/frontend/assets/style.css
r2581765 r2584433 57 57 } 58 58 .transact-purchase_button 59 .transact_button_col { 59 .transact_button_container { 60 padding: 6px; 61 } 62 .transact-purchase_button 63 .transact_buttons { 60 64 margin-bottom: 5px; 61 65 display: inline-block; 62 } 63 66 margin-left: 10px; 67 } 68 64 69 .no-transact-warning { 65 70 display: none; … … 82 87 opacity: 0.7; 83 88 } 89 @media (max-width: 779px) { 90 .transact-purchase_button 91 .transact_buttons { 92 width: 100%; 93 margin-left: 0; 94 } 95 .transact-purchase_button 96 button.transact-purchase_button__loading { 97 width: 100%; 98 } 99 } 84 100 .transact-purchase_button 85 101 button.transact-purchase_button__loading -
transact/tags/5.5.1/frontend/assets/transact_post.js
r2581765 r2584433 12 12 console.error('Cannot set cookies'); 13 13 jQuery('#no_cookies_transact').css('display', 'block'); 14 jQuery('.transact_button_co l').css('display', 'none');14 jQuery('.transact_button_container').css('display', 'none'); 15 15 } 16 16 … … 31 31 if(tries > maxTries) { 32 32 jQuery('#no_transact').css('display', 'block'); 33 jQuery('.transact_button_co l').css('display', 'none');33 jQuery('.transact_button_container').css('display', 'none'); 34 34 clearInterval(transactInitCheck); 35 35 } -
transact/tags/5.5.1/frontend/controllers/transact-handle-buttons.php
r2439226 r2584433 223 223 } 224 224 225 $output .= '<div >';225 $output .= '<div class="transact_button_container">'; 226 226 for ($i = 0; $i < count($buttons); $i++) { 227 $output .= '<div class="transact_button _col">' . $buttons[$i] . '</div>';227 $output .= '<div class="transact_buttons">' . $buttons[$i] . '</div>'; 228 228 } 229 229 -
transact/tags/5.5.1/readme.txt
r2581765 r2584433 6 6 Requires PHP: 5.6 7 7 Tested up to: 5.8 8 Stable tag: 5.5. 08 Stable tag: 5.5.1 9 9 License: APACHE-2.0 10 10 License URI: https://www.apache.org/licenses/LICENSE-2.0 … … 83 83 84 84 85 = 5.5.1 = 86 * Update button styling 87 85 88 = 5.5.0 = 86 89 * Refactor loading of transact javascript. -
transact/tags/5.5.1/transact-plugin.php
r2581765 r2584433 3 3 * Plugin Name: transact.io 4 4 * Description: Integrates transact.io services into WP 5 * Version: 5.5. 05 * Version: 5.5.1 6 6 * Author: transact.io 7 7 * Author URI: https://transact.io 8 8 * Plugin URI: https://wordpress.org/plugins/transact/ 9 9 */ 10 define('TRANSACT_VERSION', '5.5. 0'); // Cache busting10 define('TRANSACT_VERSION', '5.5.1'); // Cache busting 11 11 12 12 /** -
transact/trunk/frontend/assets/style.css
r2581765 r2584433 57 57 } 58 58 .transact-purchase_button 59 .transact_button_col { 59 .transact_button_container { 60 padding: 6px; 61 } 62 .transact-purchase_button 63 .transact_buttons { 60 64 margin-bottom: 5px; 61 65 display: inline-block; 62 } 63 66 margin-left: 10px; 67 } 68 64 69 .no-transact-warning { 65 70 display: none; … … 82 87 opacity: 0.7; 83 88 } 89 @media (max-width: 779px) { 90 .transact-purchase_button 91 .transact_buttons { 92 width: 100%; 93 margin-left: 0; 94 } 95 .transact-purchase_button 96 button.transact-purchase_button__loading { 97 width: 100%; 98 } 99 } 84 100 .transact-purchase_button 85 101 button.transact-purchase_button__loading -
transact/trunk/frontend/assets/transact_post.js
r2581765 r2584433 12 12 console.error('Cannot set cookies'); 13 13 jQuery('#no_cookies_transact').css('display', 'block'); 14 jQuery('.transact_button_co l').css('display', 'none');14 jQuery('.transact_button_container').css('display', 'none'); 15 15 } 16 16 … … 31 31 if(tries > maxTries) { 32 32 jQuery('#no_transact').css('display', 'block'); 33 jQuery('.transact_button_co l').css('display', 'none');33 jQuery('.transact_button_container').css('display', 'none'); 34 34 clearInterval(transactInitCheck); 35 35 } -
transact/trunk/frontend/controllers/transact-handle-buttons.php
r2439226 r2584433 223 223 } 224 224 225 $output .= '<div >';225 $output .= '<div class="transact_button_container">'; 226 226 for ($i = 0; $i < count($buttons); $i++) { 227 $output .= '<div class="transact_button _col">' . $buttons[$i] . '</div>';227 $output .= '<div class="transact_buttons">' . $buttons[$i] . '</div>'; 228 228 } 229 229 -
transact/trunk/readme.txt
r2581765 r2584433 6 6 Requires PHP: 5.6 7 7 Tested up to: 5.8 8 Stable tag: 5.5. 08 Stable tag: 5.5.1 9 9 License: APACHE-2.0 10 10 License URI: https://www.apache.org/licenses/LICENSE-2.0 … … 83 83 84 84 85 = 5.5.1 = 86 * Update button styling 87 85 88 = 5.5.0 = 86 89 * Refactor loading of transact javascript. -
transact/trunk/transact-plugin.php
r2581765 r2584433 3 3 * Plugin Name: transact.io 4 4 * Description: Integrates transact.io services into WP 5 * Version: 5.5. 05 * Version: 5.5.1 6 6 * Author: transact.io 7 7 * Author URI: https://transact.io 8 8 * Plugin URI: https://wordpress.org/plugins/transact/ 9 9 */ 10 define('TRANSACT_VERSION', '5.5. 0'); // Cache busting10 define('TRANSACT_VERSION', '5.5.1'); // Cache busting 11 11 12 12 /**
Note: See TracChangeset
for help on using the changeset viewer.