aboutsummaryrefslogtreecommitdiffstats
path: root/tests/visual
diff options
context:
space:
mode:
authorAlexander Schmitz <arschmitz@gmail.com>2015-08-21 00:04:13 -0400
committerAlexander Schmitz <arschmitz@gmail.com>2015-08-21 08:06:22 -0400
commitb7278a3968d9ac6332958811317865a412a9f39b (patch)
tree6803243f93375406ab88836c319577a6546272a1 /tests/visual
parent1f6ea8b78ac859bfecbdcdd092c2df3e2eec90ed (diff)
downloadjquery-ui-b7278a3968d9ac6332958811317865a412a9f39b.tar.gz
jquery-ui-b7278a3968d9ac6332958811317865a412a9f39b.zip
Tooltip: Style updates
Ref #14246 Ref gh-1588
Diffstat (limited to 'tests/visual')
-rw-r--r--tests/visual/tooltip/tooltip.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/visual/tooltip/tooltip.html b/tests/visual/tooltip/tooltip.html
index c0ba7a11c..176af85d8 100644
--- a/tests/visual/tooltip/tooltip.html
+++ b/tests/visual/tooltip/tooltip.html
@@ -20,7 +20,7 @@
// default
$( "#context1, form, #childish, #nested-input" ).tooltip();
- // custom class, replaces ui-widget-content
+ // Custom class, replaces ui-widget-content
$( "#context2" ).tooltip({
classes: {
"ui-tooltip": "ui-corner-all ui-widget-header"
@@ -32,7 +32,7 @@
}
});
- // synchronous content
+ // Synchronous content
$( "#footnotes" ).tooltip({
items: "[href^='#']",
content: function() {
@@ -40,7 +40,7 @@
}
});
- // asynchronous content
+ // Asynchronous content
$( "#async" ).tooltip({
content: function( response ) {
setTimeout(function() {
@@ -50,7 +50,7 @@
}
});
- // asynchronous content with caching
+ // Asynchronous content with caching
var content;
$( "#async2" ).tooltip({
content: function( response ) {
@@ -65,7 +65,7 @@
}
});
- // custom position
+ // Custom position
$( "#right2" ).tooltip({
classes: {
"ui-tooltip": "ui-corner-all ui-state-highlight"