Plugin Directory

Changeset 703574


Ignore:
Timestamp:
04/25/2013 05:04:50 PM (13 years ago)
Author:
joshua.strebel
Message:

cache buster

Location:
pagely-reseller-management/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • pagely-reseller-management/trunk/partner-api.php

    r702419 r703574  
    44Plugin URI: https://docs-api.pagely.com/reseller-plugin/
    55Description: For Pagely Resellers
    6 Version: 3.1.2
     6Version: 3.1.3
    77Author: joshua.strebel
    88Author URI: https://page.ly
     
    7878class PagelyApi {
    7979
    80  
     80   var $ver ='p3.1.3';
    8181   var $pagely_api_sec = '';
    8282   var $bypass_pagely_varnish = true;       // if running on page.ly, need to bypass varnish
    8383   
    8484   var $live_endpoint           = 'https://api.pagely.com/v1';
    85   // var $sandbox_endpoint      = 'https://sandbox-api.pagely.com/v1';
    86   var $sandbox_endpoint        = 'http://api.hcs/v1';
     85  var $sandbox_endpoint        = 'https://sandbox-api.pagely.com/v1';
     86  // var $sandbox_endpoint      = 'http://api.hcs/v1';
    8787
    8888
     
    199199                wp_deregister_script( 'jquery-validate' );
    200200                wp_register_script( 'jquery-validate', $api_val , 'jquery');           
    201                 wp_register_script( 'pp-form-js', $api_js, 'jquery');       
    202                 wp_register_script( 'pp-options', $api_options, 'jquery'); 
     201                wp_register_script( 'pp-form-js', $api_js, 'jquery',$this->ver);       
     202                wp_register_script( 'pp-options', $api_options, 'jquery',$this->ver);   
    203203               
    204204                wp_enqueue_script( 'jquery' );
  • pagely-reseller-management/trunk/readme.txt

    r702419 r703574  
    2020Read [the documentation here](https://docs-api.pagely.com/reseller-plugin/).
    2121== Changelog ==
     22= 3.1.3 =
     23Cache buster for .js enqueued files.
    2224= 3.1.2 =
    2325Proper use of nounces, some code cleanup.
Note: See TracChangeset for help on using the changeset viewer.