Plugin Directory

Changeset 590689


Ignore:
Timestamp:
08/27/2012 12:03:54 AM (13 years ago)
Author:
bholub
Message:

adjusting counter position, handling click directly on counter

Location:
wodtogether-whiteboards/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • wodtogether-whiteboards/trunk/readme.txt

    r590681 r590689  
    44Requires at least: 3.0
    55Tested up to: 3.4
    6 Stable tag: 2.0.5
     6Stable tag: 2.0.6
    77License: GPLv2
    88
     
    2222
    2323== Changelog ==
     24= 2.0.6 =
     25* adjusting counter position, handling click directly on counter
     26
    2427= 2.0.5 =
    2528* adding counter to whiteboard button for number of users who have posted
  • wodtogether-whiteboards/trunk/wodtogether-whiteboards.css

    r590681 r590689  
    1616/* twBootstrap button css */
    1717#wodtogether_wbs .btn {
     18  position: relative;
    1819  text-decoration: none; /* added */
    1920  display: inline-block;
     
    303304background-color: #3A87AD;
    304305
    305 position: relative;
     306position: absolute;
    306307top: -6px;
    307 right: -6px;
    308 }
     308right: -12px;
     309}
  • wodtogether-whiteboards/trunk/wodtogether-whiteboards.js

    r562783 r590689  
    66        e.preventDefault();
    77        var wb_container = jQuery(e.target);
     8        if (wb_container.hasClass('wodtogether_wb_badge')) {
     9            wb_container = wb_container.parent();
     10        }
    811        var wb_date = wb_container.data('date');
    912        var wb_gymid = wb_container.data('gymid');
Note: See TracChangeset for help on using the changeset viewer.