aboutsummaryrefslogtreecommitdiffstats
path: root/demos
diff options
context:
space:
mode:
Diffstat (limited to 'demos')
-rw-r--r--demos/autocomplete/multiple-remote.html2
-rw-r--r--demos/autocomplete/remote-jsonp.html2
-rw-r--r--demos/autocomplete/remote-with-cache.html2
-rw-r--r--demos/autocomplete/remote.html2
-rw-r--r--demos/autocomplete/xml.html4
-rw-r--r--demos/selectmenu/custom_render.html12
6 files changed, 13 insertions, 11 deletions
diff --git a/demos/autocomplete/multiple-remote.html b/demos/autocomplete/multiple-remote.html
index 0cf75c5db..7638833bb 100644
--- a/demos/autocomplete/multiple-remote.html
+++ b/demos/autocomplete/multiple-remote.html
@@ -13,7 +13,7 @@
<link rel="stylesheet" href="../demos.css">
<style>
.ui-autocomplete-loading {
- background: white url('images/ui-anim_basic_16x16.gif') right center no-repeat;
+ background: white url("images/ui-anim_basic_16x16.gif") right center no-repeat;
}
</style>
<script>
diff --git a/demos/autocomplete/remote-jsonp.html b/demos/autocomplete/remote-jsonp.html
index efe13c10b..3cd718862 100644
--- a/demos/autocomplete/remote-jsonp.html
+++ b/demos/autocomplete/remote-jsonp.html
@@ -13,7 +13,7 @@
<link rel="stylesheet" href="../demos.css">
<style>
.ui-autocomplete-loading {
- background: white url('images/ui-anim_basic_16x16.gif') right center no-repeat;
+ background: white url("images/ui-anim_basic_16x16.gif") right center no-repeat;
}
#city { width: 25em; }
</style>
diff --git a/demos/autocomplete/remote-with-cache.html b/demos/autocomplete/remote-with-cache.html
index 27d2fb8a7..200949bb8 100644
--- a/demos/autocomplete/remote-with-cache.html
+++ b/demos/autocomplete/remote-with-cache.html
@@ -13,7 +13,7 @@
<link rel="stylesheet" href="../demos.css">
<style>
.ui-autocomplete-loading {
- background: white url('images/ui-anim_basic_16x16.gif') right center no-repeat;
+ background: white url("images/ui-anim_basic_16x16.gif") right center no-repeat;
}
</style>
<script>
diff --git a/demos/autocomplete/remote.html b/demos/autocomplete/remote.html
index 4fef00e93..d553aa13c 100644
--- a/demos/autocomplete/remote.html
+++ b/demos/autocomplete/remote.html
@@ -13,7 +13,7 @@
<link rel="stylesheet" href="../demos.css">
<style>
.ui-autocomplete-loading {
- background: white url('images/ui-anim_basic_16x16.gif') right center no-repeat;
+ background: white url("images/ui-anim_basic_16x16.gif") right center no-repeat;
}
</style>
<script>
diff --git a/demos/autocomplete/xml.html b/demos/autocomplete/xml.html
index fc86bc88a..b60122021 100644
--- a/demos/autocomplete/xml.html
+++ b/demos/autocomplete/xml.html
@@ -12,7 +12,9 @@
<script src="../../ui/autocomplete.js"></script>
<link rel="stylesheet" href="../demos.css">
<style>
- .ui-autocomplete-loading { background: white url('images/ui-anim_basic_16x16.gif') right center no-repeat; }
+ .ui-autocomplete-loading {
+ background: white url("images/ui-anim_basic_16x16.gif") right center no-repeat;
+ }
</style>
<script>
$(function() {
diff --git a/demos/selectmenu/custom_render.html b/demos/selectmenu/custom_render.html
index a2bbb0fb6..44860dbea 100644
--- a/demos/selectmenu/custom_render.html
+++ b/demos/selectmenu/custom_render.html
@@ -75,13 +75,13 @@
top: 0.1em;
}
.ui-icon.video {
- background: url(images/24-video-square.png) 0 0 no-repeat;
+ background: url("images/24-video-square.png") 0 0 no-repeat;
}
.ui-icon.podcast {
- background: url(images/24-podcast-square.png) 0 0 no-repeat;
+ background: url("images/24-podcast-square.png") 0 0 no-repeat;
}
.ui-icon.rss {
- background: url(images/24-rss-square.png) 0 0 no-repeat;
+ background: url("images/24-rss-square.png") 0 0 no-repeat;
}
/* select with CSS avatar icons */
@@ -126,9 +126,9 @@
<fieldset>
<label for="people">Select a Person:</label>
<select name="people" id="people">
- <option value="1" class="avatar" style="background-image: url(http://www.gravatar.com/avatar/b3e04a46e85ad3e165d66f5d927eb609?d=monsterid&amp;r=g&amp;s=16);">John Resig</option>
- <option value="2" class="avatar" style="background-image: url(http://www.gravatar.com/avatar/e42b1e5c7cfd2be0933e696e292a4d5f?d=monsterid&amp;r=g&amp;s=16);">Tauren Mills</option>
- <option value="3" class="avatar" style="background-image: url(http://www.gravatar.com/avatar/bdeaec11dd663f26fa58ced0eb7facc8?d=monsterid&amp;r=g&amp;s=16);">Jane Doe</option>
+ <option value="1" class="avatar" style="background-image: url('http://www.gravatar.com/avatar/b3e04a46e85ad3e165d66f5d927eb609?d=monsterid&amp;r=g&amp;s=16');">John Resig</option>
+ <option value="2" class="avatar" style="background-image: url('http://www.gravatar.com/avatar/e42b1e5c7cfd2be0933e696e292a4d5f?d=monsterid&amp;r=g&amp;s=16');">Tauren Mills</option>
+ <option value="3" class="avatar" style="background-image: url('http://www.gravatar.com/avatar/bdeaec11dd663f26fa58ced0eb7facc8?d=monsterid&amp;r=g&amp;s=16');">Jane Doe</option>
</select>
</fieldset>