-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DV-6736 - Fixed an issue with clearing the mobile search field and reloading the result set correctly. Also fixed the missing clear icon in the mobile search field. DV-6728 - Fixed Anatomical diagram overlaying exercise details. Added a min-height in conjunction with height 100% to ensure the containing div for the anatomical model is tall enough.
- Loading branch information
1 parent
d4a8499
commit 8d5bb44
Showing
4 changed files
with
9 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/** | ||
* PTLINKED Plugin - Exercise Program Library | ||
* Customer: MDVIP | ||
* Version: 1.0.2 | ||
* Version: 1.0.7 | ||
* Author: Mike Frank (PTLINKED, LLC.) - [email protected] | ||
* | ||
* Table of Contents | ||
|
@@ -1319,6 +1319,8 @@ | |
__page_request_values["v"] = $.trim( inp.val( ) ) ; | ||
if( __page_request_values["v"] == "" ) { | ||
inp.val( "" ) ; | ||
current_index = 0 ; | ||
routeQuery( ) ; | ||
if( h_search_bar_clear.hasClass( "active" ) ) { | ||
h_search_bar_clear.removeClass( "active" ) ; | ||
} | ||
|
@@ -1337,6 +1339,8 @@ | |
__page_request_values["v"] = $.trim( m_inp.val( ) ) ; | ||
if( __page_request_values["v"] == "" ) { | ||
m_inp.val( "" ) ; | ||
current_index = 0 ; | ||
routeQuery( ) ; | ||
if( mh_search_bar_clear.hasClass( "active" ) ) { | ||
mh_search_bar_clear.removeClass( "active" ) ; | ||
} | ||
|
@@ -2060,7 +2064,7 @@ | |
// '</button>' + | ||
//'</div>' + | ||
'<input label="search" type="text" class="form-control search-input__search-container" id="mheader-search" placeholder="Find an exercise program">' + | ||
//'<div class="mheader-search-bar-clear" title="Clear search">X</div>' + | ||
'<div class="mheader-search-bar-clear" title="Clear search">X</div>' + | ||
'<div class="input-group-append">' + | ||
'<button class="btn btn-secondary search-input__search-button" id="ptl-mobile_search_button" type="button">' + | ||
'<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18" class="icon icon--search">' + | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.