diff options
author | Richard Worth <rdworth@gmail.com> | 2010-03-12 03:18:34 +0000 |
---|---|---|
committer | Richard Worth <rdworth@gmail.com> | 2010-03-12 03:18:34 +0000 |
commit | bfc180b1baf9695c0f739088a8d92eac147c808c (patch) | |
tree | 8bb2ffc3cc4acc3cf79ecb9038660028b5af3a54 /demos/dialog | |
parent | a27b789cfd28434daf344548e3d6573a963a166a (diff) | |
download | jquery-ui-bfc180b1baf9695c0f739088a8d92eac147c808c.tar.gz jquery-ui-bfc180b1baf9695c0f739088a8d92eac147c808c.zip |
html pages: added HTML5 meta charset UTF-8 tag, changed DOCTYPE to uppercase
Diffstat (limited to 'demos/dialog')
-rw-r--r-- | demos/dialog/animated.html | 3 | ||||
-rw-r--r-- | demos/dialog/default.html | 3 | ||||
-rw-r--r-- | demos/dialog/index.html | 3 | ||||
-rw-r--r-- | demos/dialog/modal-confirmation.html | 3 | ||||
-rw-r--r-- | demos/dialog/modal-form.html | 3 | ||||
-rw-r--r-- | demos/dialog/modal-message.html | 3 | ||||
-rw-r--r-- | demos/dialog/modal.html | 3 |
7 files changed, 14 insertions, 7 deletions
diff --git a/demos/dialog/animated.html b/demos/dialog/animated.html index 97b1290bc..26f298acc 100644 --- a/demos/dialog/animated.html +++ b/demos/dialog/animated.html @@ -1,6 +1,7 @@ -<!doctype html> +<!DOCTYPE html> <html lang="en"> <head> + <meta charset="UTF-8" /> <title>jQuery UI Dialog - Animation</title> <link type="text/css" href="../../themes/base/jquery.ui.all.css" rel="stylesheet" /> <script type="text/javascript" src="../../jquery-1.4.2.js"></script> diff --git a/demos/dialog/default.html b/demos/dialog/default.html index 311acfeec..a0d4481c7 100644 --- a/demos/dialog/default.html +++ b/demos/dialog/default.html @@ -1,6 +1,7 @@ -<!doctype html> +<!DOCTYPE html> <html lang="en"> <head> + <meta charset="UTF-8" /> <title>jQuery UI Dialog - Default functionality</title> <link type="text/css" href="../../themes/base/jquery.ui.all.css" rel="stylesheet" /> <script type="text/javascript" src="../../jquery-1.4.2.js"></script> diff --git a/demos/dialog/index.html b/demos/dialog/index.html index 3b0b93749..45d4a9f43 100644 --- a/demos/dialog/index.html +++ b/demos/dialog/index.html @@ -1,6 +1,7 @@ -<!doctype html> +<!DOCTYPE html> <html lang="en"> <head> + <meta charset="UTF-8" /> <title>jQuery UI Dialog Demos</title> <link type="text/css" href="../demos.css" rel="stylesheet" /> </head> diff --git a/demos/dialog/modal-confirmation.html b/demos/dialog/modal-confirmation.html index c6ba5bd5c..4affb5964 100644 --- a/demos/dialog/modal-confirmation.html +++ b/demos/dialog/modal-confirmation.html @@ -1,6 +1,7 @@ -<!doctype html> +<!DOCTYPE html> <html lang="en"> <head> + <meta charset="UTF-8" /> <title>jQuery UI Dialog - Modal confirmation</title> <link type="text/css" href="../../themes/base/jquery.ui.all.css" rel="stylesheet" /> <script type="text/javascript" src="../../jquery-1.4.2.js"></script> diff --git a/demos/dialog/modal-form.html b/demos/dialog/modal-form.html index 377a99148..592b4ab3c 100644 --- a/demos/dialog/modal-form.html +++ b/demos/dialog/modal-form.html @@ -1,6 +1,7 @@ -<!doctype html> +<!DOCTYPE html> <html lang="en"> <head> + <meta charset="UTF-8" /> <title>jQuery UI Dialog - Modal form</title> <link type="text/css" href="../../themes/base/jquery.ui.all.css" rel="stylesheet" /> <script type="text/javascript" src="../../jquery-1.4.2.js"></script> diff --git a/demos/dialog/modal-message.html b/demos/dialog/modal-message.html index e12454415..a0ab01b21 100644 --- a/demos/dialog/modal-message.html +++ b/demos/dialog/modal-message.html @@ -1,6 +1,7 @@ -<!doctype html> +<!DOCTYPE html> <html lang="en"> <head> + <meta charset="UTF-8" /> <title>jQuery UI Dialog - Modal message</title> <link type="text/css" href="../../themes/base/jquery.ui.all.css" rel="stylesheet" /> <script type="text/javascript" src="../../jquery-1.4.2.js"></script> diff --git a/demos/dialog/modal.html b/demos/dialog/modal.html index da0d94867..1eb69f028 100644 --- a/demos/dialog/modal.html +++ b/demos/dialog/modal.html @@ -1,6 +1,7 @@ -<!doctype html> +<!DOCTYPE html> <html lang="en"> <head> + <meta charset="UTF-8" /> <title>jQuery UI Dialog - Basic modal</title> <link type="text/css" href="../../themes/base/jquery.ui.all.css" rel="stylesheet" /> <script type="text/javascript" src="../../jquery-1.4.2.js"></script> |