Plugin Directory

Changeset 2211412


Ignore:
Timestamp:
12/13/2019 09:32:03 AM (6 years ago)
Author:
bookwize
Message:

ibe/vendors scripts version update

Location:
bookwize-integrated-booking-engine
Files:
170 added
3 edited

Legend:

Unmodified
Added
Removed
  • bookwize-integrated-booking-engine/trunk/README.txt

    r2176737 r2211412  
    9292= 2.5.2 =
    9393updates on how scripts are enqueued
     94
     95= 2.5.3 =
     96ibe/vendors scripts update
  • bookwize-integrated-booking-engine/trunk/bookwize-integrated.php

    r2176737 r2211412  
    1717 * Plugin URI:        https://www.bookwize.com/
    1818 * Description:       This is a short description of what the plugin does. It's displayed in the WordPress admin area.
    19  * Version:           2.5.2
     19 * Version:           2.5.3
    2020 * Author:            Bookwize
    2121 * Author URI:        https://www.bookwize.com/
  • bookwize-integrated-booking-engine/trunk/public/class-bookwize-public.php

    r2176743 r2211412  
    6767        'apiKey' => '',
    6868        'apiBaseUrl' => 'https://app.bookwize.com/api/v1.4',
     69        'pluginVersion' => '2.5.3'
    6970    ];
    7071
     
    190191         */
    191192
    192         wp_register_script($this->bookwize . '-vendors', 'https://bookwizecdn.azureedge.net/vendors/vendors-1.9.min.js', [], false, true);
    193         wp_register_script($this->bookwize . '-app', 'https://bookwizecdn.azureedge.net/app/ibe-5.3.6.min.js', [$this->bookwize . '-vendors'], false, true);
     193        wp_register_script($this->bookwize . '-vendors', 'https://bookwizecdn.azureedge.net/vendors/vendors-1.10.min.js', [], false, true);
     194        wp_register_script($this->bookwize . '-app', 'https://bookwizecdn.azureedge.net/app/ibe-5.3.12.min.js', [$this->bookwize . '-vendors'], false, true);
    194195        wp_register_script($this->bookwize . '-site', plugin_dir_url(__FILE__) . 'js/bookwize-public.min.js', [
    195196            $this->bookwize . '-app',
     
    319320
    320321    protected function force_ssl()
    321     {   return;
     322    {   
    322323        if (is_ssl() === false) {
    323324            wp_redirect('https://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'], 301);
Note: See TracChangeset for help on using the changeset viewer.