aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/menu/menu_events.js
Commit message (Collapse)AuthorAgeFilesLines
* Tests: Rename filesScott González2015-04-091-737/+0
| | | | Ref gh-1528
* Tests: Widget test helpers extend the main helperScott González2015-04-091-5/+5
| | | | | Ref #10119 Ref gh-1528
* Menu: Convert tests to new infrastructureScott González2015-04-091-6/+10
| | | | | Ref #10119 Ref gh-1528
* Menu: Ignore bubbled mouseenter events on parent itemsJörn Zaefferer2015-04-081-0/+42
| | | | | | | | Test uses QUnit 2.x API - inconsistent with the other tests, but also a good reference. Fixes #11641 Closes gh-1535
* Menu: Use new has/lacksClasses assertions for all class checksAlexander Schmitz2015-03-111-2/+2
|
* Tests: Reduce timeouts to optimize testsuite runtimeJörn Zaefferer2015-03-041-19/+23
|
* Tests: Fix style issues with missing or multiple line breaksJörn Zaefferer2015-01-241-1/+0
| | | | | As pointed out by jscs, after a esformatter run. The latter doesn't address these, so fixing them manually.
* Menu: Use ui-state-active consistentlyJörn Zaefferer2015-01-211-9/+9
| | | | | | | | So far we were using ui-state-active on active parent items, ui-state-focus on active child items. The theme update highlighted the visual inconsistency. With this change, only ui-state-active is used. Fixes #10692
* Menu: Wrap menu items in a <div>TJ VanToll2014-10-251-12/+12
| | | | | | | This avoids styling issues where ui-state-focus rules apply to submenus. Fixes #10162 Closes gh-1342
* Menu: Typeahead now accounts for leading whitespaceTrisha Crowley2014-10-071-1/+3
| | | | | Fixes #10649 Closes gh-1356
* Menu: Maintain focus on already selected item during typeaheadTJ VanToll2014-10-031-0/+22
| | | | | Fixes #10644 Closes gh-1354
* Menu: Filter out non-items when typingSimen Bekkhus2014-09-291-0/+17
| | | | | Fixes #10571 Closes gh-1329
* Menu: Remove click binding that was supposed to prevent default on anchor ↵Jörn Zaefferer2013-12-031-21/+0
| | | | clicks on a disabled menu. Not relevant anymore since we removed the anchors. Partial fix for #8802 - Dev: Track down uses of .bind() inside widgets
* Menu tests: Force line height to ensure we know how many items will be scrolled.Scott González2013-11-201-6/+6
|
* Menu: Update unit test that regressed from style changes (see ↵Jörn Zaefferer2013-11-151-6/+6
| | | | 9910e938aad1090339a2c7f60693093ee18aba82)
* Menu: Add items option for better definition of menu items in non ↵Kris Borchers2013-10-051-0/+31
| | | | parent-child structures
* Menu: Remove the requirement to use anchors in menu itemsKris Borchers2013-10-051-8/+8
|
* Menu tests: jshint cleanup of unused argumentTJ VanToll2013-08-031-1/+1
|
* Menu: Only set the mouseHandled flag if the event is going to bubble. Fixes ↵TJ VanToll2013-08-031-0/+15
| | | | | | #9469: on( "menuselect" ) not firing every time.
* Menu tests: Whitespace and general cleanupKris Borchers2013-07-151-18/+18
|
* Menu tests: Check default is prevented on any click on disabled menusKris Borchers2013-07-141-0/+21
|
* Menu tests: Better handling of async focus in IE.Scott González2012-12-111-91/+108
|
* Build: Enable "unused" option in jshint - Remove unused variables from ↵Mike Sherov2012-10-231-15/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | codebase. - Closes gh-788 Squashed commit of the following: commit 7f19f92c646f180bc067bb24123175251a64a9d6 Author: Mike Sherov <mike.sherov@gmail.com> Date: Tue Oct 23 10:34:28 2012 -0400 put back in fake args for signatures that we want to keep commit 257505a9e69da0c53e3a989dab87a13112045a29 Author: Mike Sherov <mike.sherov@gmail.com> Date: Tue Oct 23 08:10:20 2012 -0400 changes per @scott_gonzalez commit 12725480cb58e70865e5aa6e735009b6b035c8f3 Author: Mike Sherov <mike.sherov@gmail.com> Date: Mon Oct 22 22:54:05 2012 -0400 clean up unused vars in ui directory commit 563595e7aee5d4a5c096b2d1de655abdf920aacd Author: Mike Sherov <mike.sherov@gmail.com> Date: Mon Oct 22 22:37:42 2012 -0400 clean up unused vars in grunt and tests
* Menu: Don't move focus from the active item on click. Fixes #8552 - selected ↵Scott González2012-09-051-7/+11
| | | | value overwritten/not correctly set.
* Menu tests: Removed test for key handling when the element doens't have ↵Scott González2012-07-171-18/+0
| | | | focus (illogical test).
* Menu tests: Cleanup.Scott González2012-06-271-29/+29
|
* Menu tests: Saner output for log helper.Scott González2012-06-181-68/+68
|
* Menu tests: Cleanup.Scott González2012-06-181-228/+225
|
* Menu: Better handling of divider elements and menu items without anchors.kborchers2012-05-241-8/+19
|
* Menu Tests: Increase timeout on page up/down testkborchers2012-05-231-1/+1
|
* Menu Tests: Remove unused unit tests and add new unit tests to improve coverage.kborchers2012-05-221-36/+87
|
* Menu: Handle SPACE same as ENTER, select items or opening submenusJörn Zaefferer2012-05-221-2/+14
|
* Menu tests: Update tests to test mouseenter instead of mouseoverkborchers2012-04-191-6/+8
|
* Menu tests: Don't pollute the global namespace with helpers.kborchers2012-04-191-86/+89
|
* Merge branch 'menuaria' into masterkborchers2012-04-191-0/+52
|\
| * Menu: Add unit tests for testing disabled itemskborchers2012-04-181-0/+52
| |
* | Tests: LintScott González2012-04-191-6/+7
|/
* Update to QUnit 1.3. Replace usage of same with deepEqual and equals with equal.Jörn Zaefferer2012-02-291-58/+58
|
* Menu: Clean up tests to remove nested setTimeout callskborchers2012-02-171-123/+143
|
* Menu tests: Handle async focus events in IE.Scott González2012-02-091-99/+101
|
* Menu: Focus the menu before performing keyboard unit tests.kborchers2012-02-061-8/+15
|
* Menu: Added unit tests for the enable, disable and refresh methods as well ↵kborchers2012-01-221-6/+6
| | | | as the disabled option. Cleaned up some variable names in unit tests.
* Menu: Fix close delay and increase the default delaykborchers2011-12-201-17/+23
|
* Menu: Fix focus handling to keep focus on the menu and prevent jumping ↵kborchers2011-12-151-2/+5
| | | | around within the menu on mousedown
* Menu: Refactoring the collapseAll to deal with some issues selecting - ↵Corey Frang2011-09-221-1/+7
| | | | Updating unit tests. Thanks @kborchers
* Menu: Add support for structures other than UL/LI plus visual and unit testskborchers2011-09-141-0/+57
|
* Merge remote branch 'kborchers/menu_autoCollapse'Jörn Zaefferer2011-09-121-0/+19
|\
| * Menu: Added autoCollapse as the default and added a unit testkborchers2011-09-121-0/+19
| |
* | Tests: Cleanup.Scott González2011-08-031-1/+1
| |
* | Menu tests: Cleanup.Scott González2011-08-031-69/+69
|/