aboutsummaryrefslogtreecommitdiffstats
path: root/ui/widgets/button.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/widgets/button.js')
-rw-r--r--ui/widgets/button.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/ui/widgets/button.js b/ui/widgets/button.js
index 02708d620..08a4b61c5 100644
--- a/ui/widgets/button.js
+++ b/ui/widgets/button.js
@@ -109,9 +109,9 @@ $.widget( "ui.button", {
if ( event.keyCode === $.ui.keyCode.SPACE ) {
event.preventDefault();
- // Support: PhantomJS <= 1.9, IE 8 Only
- // If a native click is available use it so we actually cause navigation
- // otherwise just trigger a click event
+ // If a native click is available use it, so we
+ // actually cause navigation. Otherwise, just trigger
+ // a click event.
if ( this.element[ 0 ].click ) {
this.element[ 0 ].click();
} else {