Plugin Directory

Changeset 1028509


Ignore:
Timestamp:
11/19/2014 10:25:17 AM (11 years ago)
Author:
nicolasfox
Message:

got delete working and update button color and text size

Location:
gps-tracker/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • gps-tracker/trunk/gpstracker.php

    r1026546 r1028509  
    1313 * Plugin URI:        https://www.websmithing.com/gps-tracker
    1414 * Description:       Track your Android cell phone in real time and store routes for later viewing.
    15  * Version:           1.0.0
     15 * Version:           1.0.1
    1616 * Author:            Nick Fox
    1717 * Author URI:        https://www.websmithing.com/hire-me
     
    2828// Plugin version
    2929if ( ! defined( 'GPSTRACKER_VERSION' ) ) {
    30     define( 'GPSTRACKER_VERSION', '1.0.0' );
     30    define( 'GPSTRACKER_VERSION', '1.0.1' );
    3131}
    3232
  • gps-tracker/trunk/public/assets/css/light.css

    r1026546 r1028509  
    6868}
    6969#autorefresh {
     70    background: #eee !important;
     71    font-size: 11px !important;
    7072    margin-top:5px;
    7173    width: 100%;
     
    7577}
    7678#delete {
     79    background: #eee !important;   
     80    font-size: 11px !important;
    7781    margin-top:5px;       
    7882    width: 100%;
     
    8185}
    8286#refresh {
     87    background: #eee !important;
     88    font-size: 11px !important;
    8389    margin-top:5px;     
    8490    width: 100%;
     
    8793}
    8894#viewall {
     95    background: #eee !important;
     96    font-size: 11px !important;
    8997    margin-top:5px;     
    9098    width: 100%;
  • gps-tracker/trunk/public/assets/js/gpstracker-map.js

    r1026546 r1028509  
    355355    function deleteRoute() {
    356356        // comment out these two lines to get delete working
    357         var answer = confirm("Disabled here on test website, this works fine.");
    358         return false;
     357        // var answer = confirm("Disabled here on test website, this works fine.");
     358        // return false;
    359359       
    360360        var answer = confirm('This will permanently delete this route\n from the database. Do you want to delete?');
  • gps-tracker/trunk/readme.txt

    r1026569 r1028509  
    77Requires at least: 4.0
    88Tested up to: 4.0
    9 Stable tag: 1.0.0
     9Stable tag: 1.0.1
    1010License: GPLv2 or later
    1111License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    6767== Changelog ==
    6868
     69= 1.0.1, November 10, 2014 =
     70
     71* Enabled deleting routes
     72* Fixed button color
     73
    6974= 1.0.0, October 27, 2014 =
    7075
     
    7378== Upgrade Notice ==
    7479
     80= 1.0.1, November 10, 2014 =
     81
     82* Enabled deleting routes
     83* Fixed button color
     84
    7585= 1.0.0, October 27, 2014 =
    7686
Note: See TracChangeset for help on using the changeset viewer.