Plugin Directory

Changeset 3311220


Ignore:
Timestamp:
06/13/2025 06:58:37 PM (10 months ago)
Author:
jrmoser
Message:

version 1.2.9

Location:
bin-tracker-online
Files:
3 edited
13 copied

Legend:

Unmodified
Added
Removed
  • bin-tracker-online/tags/1.2.9/bin-tracker-online.php

    r3310697 r3311220  
    88Plugin URI: https://www.bintracker.software/api/word-press-plugin.html
    99Description: The plug in provides integration with a private web application for Bin their Dump That, a franchisor in the waste hauling industry
    10 Version: 1.2.8
     10Version: 1.2.9
    1111Author: Cairn Applications Inc
    1212Author URI: https://www.cloud-computing.rocks/
  • bin-tracker-online/tags/1.2.9/javascript/address-validation-script.js

    r3310697 r3311220  
    3737          }
    3838
    39           let b1nT_address_suggestion_wrap                = document.createElement("div");
    40           b1nT_address_suggestion_wrap.style.maxHeight    = "300px";
    41           b1nT_address_suggestion_wrap.style.overflowY    = "auto";
    42           b1nT_address_suggestion_wrap.style.position     = "absolute";
    43           b1nT_address_suggestion_wrap.style.marginTop    = "1px";
    44           b1nT_address_suggestion_wrap.style.marginLeft   = "1px";
    45           b1nT_address_suggestion_wrap.style.borderRadius = "1px";
    46           b1nT_address_suggestion_wrap.style.width        = b1nT_address_data.config.searchCtrl.clientWidth+"px";
    47           b1nT_address_data.address_suggestion_wrap       = b1nT_address_suggestion_wrap;
     39          let b1nT_address_suggestion_wrap                   = document.createElement("div");
     40          b1nT_address_suggestion_wrap.style.maxHeight       = "300px";
     41          b1nT_address_suggestion_wrap.style.overflowY       = "auto";
     42          b1nT_address_suggestion_wrap.style.position        = "absolute";
     43          b1nT_address_suggestion_wrap.style.marginTop       = "1px";
     44          b1nT_address_suggestion_wrap.style.borderRadius    = "1px";
     45          b1nT_address_suggestion_wrap.style.backgroundColor = "#ffffff!important";
     46          b1nT_address_suggestion_wrap.style.width           = b1nT_address_data.config.searchCtrl.offsetWidth+"px";
     47          b1nT_address_data.address_suggestion_wrap          = b1nT_address_suggestion_wrap;
    4848          b1nT_address_data.config.searchCtrl.after(b1nT_address_suggestion_wrap);
     49
     50          //lets add an observer to the actual input, we are going
     51          //to make sure that the dropdown wrapper follows it in width
     52          let b0xT_resize_observer = new ResizeObserver(function(b0xT_elements) {
     53               clearTimeout(b1nT_address_data.resizeTimeout);
     54               b1nT_address_data.resizeTimeout = setTimeout(function(){
     55                    b1nT_address_suggestion_wrap.style.width = b1nT_address_data.config.searchCtrl.offsetWidth+"px";         
     56               }, 500);
     57          });
     58
     59          b0xT_resize_observer.observe(b1nT_address_data.config.searchCtrl);
    4960     
    5061          //setup event listensers on fields
     
    6071 
    6172                    b1nT_address_data._b1nT_get_suggestions(b1nT_address_data.config.searchCtrl.value);
     73                    b1nT_address_data.address_suggestion_wrap.style.boxShadow = "0px 0px 4px 1px #d2d2d2";
    6274               }, 500);
    6375          });
     
    6880                    if(!String(b1nT_address_data.config.searchCtrl.value).trim()) { return; }
    6981                    b1nT_address_data._b1nT_get_suggestions(b1nT_address_data.config.searchCtrl.value);
     82                    b1nT_address_data.address_suggestion_wrap.style.boxShadow = "0px 0px 4px 1px #d2d2d2";
    7083               }, 500);
    7184          });
     
    7588               b1nT_address_data.blurTimeOut = setTimeout(function() {
    7689                    b1nT_address_data.address_suggestion_wrap.innerHTML = "";
     90                    b1nT_address_data.address_suggestion_wrap.style.boxShadow = "none";
    7791               }, 500);
    7892          });
     
    145159               b1nT_input.style.color   = "#000000";
    146160
    147                if(b1nT_index < b1nT_suggestions_array.length) {
     161               if(b1nT_index < b1nT_suggestions_array.length - 1) {
    148162                    b1nT_input.style.borderBottom = "1px solid #d1cfcf";
    149163               }
     
    165179                    b1nT_address_data._b1nT_fill_in_address(b1nT_place_prediction);
    166180                    b1nT_address_data.address_suggestion_wrap.innerHTML = "";
     181                    b1nT_address_data.address_suggestion_wrap.style.boxShadow = "none";
    167182               }
    168183
  • bin-tracker-online/tags/1.2.9/readme.txt

    r3310697 r3311220  
    44Requires PHP: 5.6.4
    55Tested up to: 6.8
    6 Stable tag: 1.2.8
     6Stable tag: 1.2.9
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
  • bin-tracker-online/trunk/bin-tracker-online.php

    r3310697 r3311220  
    88Plugin URI: https://www.bintracker.software/api/word-press-plugin.html
    99Description: The plug in provides integration with a private web application for Bin their Dump That, a franchisor in the waste hauling industry
    10 Version: 1.2.8
     10Version: 1.2.9
    1111Author: Cairn Applications Inc
    1212Author URI: https://www.cloud-computing.rocks/
  • bin-tracker-online/trunk/javascript/address-validation-script.js

    r3310697 r3311220  
    3737          }
    3838
    39           let b1nT_address_suggestion_wrap                = document.createElement("div");
    40           b1nT_address_suggestion_wrap.style.maxHeight    = "300px";
    41           b1nT_address_suggestion_wrap.style.overflowY    = "auto";
    42           b1nT_address_suggestion_wrap.style.position     = "absolute";
    43           b1nT_address_suggestion_wrap.style.marginTop    = "1px";
    44           b1nT_address_suggestion_wrap.style.marginLeft   = "1px";
    45           b1nT_address_suggestion_wrap.style.borderRadius = "1px";
    46           b1nT_address_suggestion_wrap.style.width        = b1nT_address_data.config.searchCtrl.clientWidth+"px";
    47           b1nT_address_data.address_suggestion_wrap       = b1nT_address_suggestion_wrap;
     39          let b1nT_address_suggestion_wrap                   = document.createElement("div");
     40          b1nT_address_suggestion_wrap.style.maxHeight       = "300px";
     41          b1nT_address_suggestion_wrap.style.overflowY       = "auto";
     42          b1nT_address_suggestion_wrap.style.position        = "absolute";
     43          b1nT_address_suggestion_wrap.style.marginTop       = "1px";
     44          b1nT_address_suggestion_wrap.style.borderRadius    = "1px";
     45          b1nT_address_suggestion_wrap.style.backgroundColor = "#ffffff!important";
     46          b1nT_address_suggestion_wrap.style.width           = b1nT_address_data.config.searchCtrl.offsetWidth+"px";
     47          b1nT_address_data.address_suggestion_wrap          = b1nT_address_suggestion_wrap;
    4848          b1nT_address_data.config.searchCtrl.after(b1nT_address_suggestion_wrap);
     49
     50          //lets add an observer to the actual input, we are going
     51          //to make sure that the dropdown wrapper follows it in width
     52          let b0xT_resize_observer = new ResizeObserver(function(b0xT_elements) {
     53               clearTimeout(b1nT_address_data.resizeTimeout);
     54               b1nT_address_data.resizeTimeout = setTimeout(function(){
     55                    b1nT_address_suggestion_wrap.style.width = b1nT_address_data.config.searchCtrl.offsetWidth+"px";         
     56               }, 500);
     57          });
     58
     59          b0xT_resize_observer.observe(b1nT_address_data.config.searchCtrl);
    4960     
    5061          //setup event listensers on fields
     
    6071 
    6172                    b1nT_address_data._b1nT_get_suggestions(b1nT_address_data.config.searchCtrl.value);
     73                    b1nT_address_data.address_suggestion_wrap.style.boxShadow = "0px 0px 4px 1px #d2d2d2";
    6274               }, 500);
    6375          });
     
    6880                    if(!String(b1nT_address_data.config.searchCtrl.value).trim()) { return; }
    6981                    b1nT_address_data._b1nT_get_suggestions(b1nT_address_data.config.searchCtrl.value);
     82                    b1nT_address_data.address_suggestion_wrap.style.boxShadow = "0px 0px 4px 1px #d2d2d2";
    7083               }, 500);
    7184          });
     
    7588               b1nT_address_data.blurTimeOut = setTimeout(function() {
    7689                    b1nT_address_data.address_suggestion_wrap.innerHTML = "";
     90                    b1nT_address_data.address_suggestion_wrap.style.boxShadow = "none";
    7791               }, 500);
    7892          });
     
    145159               b1nT_input.style.color   = "#000000";
    146160
    147                if(b1nT_index < b1nT_suggestions_array.length) {
     161               if(b1nT_index < b1nT_suggestions_array.length - 1) {
    148162                    b1nT_input.style.borderBottom = "1px solid #d1cfcf";
    149163               }
     
    165179                    b1nT_address_data._b1nT_fill_in_address(b1nT_place_prediction);
    166180                    b1nT_address_data.address_suggestion_wrap.innerHTML = "";
     181                    b1nT_address_data.address_suggestion_wrap.style.boxShadow = "none";
    167182               }
    168183
  • bin-tracker-online/trunk/readme.txt

    r3310697 r3311220  
    44Requires PHP: 5.6.4
    55Tested up to: 6.8
    6 Stable tag: 1.2.8
     6Stable tag: 1.2.9
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset for help on using the changeset viewer.