Changeset 878437
- Timestamp:
- 03/20/2014 12:58:57 AM (12 years ago)
- Location:
- bracketpress
- Files:
-
- 43 added
- 3 edited
-
tags/1.6.1/readme.txt (modified) (1 diff)
-
tags/1.6.2 (added)
-
tags/1.6.2/assets (added)
-
tags/1.6.2/bracketpress-config.php (added)
-
tags/1.6.2/bracketpress.php (added)
-
tags/1.6.2/includes (added)
-
tags/1.6.2/includes/admin (added)
-
tags/1.6.2/includes/admin/admin.php (added)
-
tags/1.6.2/includes/admin/settings.php (added)
-
tags/1.6.2/includes/classes (added)
-
tags/1.6.2/includes/classes/bracketpresshooks.php (added)
-
tags/1.6.2/includes/core (added)
-
tags/1.6.2/includes/core/actions.php (added)
-
tags/1.6.2/includes/core/options.php (added)
-
tags/1.6.2/includes/core/subactions.php (added)
-
tags/1.6.2/includes/models (added)
-
tags/1.6.2/includes/models/match.php (added)
-
tags/1.6.2/includes/models/queries.php (added)
-
tags/1.6.2/install (added)
-
tags/1.6.2/install/install.php (added)
-
tags/1.6.2/install/install.sql.php (added)
-
tags/1.6.2/lib (added)
-
tags/1.6.2/lib/ajax.php (added)
-
tags/1.6.2/lib/bracketpress-shortcodes.php (added)
-
tags/1.6.2/lib/bracketpress-widgets.php (added)
-
tags/1.6.2/lib/functions.php (added)
-
tags/1.6.2/media (added)
-
tags/1.6.2/media/css (added)
-
tags/1.6.2/media/css/bracket.css (added)
-
tags/1.6.2/media/css/bracket_readonly.css (added)
-
tags/1.6.2/media/css/jquery-ui-theme.css (added)
-
tags/1.6.2/media/images (added)
-
tags/1.6.2/media/images/Button-Add-icon.png (added)
-
tags/1.6.2/media/images/ajax-loader.gif (added)
-
tags/1.6.2/media/images/region_key.png (added)
-
tags/1.6.2/readme.txt (added)
-
tags/1.6.2/templates (added)
-
tags/1.6.2/templates/addons.php (added)
-
tags/1.6.2/templates/bracket_display.php (added)
-
tags/1.6.2/templates/bracket_edit.js (added)
-
tags/1.6.2/templates/bracket_edit.php (added)
-
tags/1.6.2/templates/changepositions.php (added)
-
tags/1.6.2/templates/locations.php (added)
-
tags/1.6.2/templates/teams.php (added)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/templates/bracket_edit.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
bracketpress/tags/1.6.1/readme.txt
r876929 r878437 51 51 52 52 == Changelog == 53 54 = 1.6.1 = 55 * Fixed issue with Final Four game matches not being correct. 53 56 54 57 = 1.6.0 = -
bracketpress/trunk/readme.txt
r873847 r878437 51 51 52 52 == 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. 53 59 54 60 = 1.6.0 = … … 138 144 * Jason Melgoza ( CSS of Bracket ) 139 145 * Brandon Kraft 146 * Don Hansen ( Logo ) 147 * Patrick Godbey 148 * Jermaine Watkins 140 149 -
bracketpress/trunk/templates/bracket_edit.js
r876929 r878437 1 2 1 (function($) { // Undo noConflict() 3 2 … … 451 450 // Save the current winner if we have one 452 451 winner = $('#get_team_selector_match61').val(); 453 //$('#get_team_selector_match61').html('<option value="0">~Select~</option>'); // clear the select box452 $('#get_team_selector_match61').html('<option value="0">~Select~</option>'); // clear the select box 454 453 455 454 // 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 ); 458 457 459 458 // Save the current winner if we have one 460 459 winner = $('#get_team_selector_match62').val(); 461 //$('#get_team_selector_match62').html('<option value="0">~Select~</option>'); // clear the select box460 $('#get_team_selector_match62').html('<option value="0">~Select~</option>'); // clear the select box 462 461 463 462 // 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 ); 466 465 467 466 // Clear and create the final round
Note: See TracChangeset
for help on using the changeset viewer.