Skip to content
This repository was archived by the owner on Oct 1, 2024. It is now read-only.

Commit 7bd76cb

Browse files
authored
Merge pull request #84 from geotrev/develop
Updates docs links to github
2 parents 4bb2925 + 3f248f9 commit 7bd76cb

17 files changed

+20
-20
lines changed

docs/accessibility.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@ Undernet.Utils.releaseFocus()
3333

3434
`releaseFocus` doesn't need any arguments, as it assumes you are releasing focus from the most recently captured item.
3535

36-
<p class="has-right-text">Is this article inaccurate? <a href="https://github.com/geotrev/undernet/tree/master/docs/accessibility">Edit this page on Github!</a></p>
36+
<p class="has-right-text">Is this article inaccurate? <a href="https://github.com/geotrev/undernet/tree/master/docs/accessibility.md">Edit this page on Github!</a></p>

docs/accordions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,4 +211,4 @@ Undernet.start()
211211
Undernet.Accordions.start()
212212
```
213213

214-
<p class="has-right-text">Is this article inaccurate? <a href="https://github.com/geotrev/undernet/tree/master/docs/accordions">Edit this page on Github!</a></p>
214+
<p class="has-right-text">Is this article inaccurate? <a href="https://github.com/geotrev/undernet/tree/master/docs/accordions.md">Edit this page on Github!</a></p>

docs/alignment.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,4 +176,4 @@ To manually set elements in a container to grow or shrink, add the class `can-X`
176176
</div>
177177
</div>
178178

179-
<p class="has-right-text">Is this article inaccurate? <a href="https://github.com/geotrev/undernet/tree/master/docs/alignment">Edit this page on Github!</a></p>
179+
<p class="has-right-text">Is this article inaccurate? <a href="https://github.com/geotrev/undernet/tree/master/docs/alignment.md">Edit this page on Github!</a></p>

docs/branding.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,4 +78,4 @@ Finally, import `undernet.scss` in your global stylesheet.
7878

7979
With that, you should be good to go!
8080

81-
<p class="has-right-text">Is this article inaccurate? <a href="https://github.com/geotrev/undernet/tree/master/docs/branding">Edit this page on Github!</a></p>
81+
<p class="has-right-text">Is this article inaccurate? <a href="https://github.com/geotrev/undernet/tree/master/docs/branding.md">Edit this page on Github!</a></p>

docs/buttons.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,4 +101,4 @@ Also Add styles for your regular anchor links.
101101
<a href="#">Just a link!</a>
102102
```
103103

104-
<p class="has-right-text">Is this article inaccurate? <a href="https://github.com/geotrev/undernet/tree/master/docs/buttons">Edit this page on Github!</a></p>
104+
<p class="has-right-text">Is this article inaccurate? <a href="https://github.com/geotrev/undernet/tree/master/docs/buttons.md">Edit this page on Github!</a></p>

docs/color.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ Similar to text, use `has-X-bg` to modify an element's `background-color`, where
1818
<p class="has-gray800-bg">I'm using $gray800!</p>
1919
<p class="has-success-bg">I'm using using success color!</p>
2020

21-
<p class="has-right-text">Is this article inaccurate? <a href="https://github.com/geotrev/undernet/tree/master/docs/color">Edit this page on Github!</a></p>
21+
<p class="has-right-text">Is this article inaccurate? <a href="https://github.com/geotrev/undernet/tree/master/docs/color.md">Edit this page on Github!</a></p>

docs/display.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ A useful utility to have in responsive design is one that modifies with your gri
1818
</p>
1919
```
2020

21-
<p class="has-right-text">Is this article inaccurate? <a href="https://github.com/geotrev/undernet/tree/master/docs/display">Edit this page on Github!</a></p>
21+
<p class="has-right-text">Is this article inaccurate? <a href="https://github.com/geotrev/undernet/tree/master/docs/display.md">Edit this page on Github!</a></p>

docs/download.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ $ npm install undernet
2424
$ yarn add undernet
2525
```
2626

27-
<p class="has-right-text">Is this article inaccurate? <a href="https://github.com/geotrev/undernet/tree/master/docs/downloads">Edit this page on Github!</a></p>
27+
<p class="has-right-text">Is this article inaccurate? <a href="https://github.com/geotrev/undernet/tree/master/docs/download.md">Edit this page on Github!</a></p>

docs/forms.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -136,9 +136,9 @@ Use the fieldset tag to group form elements together. It should sit inside a for
136136

137137
## Disabled State
138138

139-
Using the `[disabled]` attribute will visually and functionally disable the control with this property.
139+
Using the `[disabled]` attribute will visually and functionally disable the control.
140140

141-
The `disabled` class will visually dim the control, but not disable it. The input must return `false` in JavaScript but still receive focus to truly disable clicks and other forms of input if you use the class. Useful for disabling anchor tag buttons.
141+
The `disabled` class will visually dim the control, but not disable it functionally. The input must return `false` in JavaScript but still receive focus to truly disable clicks and other forms of input if you use the class. Useful for disabling anchor tag buttons.
142142

143143
<button disabled class="has-no-margin-bottom">Disabled Button</button>
144144

@@ -167,4 +167,4 @@ The `disabled` class will visually dim the control, but not disable it. The inpu
167167
</label>
168168
```
169169

170-
<p class="has-right-text">Is this article inaccurate? <a href="https://github.com/geotrev/undernet/tree/master/docs/forms">Edit this page on Github!</a></p>
170+
<p class="has-right-text">Is this article inaccurate? <a href="https://github.com/geotrev/undernet/tree/master/docs/forms.md">Edit this page on Github!</a></p>

docs/grid.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ Don’t want padding on your grid, rows, and/or columns? You can remove it all w
270270
<div class="grid has-no-padding">
271271
<div class="row has-no-padding">
272272
<div class="column has-no-padding">
273-
.column
273+
.column.has-no-padding
274274
</div>
275275
</div>
276276
</div>
@@ -320,4 +320,4 @@ By default, a row will be vertically centered. To make the row top-aligned, add
320320

321321
[Learn more about alignment utilities.](/docs/utilities/alignment)
322322

323-
<p class="has-right-text">Is this article inaccurate? <a href="https://github.com/geotrev/undernet/tree/master/docs/grid">Edit this page on Github!</a></p>
323+
<p class="has-right-text">Is this article inaccurate? <a href="https://github.com/geotrev/undernet/tree/master/docs/grid.md">Edit this page on Github!</a></p>

0 commit comments

Comments
 (0)