fixing the app.js to become tabs.js and refactoring based on some awesome input from napcs on github
This commit is contained in:
parent
a06ce03310
commit
a853af7018
@ -1,4 +1,4 @@
|
|||||||
<!doctype html>
|
<!DOCTYPE html>
|
||||||
<!--[if lt IE 7 ]><html class="ie ie6" lang="en"> <![endif]-->
|
<!--[if lt IE 7 ]><html class="ie ie6" lang="en"> <![endif]-->
|
||||||
<!--[if IE 7 ]><html class="ie ie7" lang="en"> <![endif]-->
|
<!--[if IE 7 ]><html class="ie ie7" lang="en"> <![endif]-->
|
||||||
<!--[if IE 8 ]><html class="ie ie8" lang="en"> <![endif]-->
|
<!--[if IE 8 ]><html class="ie ie8" lang="en"> <![endif]-->
|
||||||
@ -76,9 +76,8 @@
|
|||||||
|
|
||||||
<!-- JS
|
<!-- JS
|
||||||
================================================== -->
|
================================================== -->
|
||||||
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.js"></script>
|
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
|
||||||
<script>window.jQuery || document.write("<script src='javascripts/jquery-1.5.1.min.js'>\x3C/script>")</script>
|
<script src="javascripts/tabs.js" type="text/javascript"></script>
|
||||||
<script src="javascripts/app.js"></script>
|
|
||||||
|
|
||||||
<!-- End Document
|
<!-- End Document
|
||||||
================================================== -->
|
================================================== -->
|
||||||
|
@ -1,42 +0,0 @@
|
|||||||
/*
|
|
||||||
* Skeleton V1.0.3
|
|
||||||
* Copyright 2011, Dave Gamache
|
|
||||||
* www.getskeleton.com
|
|
||||||
* Free to use under the MIT license.
|
|
||||||
* http://www.opensource.org/licenses/mit-license.php
|
|
||||||
* 7/17/2011
|
|
||||||
*/
|
|
||||||
|
|
||||||
|
|
||||||
$(document).ready(function() {
|
|
||||||
|
|
||||||
|
|
||||||
/* Tabs Activiation
|
|
||||||
================================================== */
|
|
||||||
var tabs = $('ul.tabs');
|
|
||||||
|
|
||||||
tabs.each(function(i) {
|
|
||||||
//Get all tabs
|
|
||||||
var tab = $(this).find('> li > a');
|
|
||||||
tab.click(function(e) {
|
|
||||||
|
|
||||||
//Get Location of tab's content
|
|
||||||
var contentLocation = $(this).attr('href') + "Tab";
|
|
||||||
|
|
||||||
//Let go if not a hashed one
|
|
||||||
if(contentLocation.charAt(0)=="#") {
|
|
||||||
|
|
||||||
e.preventDefault();
|
|
||||||
|
|
||||||
//Make Tab Active
|
|
||||||
tab.removeClass('active');
|
|
||||||
$(this).addClass('active');
|
|
||||||
|
|
||||||
//Show Tab Content & add active class
|
|
||||||
$(contentLocation).show().addClass('active').siblings().hide().removeClass('active');
|
|
||||||
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
});
|
|
@ -333,4 +333,3 @@
|
|||||||
.add-bottom { margin-bottom: 20px !important; }
|
.add-bottom { margin-bottom: 20px !important; }
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user