Changeset 2834462
- Timestamp:
- 12/15/2022 01:31:13 PM (3 years ago)
- Location:
- heygov
- Files:
-
- 38 added
- 6 edited
-
tags/1.7.1 (added)
-
tags/1.7.1/README.md (added)
-
tags/1.7.1/assets (added)
-
tags/1.7.1/assets/badge-app-store.svg (added)
-
tags/1.7.1/assets/badge-play-store.png (added)
-
tags/1.7.1/assets/banner-mobile.jpg (added)
-
tags/1.7.1/assets/banner.jpg (added)
-
tags/1.7.1/assets/css (added)
-
tags/1.7.1/assets/css/heygov-admin.css (added)
-
tags/1.7.1/assets/css/heygov-site.css (added)
-
tags/1.7.1/assets/heygov-admin.js (added)
-
tags/1.7.1/assets/heygov-venues.js (added)
-
tags/1.7.1/assets/icon-ban.svg (added)
-
tags/1.7.1/assets/icon-cocktail.svg (added)
-
tags/1.7.1/assets/icon-fire.svg (added)
-
tags/1.7.1/assets/icon-hand-paper.svg (added)
-
tags/1.7.1/assets/icon-home.svg (added)
-
tags/1.7.1/assets/icon-paw.svg (added)
-
tags/1.7.1/assets/icon-sailboat.svg (added)
-
tags/1.7.1/assets/icon-tree.svg (added)
-
tags/1.7.1/heygov.php (added)
-
tags/1.7.1/includes (added)
-
tags/1.7.1/includes/class (added)
-
tags/1.7.1/includes/class/events-venues-integration.php (added)
-
tags/1.7.1/includes/class/heygov-resource.php (added)
-
tags/1.7.1/includes/class/heygov-settings.php (added)
-
tags/1.7.1/includes/view (added)
-
tags/1.7.1/includes/view/apps-banner.php (added)
-
tags/1.7.1/includes/view/show-heygov-muni-forms.php (added)
-
tags/1.7.1/includes/view/show-heygov-settings.php (added)
-
tags/1.7.1/includes/view/show-venue.php (added)
-
tags/1.7.1/pagebuilder-module (added)
-
tags/1.7.1/pagebuilder-module/button.svg (added)
-
tags/1.7.1/pagebuilder-module/heygov-pb-module.php (added)
-
tags/1.7.1/pagebuilder-module/includes (added)
-
tags/1.7.1/pagebuilder-module/includes/frontend.js.php (added)
-
tags/1.7.1/pagebuilder-module/includes/frontend.php (added)
-
tags/1.7.1/readme.txt (added)
-
trunk/assets/css/heygov-site.css (modified) (1 diff)
-
trunk/assets/heygov-venues.js (modified) (1 diff)
-
trunk/heygov.php (modified) (1 diff)
-
trunk/includes/class/heygov-resource.php (modified) (2 diffs)
-
trunk/includes/view/show-heygov-settings.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
heygov/trunk/assets/css/heygov-site.css
r2819292 r2834462 9 9 */ 10 10 11 .has-back-to-top .heygov-widget-button.bottom-right {11 .has-back-to-top-id .heygov-widget-button.bottom-right { 12 12 bottom: 80px !important; 13 13 } 14 .has-back-to-top-class .heygov-widget-button.bottom-right { 15 bottom: 80px; 16 right: 15px; 17 } 18 14 19 15 20 /* 1. HeyGov global styles*/ -
heygov/trunk/assets/heygov-venues.js
r2819292 r2834462 1 1 2 2 if (document.getElementById("back-to-top")) { 3 document.body.classList.add("has-back-to-top") 3 document.body.classList.add("has-back-to-top-id") 4 } 5 6 if (document.getElementsByClassName("back-to-top")) { 7 document.body.classList.add("has-back-to-top-class") 4 8 } 5 9 -
heygov/trunk/heygov.php
r2819292 r2834462 4 4 Plugin URI: https://heygov.com 5 5 Description: Manage the HeyGov widget on your municipality WordPress website 6 Version: 1.7. 06 Version: 1.7.1 7 7 Requires at least: 5.0 8 8 Requires PHP: 7.0 -
heygov/trunk/includes/class/heygov-resource.php
r2819292 r2834462 15 15 16 16 public function load_site_includes() { 17 wp_enqueue_style('heygov-site', HEYGOV_URL . 'assets/css/heygov-site.css', [], '1.7. 0');18 wp_enqueue_script('heygov-venues', HEYGOV_URL . 'assets/heygov-venues.js', [], '1.7. 0', true);17 wp_enqueue_style('heygov-site', HEYGOV_URL . 'assets/css/heygov-site.css', [], '1.7.1'); 18 wp_enqueue_script('heygov-venues', HEYGOV_URL . 'assets/heygov-venues.js', [], '1.7.1', true); 19 19 } 20 20 … … 24 24 if ($heygov_id) : 25 25 $heygov_features = get_option('heygov_features') ?: 'issues'; 26 $heygov_btn_text = get_option('heygov_btn_text') ?: ' Report an Issue';27 $heygov_btn_position = get_option('heygov_btn_position') ?: ' middle-right';26 $heygov_btn_text = get_option('heygov_btn_text') ?: 'Submit a request'; 27 $heygov_btn_position = get_option('heygov_btn_position') ?: 'bottom-right'; 28 28 $heygov_location_required = get_option('heygov_location_required') ?: 0; 29 29 $buttonStyle = $heygov_btn_position === 'none' ? '' : 'data-heygov-button-style="' . esc_attr($heygov_btn_position) . '"'; -
heygov/trunk/includes/view/show-heygov-settings.php
r2782717 r2834462 6 6 // widget info 7 7 $heygov_features = explode(',', get_option('heygov_features') ?: 'issues'); 8 $heygov_btn_text = get_option('heygov_btn_text') ?: ' Report an Issue';9 $heygov_btn_position = get_option('heygov_btn_position') ?: ' middle-right';8 $heygov_btn_text = get_option('heygov_btn_text') ?: 'Submit a request'; 9 $heygov_btn_position = get_option('heygov_btn_position') ?: 'bottom-right'; 10 10 $heygov_location_required = get_option('heygov_location_required') ?: 0; 11 11 -
heygov/trunk/readme.txt
r2819292 r2834462 5 5 Tested up to: 6.1 6 6 Requires PHP: 7.0 7 Stable tag: 1.7. 07 Stable tag: 1.7.1 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 36 36 37 37 == Changelog == 38 39 = 1.7.1 = 40 * Fixed - HeyGov widget button moves up on more sites with "Back to top" button 41 * Updated - Default button position to bottom right 38 42 39 43 = 1.7.0 =
Note: See TracChangeset
for help on using the changeset viewer.