Skip to content

Commit d213fa9

Browse files
author
Nathan Ford
committed
Fixing typo in README
1 parent 25ffb85 commit d213fa9

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

.DS_Store

6 KB
Binary file not shown.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ Set rules for how you want to adjust styles to eliminate widows – or any group
5959
#### Properties
6060
`widow-adjust` accepts the style property you want to use to fix your paragraph.
6161
```CSS
62-
rag-adjust: padding-right;
62+
widow-adjust: padding-right;
6363
```
6464
_Values:_
6565
* `padding-right` – Increases `padding-right` until the widow is fixed. (Using `box-sizing: border-box;`)

index.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ <h2>Issues</h2>
209209

210210
<footer id="site-footer">
211211

212-
<p>Created by Nathan Ford of <a href="http://artequalswork.com" title="Visit Art=Work">Art=Work</a>. Comments, questions, concerns? Bother me on Twitter: <a href="http://twitter.com/nathan_ford">@nathan_ford</a></p>
212+
<p>Created by Nathan Ford of <a href="http://artequalswork.com" title="Visit Art=Work">Art=Work</a>. Bother me on Twitter: <a href="http://twitter.com/nathan_ford">@nathan_ford</a></p>
213213

214214
</footer>
215215

@@ -240,6 +240,8 @@ <h2>Issues</h2>
240240

241241
<script src="./js/type.js" type="text/javascript"></script>
242242

243+
<!-- Ignore the rest of this... just a script to toggle the styles on and off -->
244+
243245
<script type="text/javascript">
244246

245247
var toggle = document.getElementById('toggle');

js/type.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ var stylefill = {
135135
stylesheets = Array.prototype.slice.call(document.querySelectorAll('link[href*=".css"]')), // grab stylesheet links - not used yet
136136

137137
styleEles = document.getElementsByTagName('style');
138-
138+
139139
if (styleEles.length > 0) {
140140

141141
for (i in styleEles) {
@@ -575,7 +575,7 @@ var type = {
575575

576576
stylefill.options({
577577

578-
externalCSS : false
578+
externalCSS : true
579579

580580
});
581581

0 commit comments

Comments
 (0)