Skip to content

Commit 05297ab

Browse files
committed
Adding an errata html file
1 parent a4ef232 commit 05297ab

File tree

1 file changed

+93
-0
lines changed

1 file changed

+93
-0
lines changed

errata.html

Lines changed: 93 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
<!doctype html>
2+
<html>
3+
<head>
4+
<title>jQuery UI in Action Errata</title>
5+
<meta charset="utf-8">
6+
7+
<style>
8+
body {
9+
margin: 1.5em;
10+
background-color: #404040;
11+
color: black;
12+
font-family: Verdana,sans-serif;
13+
}
14+
h2 {
15+
margin-top: 1.5em;
16+
font-size: 1.3em;
17+
font-weight: bold;
18+
text-decoration: underline;
19+
}
20+
fieldset {
21+
width: 740px;
22+
margin-bottom: 12px;
23+
border: 2px #dddddd;
24+
border-radius: 4px;
25+
background-color: #FFFFFF;
26+
}
27+
fieldset div {
28+
padding: 20px;
29+
margin-bottom: 6px;
30+
font-weight: normal;
31+
}
32+
legend {
33+
border: 2px #dddddd;
34+
border-radius: 4px;
35+
font-size: 1.2em;
36+
font-weight: bold;
37+
background-color: #000000;
38+
color: white;
39+
padding: 10px 20px 10px 20px;
40+
}
41+
</style>
42+
</head>
43+
44+
<body>
45+
46+
<fieldset>
47+
<legend>jQuery UI in Action Errata</legend>
48+
<div>
49+
<img src="https://camo.githubusercontent.com/c719b4dc312f23668be4f9ed930efd57c20b56e2/687474703a2f2f746a76616e746f6c6c2e636f6d2f696d616765732f626f6f6b2e6a7067" alt="jQuery UI in Action cover" style="height: 200px;">
50+
51+
<p>The following is a list of verified errors that have been found in <a href="http://manning.com/vantoll/"><em>jQuery UI in Action</em></a>. If you find any errors that are not listed below, please report them in the book's <a href="https://forums.manning.com/posts/list/34651.page">Author Online Forum</a> so that they can be included here for everyone's benefit. Thanks!</p>
52+
53+
54+
55+
<h2>About this book</h2>
56+
57+
<h3>Page xviii</h3>
58+
59+
<p>To fix a small wording error, the last sentence should read: “You’ll build a number of real-world examples and learn about advanced aspects of the library throughout the book.”</p>
60+
61+
62+
63+
<h2>Chapter 1</h2>
64+
65+
<h3>Page 16</h3>
66+
67+
<p>A word was missing from the sentence regarding jsFiddle accounts. It should read: “Finally, if you create a jsFiddle account, you can use http://jsfiddle.net/draft/ to view the result of the last example you ran.”</p>
68+
69+
70+
71+
<h2>Chapter 2</h2>
72+
73+
<h3>Page 29, Listing 2.1</h3>
74+
75+
<p><code>$( this ).dialog( "close" ); #2</code></p>
76+
77+
<p>should read</p>
78+
79+
<p><code>$( this ).dialog( "close" );</code></p>
80+
81+
<p>Also the red arrow that points at line #14 should additionally point at line #11.</p>
82+
83+
<h3>Page 30, Listing 2.1</h3>
84+
85+
<p><code>dialogClass: admin ? "admin" : ""</code></p>
86+
87+
<p>should read</p>
88+
89+
<p><code>dialogClass: admin ? "admin-dialog" : ""</code></p>
90+
</div>
91+
</fieldset>
92+
</body>
93+
</html>

0 commit comments

Comments
 (0)