Plugin Directory

Changeset 476641


Ignore:
Timestamp:
12/17/2011 02:32:13 AM (14 years ago)
Author:
claytantor
Message:

Bug 365 - https calls should be used for enqueue.

Location:
welocally-places/trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • welocally-places/trunk/options/options-general.php

    r473697 r476641  
    6565
    6666<?php if(is_subscribed()):?>
    67 <link type="text/css" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/themes/base/jquery-ui.css" rel="stylesheet" />
     67<link type="text/css" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/themes/base/jquery-ui.css" rel="stylesheet" />
    6868<style>
    6969    #selectable { list-style-type: none; margin: 0; padding: 0; width: 100%; }
  • welocally-places/trunk/views/includes/category-map-include.php

    r473697 r476641  
    105105
    106106</style>
    107 <link type="text/css" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/themes/base/jquery-ui.css" rel="stylesheet" />         
     107<link type="text/css" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/themes/base/jquery-ui.css" rel="stylesheet" />           
    108108<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/jquery-ui.min.js"></script>
    109109<script type="text/javascript" charset="utf-8">
  • welocally-places/trunk/views/places-meta-box.php

    r473697 r476641  
    1 <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.5/jquery-ui.min.js"></script>
     1<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.5/jquery-ui.min.js"></script>
    22<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.5/themes/smoothness/jquery-ui.css" type="text/css" />
    33<script type="text/javascript" charset="utf-8">
  • welocally-places/trunk/welocally-places-settings.php

    r473697 r476641  
    6262              'length' => "256",
    6363              'suffix' => "",
    64               'default_value' => "http://www.google.com/mapfiles/marker.png"
     64              'default_value' => "https://www.google.com/mapfiles/marker.png"
    6565              ),
    6666         'css' => array (
  • welocally-places/trunk/welocally-places.class.php

    r476637 r476641  
    66    class WelocallyPlaces {
    77       
    8         const VERSION               = '1.0.14';
     8        const VERSION               = '1.0.15';
    99        const WLERROROPT            = '_welocally_errors';
    1010        const CATEGORYNAME          = 'Place';
     
    161161           
    162162            //app stuff
    163             wp_enqueue_script('google-maps' , 'http://maps.google.com/maps/api/js?sensor=true' , false , '3');
     163            wp_enqueue_script('google-maps' , 'https://maps.google.com/maps/api/js?sensor=true' , false , '3');
    164164            wp_enqueue_script('sp-places-script', $placesURL.'places.js', array('jquery') );
    165165            if( locate_template( array('places/places.css') ) ) {
     
    177177            $fontList = $this->makeUniqueGoogleFontList($fonts);
    178178                         
    179             wp_enqueue_style( 'wl_font_list', 'http://fonts.googleapis.com/css?family='.$fontList );
     179            wp_enqueue_style( 'wl_font_list', 'https://fonts.googleapis.com/css?family='.$fontList );
    180180                       
    181181            //admin stuff
  • welocally-places/trunk/welocally-places.php

    r476637 r476641  
    55Plugin URI: http://www.welocally.com/wordpress/?page_id=2
    66Description: The Welocally Places plugin lets easily associate places for our 21M POI database without geocoding. The map widget makes it easy for your users to find the places your are writing about on a map.
    7 Version: 1.0.14
     7Version: 1.0.15
    88Author: Welocally Inc.
    99Author URI: http://welocally.com
Note: See TracChangeset for help on using the changeset viewer.