Commit 46fe3838 authored by Jacob Thornton's avatar Jacob Thornton

rename tabs to tab - clean up lots of api stuff make href acceptable target val

parent 3925ea99
This diff is collapsed.
...@@ -67,14 +67,14 @@ All events should have an infinitive and past participle form. The infinitive is ...@@ -67,14 +67,14 @@ All events should have an infinitive and past participle form. The infinitive is
Data attributes should take the following form: Data attributes should take the following form:
data-*(verb)* - defines main interaction data-*(verb)* - defines main interaction
data-target - defined on controller element (if element interacts with an element other than self) data-target || href^=# - defined on controller element (if element interacts with an element other than self)
data-*(noun)* - defines options for element invocation data-*(noun)* - defines options for element invocation
examples: examples:
// control other targets // control other targets
data-toggle="modal" data-target="#foo" data-toggle="modal" data-target="#foo"
data-toggle="view" data-target="#foo" data-toggle="collapse" data-target="#foo" data-parent="#foo"
// defined on element they control // defined on element they control
data-spy="scroll" data-spy="scroll"
......
...@@ -117,9 +117,9 @@ ...@@ -117,9 +117,9 @@
$(function () { $(function () {
$('body').delegate('[data-toggle=collapse]', 'click.collapse.data-api', function ( e ) { $('body').delegate('[data-toggle=collapse]', 'click.collapse.data-api', function ( e ) {
var $this = $(this) var $this = $(this)
, target = $this.attr('data-target') , target = $this.attr('data-target') || $this.attr('href')
, option = $(target).data('collapse') ? 'toggle' : $this.data() , option = $(target).data('collapse') ? 'toggle' : $this.data()
e.preventDefault() e.preventDefault()
$(target).collapse(option) $(target).collapse(option)
}) })
}) })
......
...@@ -192,7 +192,7 @@ ...@@ -192,7 +192,7 @@
$(document).ready(function () { $(document).ready(function () {
$('body').delegate('[data-toggle="modal"]', 'click.modal.data-api', function ( e ) { $('body').delegate('[data-toggle="modal"]', 'click.modal.data-api', function ( e ) {
var $this = $(this) var $this = $(this)
, target = $this.attr('data-target') , target = $this.attr('data-target') || $this.attr('href')
, option = $(target).data('modal') ? 'toggle' : $this.data() , option = $(target).data('modal') ? 'toggle' : $this.data()
e.preventDefault() e.preventDefault()
$(target).modal(option) $(target).modal(option)
......
...@@ -28,7 +28,9 @@ ...@@ -28,7 +28,9 @@
var process = $.proxy(this.process, this) var process = $.proxy(this.process, this)
this.$scrollElement = $(element).bind('scroll.scroll.data-api', process) this.$scrollElement = $(element).bind('scroll.scroll.data-api', process)
this.selector = (this.$scrollElement.attr('data-target') || '') + ' .nav li > a' this.selector = (this.$scrollElement.attr('data-target')
|| this.$scrollElement.attr('href')
|| '') + ' .nav li > a'
this.$body = $('body').delegate(this.selector, 'click.scroll.data-api', process) this.$body = $('body').delegate(this.selector, 'click.scroll.data-api', process)
this.refresh() this.refresh()
......
...@@ -22,59 +22,81 @@ ...@@ -22,59 +22,81 @@
"use strict" "use strict"
function activate ( element, container ) { /* TAB CLASS DEFINITION
container * ==================== */
.find('> .active')
.removeClass('active')
.find('> .dropdown-menu > .active')
.removeClass('active')
element.addClass('active') var Tab = function ( element ) {
this.element = $(element)
if ( element.parent('.dropdown-menu') ) {
element.closest('li.dropdown').addClass('active')
}
} }
function tab( e ) { Tab.prototype = {
var $this = $(this)
, $ul = $this.closest('ul:not(.dropdown-menu)')
, href = $this.attr('href')
, previous
, $href
if ( /^#\w+/.test(href) ) { show: function () {
e.preventDefault() var $this = this.element
, $ul = $this.closest('ul:not(.dropdown-menu)')
, href = $this.attr('data-target') || $this.attr('href')
, previous
, $href
if ( $this.parent('li').hasClass('active') ) { if ( $this.parent('li').hasClass('active') ) return
return
}
previous = $ul.find('.active a').last()[0] previous = $ul.find('.active a').last()[0]
$this.trigger({
type: 'show'
, relatedTarget: previous
})
$href = $(href) $href = $(href)
activate($this.parent('li'), $ul) this.activate($this.parent('li'), $ul)
activate($href, $href.parent()) this.activate($href, $href.parent())
$this.trigger({ $this.trigger({
type: 'change' type: 'shown'
, relatedTarget: previous , relatedTarget: previous
}) })
} }
, activate: function ( element, container ) {
container
.find('> .active')
.removeClass('active')
.find('> .dropdown-menu > .active')
.removeClass('active')
element.addClass('active')
if ( element.parent('.dropdown-menu') ) {
element.closest('li.dropdown').addClass('active')
}
}
} }
/* TABS/PILLS PLUGIN DEFINITION /* TAB PLUGIN DEFINITION
* ============================ */ * ===================== */
$.fn.tabs = $.fn.pills = function ( selector ) { $.fn.tab = function (option) {
return this.each(function () { return this.each(function () {
$(this).delegate(selector || '.tabs li > a, .pills > li > a', 'click', tab) var $this = $(this)
, data = $this.data('tab')
if (!data) $this.data('tab', (data = new Tab(this)))
if (typeof option == 'string') data[option]()
}) })
} }
$.fn.tab.Tab = Tab
/* TAB DATA-API
* ============ */
$(document).ready(function () { $(document).ready(function () {
$('body').tabs('ul[data-tabs] li > a, ul[data-pills] > li > a') $('body').delegate('[data-toggle="tab"], [data-toggle="pill"]', 'click.tab.data-api', function (e) {
e.preventDefault()
$(this).tab('show')
})
}) })
}( window.jQuery || window.ender ) }( window.jQuery || window.ender )
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment