diff options
author | Scott González <scott.gonzalez@gmail.com> | 2014-01-24 16:18:30 -0500 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2014-01-24 16:53:57 -0500 |
commit | fa23894dffe81a80326e246cd87e4ebfd490c9f3 (patch) | |
tree | d4fe36e2dfc70e379c16bb16d0354e0a7d6de3a6 /demos/autocomplete/xml.html | |
parent | 21154cfa2e02ef1814a6aff68b14553bdad165cb (diff) | |
download | jquery-ui-fa23894dffe81a80326e246cd87e4ebfd490c9f3.tar.gz jquery-ui-fa23894dffe81a80326e246cd87e4ebfd490c9f3.zip |
All: Quote CSS url() values
Closes gh-1172
Diffstat (limited to 'demos/autocomplete/xml.html')
-rw-r--r-- | demos/autocomplete/xml.html | 4 |
1 files changed, 3 insertions, 1 deletions
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() { |