Changeset 368387
- Timestamp:
- 04/03/2011 04:47:32 PM (15 years ago)
- Location:
- hrecipe/branches/media-popup
- Files:
-
- 4 edited
-
readme.txt (modified) (1 diff)
-
view/hrecipe_form_body.php (modified) (4 diffs)
-
view/hrecipe_form_head.php (modified) (1 diff)
-
view/lightbox.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
hrecipe/branches/media-popup/readme.txt
r368380 r368387 93 93 * Fixed index error associated with null index in GET for donation support 94 94 * Updated css to match current WordPress media popup for tabs, much cleaner now 95 * Synchronised bottom button navigation with sidemenu tabs 96 * Reorganized the bottom button navigation 95 97 96 98 = 0.5.4.5 = -
hrecipe/branches/media-popup/view/hrecipe_form_body.php
r368380 r368387 35 35 </table> 36 36 37 <ul class="tabs " style="margin-top:50px; border:0; background:transparent;">38 <li class="btmtabs"><a href="#tab-2">Next</a></li>39 <li class="btmtabs" style="float:right; display:inline;"><a href="#" onclick="javascript:submitForm()">Insert</a></li>40 </ul>37 <ul class="tabs bottom"> 38 <li class="btmtabs" style="float:right; display:inline;"><a href="#tab-2">Next</a></li> 39 </ul> 40 41 41 </div> 42 42 … … 55 55 </tr> 56 56 </table> 57 <ul class="tabs" style="margin-top:50px; border:0; background:transparent;"> 58 <li class="btmtabs"><a href="#tab-1">Back</a></li> 59 <li class="btmtabs"><a href="#tab-3">Next</a></li> 60 <li class="btmtabs" style="float:right; display:inline;"><a href="#" onclick="javascript:submitForm()">Insert</a></li> 61 </ul> 57 58 <ul class="tabs bottom"> 59 <li class="btmtabs"><a href="#tab-1">Back</a></li> 60 <li class="btmtabs" style="float:right; display:inline;"><a href="#tab-3">Next</a></li> 61 </ul> 62 62 63 </div> 63 64 … … 78 79 79 80 </table> 80 <ul class="tabs" style="margin-top:50px; border:0; background:transparent;"> 81 <li class="btmtabs"><a href="#tab-2">Back</a></li> 82 <li class="btmtabs"><a href="#tab-4">Next</a></li> 83 <li class="btmtabs" style="float:right; display:inline;"><a href="#" onclick="javascript:submitForm()">Insert</a></li> 84 </ul> 81 <ul class="tabs bottom"> 82 <li class="btmtabs"><a href="#tab-2">Back</a></li> 83 <li class="btmtabs" style="float:right; display:inline;"><a href="#tab-4">Next</a></li> 84 </ul> 85 85 </div> 86 86 … … 218 218 </tr> 219 219 </table> 220 <ul class="tabs " style="margin-top:50px; border:0; background:transparent;">221 <li class="btmtabs"><a href="#tab-3">Back</a></li>220 <ul class="tabs bottom"> 221 <li class="btmtabs"><a href="#tab-3">Back</a></li> 222 222 <li class="btmtabs" style="float:right; display:inline;"><a href="#" onclick="javascript:submitForm()">Insert</a></li> 223 </ul>223 </ul> 224 224 </div> 225 225 </form> -
hrecipe/branches/media-popup/view/hrecipe_form_head.php
r368380 r368387 1 <?php 2 /** 3 * Will contain <head> for media popup 4 */ 5 ?> -
hrecipe/branches/media-popup/view/lightbox.php
r368380 r368387 122 122 123 123 124 ul.tabs.bottom { 125 background-color: transparent; 126 margin-top: 50px; 127 border: 0px; 128 } 124 129 125 130 ul.tabs li.btmtabs { … … 308 313 // Handle the bottom tabs. 309 314 jQuery("ul.tabs li.btmtabs a").click(function() { 310 alert("Bottom tab clicked " + this);315 //alert("Bottom tab clicked " + this); 311 316 var activeTab = jQuery(this).attr("href"); //Find the rel attribute value to identify the active tab + content 312 alert("Active tab: " + activeTab);317 //alert("Active tab: " + activeTab); 313 318 jQuery("ul.tabs li a").removeClass("current"); 314 alert("ul.tabs li a."+activeTab.substring(1));319 //alert("ul.tabs li a."+activeTab.substring(1)); 315 320 jQuery("ul.tabs li a."+activeTab.substring(1)).addClass("current"); 316 321 jQuery(".tab_content").hide(); //Hide all tab content
Note: See TracChangeset
for help on using the changeset viewer.