aboutsummaryrefslogtreecommitdiff
path: root/js
AgeCommit message (Collapse)AuthorFilesLines
2014-06-06Minor style tweaks.XhmikosR7-16/+28
2014-06-06carousel.js: remove unneeded variable assignment.XhmikosR1-1/+1
`slideIndex` is assigned to the same value a few lines above.
2014-06-06Comply to the new style.XhmikosR19-143/+157
2014-06-06Tweak JSHint and JSCS checks.XhmikosR4-8/+21
Be more consistent across the whole codebase. Also, make use of JSHint's 2.5.1 `extends` and `qunit` options. This way we set our basis options in js/.jshintrc and override the rest.
2014-05-23Merge pull request #13589 from mrobinet/scrollspy-maxScroll-with-offsetChris Rebert2-3/+37
Adjust for Scrollspy offset when calculating maxScroll.
2014-05-23Merge pull request #13593 from ResentedHook/masterChris Rebert3-0/+22
Add tooltip self-reference to address #12320
2014-05-23Merge pull request #13557 from bassettsj/aria-describedby-tooltip-13480Chris Rebert2-0/+42
Aria describedby tooltip: #13480
2014-05-19fix typo in assertion descriptionChris Rebert1-1/+1
2014-05-16add missing event namespacing in modal.jsChris Rebert1-1/+1
2014-05-16add `target` option to Affix pluginAttila Dobi1-4/+6
2014-05-16Adds aria described by to tooltip plugin for accessibilitySteven Bassett2-0/+42
Generates a unique id for tooltip and adds [aria-describedby] to the element it is called on. Resolves issue #13480 - set up test - linted the code styles - passed the tests - integrated feedback from @cvrebert
2014-05-14Add tooltip self-reference to address #12320j.corns3-0/+22
primarily adds a data- attribute to the tooltip (and thus, the popover) to create a self-reference.
2014-05-13Add Scrollspy maxScroll with offset test.Mike Robinet1-2/+36
2014-05-13Adjust for Scrollspy offset when calculating maxScroll.Mike Robinet1-1/+1
2014-05-13Update jQuery to v1.11.1.XhmikosR1-4/+4
2014-05-12versionsfat11-1/+23
2014-05-12Merge pull request #13191 from AshleyDawson/masterJacob1-1/+1
Fixed nested tab elements li activation
2014-05-12fixes #12211: Scrollspy: Navs in different tabs can interfere with each othefat1-0/+1
2014-05-09Fixed affix-bottom positioningGregory Pakosz1-1/+1
Set top position to (scrollHeight - this.$element.height() - offsetBottom).
2014-05-05Merge pull request #13511 from hnrch02/button-reset-falsey-values-fixChris Rebert2-2/+22
Allow for resetText of a button to be a falsey value; fixes #13466
2014-05-05Merge pull request #13406 from EnsignR/closed.bs.alert-after-removeChris Rebert1-1/+2
fires closed.bs.alert *after* DOM detach() as per #12379
2014-05-05Allow for resetText of a button to be a falsey value; fixes #13466Heinrich Fenkart2-2/+22
2014-05-04import rules from Ratchet's JSCS config with which we already complyChris Rebert1-0/+5
2014-05-01make new Carousel tests compatible with noConflict modeChris Rebert1-2/+2
2014-05-01add role="tooltip" to popovers; fixes #13481Chris Rebert1-1/+1
2014-04-30Merge pull request #11966 from colllin/noconflictMark Otto22-288/+415
Fix #11464 - JS noConflict() mode not working in 3.0.x
2014-04-30Update alert.jsRoss Nye1-1/+2
Added call to remove() after event fires to clean up data as per discussion at #12379
2014-04-25Merge pull request #13396 from twbs/carousel-eventsChris Rebert2-7/+35
Carousel event properties
2014-04-25Carousel.slide: rename e => slideEventChris Rebert1-3/+3
2014-04-25change 'slid' comments per @fat's feedbackChris Rebert1-3/+3
2014-04-24Add direction & relatedTarget properties to slid.bs.carousel eventChris Rebert1-3/+5
Fixes #13393
2014-04-23fires closed.bs.alert *after* DOM detach()Ross Nye1-1/+1
fires closed.bs.alert *after* element is removed from DOM. Previously it fired while the element was still attached.
2014-04-21#11464 - Fix JS noConflict mode - Refactor all plugins to use an internal ↵Collin Donahue-Oponski22-288/+415
reference to the jQuery plugin, because in noConflict mode you can never expect to be defined on the jQuery object
2014-04-21fixes #13157 - Collapse plugin - issues with transition end event bubblingfat1-2/+4
2014-04-21add unit tests for Carousel slid eventsChris Rebert1-0/+26
2014-04-21spelling fixes in Carousel unit testsChris Rebert1-3/+3
2014-04-20add missing operators to some JSCS rules that we already comply withChris Rebert1-3/+3
2014-04-20move call for removeBackdrop() to backdrop()Tobias Lindig1-3/+7
Closes #11958 by rebasing & merging it
2014-04-20Merge pull request #13306 from twbs/fat-11099Jacob2-3/+3
fixes #11099 - $.collapse() overrides the original dimension of the coll...
2014-04-20Merge pull request #13354 from twbs/fat-13296Jacob1-0/+1
fixes #13296 Dropdown disappears with right-click on Firefox
2014-04-19quote attribute value in ^= selector in button.jsChris Rebert1-1/+1
2014-04-19rename jquery.js -> jquery.min.js since it's minifiedChris Rebert2-1/+1
2014-04-19quote attribute values in selectors in JS unit tests for consistencyChris Rebert2-3/+3
2014-04-15fixes #13296 Dropdown disappears with right-click on Firefoxfat1-0/+1
2014-04-15fixes #11099 - $.collapse() overrides the original dimension of the coll...fat2-3/+3
2014-04-12Wait for the expected target during a collapseGermán M. Bravo1-2/+10
Actually wait for the collapsed item to complete. If complete is called with other target, instead of simply returning and do nothing, wait again until the proper target triggers the event (otherwise this leaves collapse in a broken state).
2014-04-09JS: remove unused variables.XhmikosR8-25/+25
2014-04-08When opening the dropdown, focus() the dropdown-toggle BEFORE triggering ↵Collin Donahue-Oponski1-2/+2
'shown.bs.dropdown' Closes #11281 by merging it (after rebasing & resolving conflicts)
2014-04-03replace $.bind() with $.on() in unit tests; per #13272Chris Rebert2-9/+9
2014-04-03Fix the new JSHint warnings.XhmikosR1-9/+4