Skip to content

Commit

Permalink
fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
jrjgh committed May 29, 2016
1 parent a6db6d0 commit d58704b
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ An attempt to create a web form for the [KDM](http://kingdomdeath.com/) Charact
Currently aiming to make the forms look like the sheets from KDM and allow saving/loading via JSON output

## How to use
It's fully hosted and ready to use at [kdm-webforms.com](http://kdm-webforms.com/), the site should be fairly intuative to use
It's fully hosted and ready to use at [kdm-webforms.com](http://kdm-webforms.com/), the site should be fairly intuitive to use

## How to run
You simply need to host the contents of this package with a webserver, for development i use
You simply need to host the contents of this package with a webserver, for development I use
[Flask] (http://flask.pocoo.org/) which is what the `kdm.py` is used for but any will do just
make sure the `root` for the web server is the root of the git repo

Expand Down
4 changes: 2 additions & 2 deletions static/json/settlement.json
Original file line number Diff line number Diff line change
Expand Up @@ -639,7 +639,7 @@
"records":[
{
"name":"Storage",
"note":"Gear and Resources may be stored without liimit",
"note":"Gear and Resources may be stored without limit",
"entries":[
[
"",
Expand Down Expand Up @@ -912,4 +912,4 @@
}
]
}
}
}
4 changes: 2 additions & 2 deletions static/templates/char/weapons.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<div class="col-xs-6">
<div class="row">
<div class="col-xs-12">
<big>Weapon Proficieny</big>
<big>Weapon Proficiency</big>
</div>
</div>
<div class="row">
Expand Down Expand Up @@ -43,4 +43,4 @@
</div>

</div>
</div>
</div>
4 changes: 2 additions & 2 deletions static/templates/settlement/milestones.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<div class="row">
<div class="col-xs-12">
<big>Milestone Story Events</big><br />
<small>Trigger these story events when the mileston condition is met.</small>
<small>Trigger these story events when the milestone condition is met.</small>
</div>
</div>
<div class="row" ng-repeat="milestone in kdm.milestones track by $index">
Expand All @@ -25,4 +25,4 @@
</div>
</div>
</div>
</div>
</div>
2 changes: 1 addition & 1 deletion templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
</a>
</li>
<li ng-repeat="tab in tabs track by $index">
<a show-tab="" data-toggle="tab" href="#{{tab.id}}">{{tab.name.name ? tab.name.name : tab.type === "char" ? "Unnamed Char" : "Unamed Settlement"}} <span ng-click="deletetab(tab.id)" type="button"> x </span></a>
<a show-tab="" data-toggle="tab" href="#{{tab.id}}">{{tab.name.name ? tab.name.name : tab.type === "char" ? "Unnamed Char" : "Unnamed Settlement"}} <span ng-click="deletetab(tab.id)" type="button"> x </span></a>
</li>
</ul>
</div>
Expand Down

0 comments on commit d58704b

Please sign in to comment.