aboutsummaryrefslogtreecommitdiffstats
path: root/ui/jquery.ui.mouse.js
Commit message (Expand)AuthorAgeFilesLines
* Draggable: enabled draggable from within iframe. Fixed #5727 - draggable: can...Brian Grinstead2013-05-201-7/+13
* Update copyright year to 2013.Scott González2013-01-101-1/+1
* All: Convert single quotes to double quotes.Mike Sherov2012-12-251-15/+15
* Dev: make sure all files can pass JSHint!Mike Sherov2012-11-091-7/+7
* Remove trailing whitespace and add final newlinesTrey Hunner2012-10-211-1/+1
* Remove use of $.browser; add $.ui.ie and $.ui.ie6 temporarily.Scott González2012-10-101-1/+1
* Updated docs URLS.Scott González2012-09-261-1/+1
* Simplify licensing.Scott González2012-08-091-1/+1
* Mouse: Don't try to unbind delegated event handlers if they don't exist. Fixe...Scott González2012-07-311-3/+5
* Update copyright to jQuery Foundation.Scott González2012-07-041-1/+2
* Don't use :input selector.Scott González2012-05-211-1/+1
* Lint fixes.Scott González2012-04-021-3/+3
* A few lint fixes.Scott González2012-04-021-1/+1
* Mouse: Unbind events bound to document on destroy. Fixes #8199 - _mouseDestro...Scott González2012-03-191-0/+3
* Updated copyright year.Scott González2012-03-081-1/+1
* Use hard tabs for indentation consistentlyTrey Hunner2012-02-271-2/+2
* Mouse: Use 'that' instead of 'self'. Partial fix for #5404 - remove uses of '...Scott González2012-02-121-8/+8
* Mouse: Work around a bug in IE 8 where disabled inputs don't have a nodeName....Scott González2011-08-091-1/+3
* Mouse: Changed mouseHandled check to a local var rather than using originalEv...kborchers2011-08-021-4/+8
* Revert "Mouse: Changed mouseHandled check to a local var rather than using or...Scott González2011-08-011-8/+4
* All: Moved version numbers into prototypes. Fixed #7436 - Widget: Store versi...Scott González2011-05-281-0/+1
* Mouse: Optimize the cancel locator, works around a bug where .add(event.targe...Jay Merrifield2011-05-261-1/+1
* Mouse: Changed mouseHandled check to a local var rather than using originalEv...kborchers2011-05-091-4/+8
* Mouse: Reset click event suppression on next mousedown. Fixes #6946 - Mouse: ...awgy2011-02-051-0/+5
* Updated copyright year.Scott González2011-01-171-1/+1
* Mouse: tie the preventClickEvent property to the event target, not the contai...awgy2010-11-091-3/+7
* Mouse: better check for not IE9 or greater in case mode was set by X-UA-Compa...Richard D. Worth2010-10-151-1/+1
* changed jQuery to $ in last commit for consistencyRichard D. Worth2010-10-141-1/+1
* Mouse: Limit mouseup out of window check to only versions of IE earlier than ...Richard D. Worth2010-10-141-1/+1
* Mouse: Always call event.preventDefault() in _mouseDown if we've met the star...Scott González2010-10-131-5/+1
* All: Added http://jqueryui.com/about to header comments.Scott González2010-07-141-1/+1
* All: Define a local undefined variable inside the main closure.Scott González2010-07-131-1/+1
* Updated copyright headers to make it clear that you can choose between MIT an...Scott González2010-07-091-3/+3
* Happy New YearRichard Worth2010-01-201-1/+1
* Merged in /branches/dev r3251:3620 (excluding autocomplete, modal, tooltip, m...Scott González2010-01-071-9/+7
* Mouse: Don't prevent text selection in IE.Scott González2009-12-291-10/+0
* Split mouse into its own file and udpdated dependency lists.Scott González2009-12-221-0/+163
#n507'>507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883