Plugin Directory

Changeset 878437


Ignore:
Timestamp:
03/20/2014 12:58:57 AM (12 years ago)
Author:
scotthack
Message:

Fixed Final Four games that were not populating.

Location:
bracketpress
Files:
43 added
3 edited

Legend:

Unmodified
Added
Removed
  • bracketpress/tags/1.6.1/readme.txt

    r876929 r878437  
    5151
    5252== Changelog ==
     53
     54= 1.6.1 =
     55* Fixed issue with Final Four game matches not being correct.
    5356
    5457= 1.6.0 =
  • bracketpress/trunk/readme.txt

    r873847 r878437  
    5151
    5252== Changelog ==
     53
     54= 1.6.2 =
     55* Fixed issue with Final Four game matches not populating.
     56
     57= 1.6.1 =
     58* Fixed issue with Final Four game matches not being correct.
    5359
    5460= 1.6.0 =
     
    138144* Jason Melgoza ( CSS of Bracket )
    139145* Brandon Kraft
     146* Don Hansen ( Logo )
     147* Patrick Godbey
     148* Jermaine Watkins
    140149
  • bracketpress/trunk/templates/bracket_edit.js

    r876929 r878437  
    1 
    21(function($) { // Undo noConflict()
    32
     
    451450        // Save the current winner if we have one
    452451        winner = $('#get_team_selector_match61').val();
    453         //$('#get_team_selector_match61').html('<option value="0">~Select~</option>');       // clear the select box
     452        $('#get_team_selector_match61').html('<option value="0">~Select~</option>');       // clear the select box
    454453
    455454        // Add the items
    456         //set_team(61, 1, $('#get_team_selector_midwest_match60').val(), winner );
    457         //set_team(61, 2, $('#get_team_selector_west_match30').val(), winner );
     455        set_team(61, 1, $('#get_team_selector_midwest_match60').val(), winner );
     456        set_team(61, 2, $('#get_team_selector_west_match30').val(), winner );
    458457
    459458        // Save the current winner if we have one
    460459        winner = $('#get_team_selector_match62').val();
    461         //$('#get_team_selector_match62').html('<option value="0">~Select~</option>');       // clear the select box
     460        $('#get_team_selector_match62').html('<option value="0">~Select~</option>');       // clear the select box
    462461
    463462        // Add the items
    464        // set_team(62, 1, $('#get_team_selector_south_match15').val(), winner );
    465        // set_team(62, 2, $('#get_team_selector_east_match45').val(), winner );
     463        set_team(62, 1, $('#get_team_selector_south_match15').val(), winner );
     464        set_team(62, 2, $('#get_team_selector_east_match45').val(), winner );
    466465
    467466        // Clear and create the final round
Note: See TracChangeset for help on using the changeset viewer.