Plugin Directory

Changeset 1854937


Ignore:
Timestamp:
04/08/2018 08:43:27 PM (8 years ago)
Author:
svrooij
Message:

Committing 0.0.7 to trunk

Location:
geocoded-posts/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • geocoded-posts/trunk/geocoded-posts.php

    r1854920 r1854937  
    1111 * Plugin URI:          https://github.com/svrooij/wp-geocoded-posts
    1212 * Description:         Widget with geocoded posts and editing geo location on a post.
    13  * Version:             0.0.6
     13 * Version:             0.0.7
    1414 * Author:              Stephan van Rooij
    1515 * Author URI:          https://svrooij.nl
     
    2626    *
    2727    */
    28   const VERSION = '0.0.6';
     28  const VERSION = '0.0.7';
    2929
    3030   /**
  • geocoded-posts/trunk/js/widget.js

    r1854920 r1854937  
    11jQuery(document).ready(function ($) {
    22  var baseUrl = $('link[rel="https://api.w.org/"]').attr('href')
    3   $('.widget_geocoded_posts_widget').each(function (key, value) {
    4     var ul = $(this).first('ul')
     3  $('.widget_geocoded_posts_widget ul').each(function (key, value) {
     4    var ul = $(this)
    55    var count = parseInt(ul.attr('data-count'))
    6     var author = (ul.attr('data-author') === 'true')
     6    var author = (ul.attr('data-author') === '1')
    77    var url = baseUrl + 'geocoded-posts/v1/basic'
    88    $.getJSON(url, function (data, status, jqXHR) {
  • geocoded-posts/trunk/readme.txt

    r1854920 r1854937  
    55Requires at least: 4.4
    66Tested up to: 4.9.5
    7 Stable tag: 0.0.6
     7Stable tag: 0.0.7
    88License: MIT
    99License URI: https://raw.githubusercontent.com/svrooij/wp-geocoded-posts/master/LICENSE
     
    4545== Changelog ==
    4646
    47 = 0.0.6 =
     47= 0.0.7 =
    4848* Remove numbers from formatted address.
    4949* Option to show author in widget.
Note: See TracChangeset for help on using the changeset viewer.