aboutsummaryrefslogtreecommitdiff
path: root/js
AgeCommit message (Collapse)AuthorFilesLines
2013-12-18version bumpMark Otto12-12/+12
2013-12-16Require comma on left sideZlatan Vasović14-98/+99
2013-12-14Merge pull request #10704 from XhmikosR/variousMark Otto1-1/+0
rm unused vars
2013-12-14Add `try` and `catch` to keywordsZlatan Vasović1-1/+1
2013-12-10Allow listbox AIRA role on dropdown component.Scott Plumlee1-2/+3
2013-12-10Remove unused variables.XhmikosR1-1/+0
2013-12-08Use single quotes consistently.XhmikosR26-302/+303
2013-12-06integrate JSCSChris Rebert1-0/+14
2013-12-06fix some JS to pass jscsChris Rebert5-7/+7
2013-12-06Use a space before functions' bracket consistently.XhmikosR3-9/+9
2013-12-06Use a space after function consistently.XhmikosR6-34/+34
2013-12-05Use document scroll height instead of offset height to support body with ↵Lukáš Doležal1-1/+1
absolute height
2013-12-04Dropping unused variable in dropdown.jsmdxs1-1/+1
Dropping an unused variable in the Dropdown function inside the `dropdown.js` code. There are no new/changed unit tests, as there are no feature/bug changes requiring new test cases. For the record: I agree to dual-license this contribution under the Apache 2 and MIT licenses.
2013-12-01bump version numbers to 3.0.3Mark Otto12-12/+12
2013-11-29Merge pull request #11502 from 1000hz/patch-1Mark Otto1-2/+2
Add missing data namespace for dropdown
2013-11-18Added unit test for removing only active class from within the scroll spy key.Michael Rotoloni1-0/+37
2013-11-18Update dropdown.jsValera Rozuvan1-1/+1
2013-11-16Add missing data namespace for dropdownCina S.1-2/+2
2013-11-15Clear timeout on destroy.André Cruz1-0/+1
Clears the internal timeout on destroy so that hanging timers are not fired.
2013-11-14fixes #11477 and updates slid event in carousel with namespacefat2-5/+5
2013-11-11Update scrollspy.jsmoodyroto1-1/+1
Scrollspy target in tab content does not work properly. Calling .parents('.active') will return all parents with an active class (including the tab pane). Changing this line to .parentsUntil(this.options.target, '.active') should resolve the issue. This will scope the query to only search for active elements inside the scrollspy target.
2013-11-10Don't deselect radio buttons in data-toggle; fixes #9920Brian Leonard1-4/+10
Merges #10787
2013-11-10Add unit test for #9920Nathan Muir1-0/+6
Merges #10385
2013-11-08Carousel: Use the transition duration from CSSDaniel Bøndergaard1-1/+1
This makes it possible to change the transition duration in CSS
2013-11-07Update affix properly on scrollspy speedy scroll to top of page #11310Chris Ziogas1-0/+4
Fix scrollspy.js so as affix is updated properly when user scrolls fast to top of page. A fix for issue #11310.
2013-11-06bump versions to v3.0.2Mark Otto12-12/+12
2013-11-05Merge pull request #10039 from daguej/js-refsChris Rebert12-12/+12
Don't explicitly reference global jQuery
2013-11-01update version numbers in JS file comment headers to v3.0.1 & regruntChris Rebert12-12/+12
2013-10-29JS comments pointed to new documentationJared Christensen12-12/+12
2013-10-25QUnit.equals() is deprecated; use QUnit.equal() insteadChris Rebert4-18/+18
2013-10-22Update license yearZlatan Vasović9-9/+9
2013-10-22Scrollspy acting up when targets are hiddenArnold Daniels1-0/+1
If elements are hidden using `display: none;` which are targets mapped by scrollspy, the plugin might select an incorrect or no menu item. Checking if the target is visible solved this.
2013-10-14Merge pull request #10519 from zba/masterChris Rebert1-1/+1
changed attr('data-target') to data('target');
2013-10-09Remove [type]Zlatan Vasović1-1/+1
type="text/css" isn't needed
2013-09-27Only preventDefault on click on [data-toggle="modal"] when the element is a linkAlexander Prinzhorn1-1/+1
In it's current state Bootstrap always prevents the default action for a click event on `[data-toggle="modal"]` elements (see https://github.com/twbs/bootstrap/blob/master/js/modal.js#L233). Instead this should only happen when the element is a link.
2013-09-25Add 'collapse' class back after expandingTravesty31-1/+1
2013-09-23don't create new Tooltip/Popover objects just to destroy them immediatelyJochen Berger2-0/+2
2013-09-18Sort by name.XhmikosR1-8/+8
2013-09-08changed attr('data-target') to data('target');Alexey1-1/+1
this will extend js interface, to be possible to setup targets for tabs as var content=$('<div class="tab-pane">',{text: 'content'}); var tab=('<li>',{html: $('<a>',{text: 'Main options'})}).addClass('active').data({target: $main,toggle: 'tab'}).appendTo(tabs);
2013-09-02Pass $element to offset top/bottom calc funcsAleksey V. Zapparov1-2/+2
At the moment to make dynamic top offset calculator on multiple elements, one would write: ``` javascript $('.my-affix').each(function () { var $el = $(this); $el.affix({ offset: { top: function () { return $el.offset().top; } } }); }) ``` This patch will allow to: ``` javascript $('.my-affix').affix({ offset: { top: function ($el) { return $el.offset().top; } } }); ```
2013-08-31carousel: correctly reset when the slide event is preventedRoland Warmerdam2-9/+30
2013-08-30deleted files not used anymore after transition to grunt-contrib-qunitMartin Hansen2-77/+0
2013-08-26Fix hidden.bs.tooltip and shown.bs.tooltip events firing too early in tooltip.jsLukasz Fiszer1-3/+13
* events fire only after the CSS animation is completed * this fixes also events in popover.js (as it inherits from tooltip.js)
2013-08-22Don't explicitly reference global jQueryJosh Dague12-12/+12
Removes `window.jQuery` in favor of `jQuery`, fixes #10038
2013-08-17add small fix for tooltip consistency + fix customizer syntax issuefat2-6/+10
2013-08-17fixes #9745fat1-2/+2
2013-08-17fixes #9674fat1-5/+6
2013-08-17fixes #9543fat1-1/+1
2013-08-17add some crapfat1-1/+1
2013-08-17add role=menu to htmlfat1-1/+1