Skip to content

Commit

Permalink
initial commit. 90% functional
Browse files Browse the repository at this point in the history
  • Loading branch information
oakley808 committed May 20, 2016
0 parents commit a428188
Show file tree
Hide file tree
Showing 246 changed files with 47,355 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .bowerrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"directory": "app/bower_components"
}
13 changes: 13 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# http://editorconfig.org
root = true

[*]
indent_style = space
indent_size = 4
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.md]
trim_trailing_whitespace = false
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/node_modules/
/dist/
.sass-cache/
/bower_components/
21 changes: 21 additions & 0 deletions .jshintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"node": true,
"esnext": true,
"bitwise": true,
"camelcase": true,
"curly": true,
"eqeqeq": true,
"immed": true,
"indent": 2,
"latedef": true,
"newcap": true,
"noarg": true,
"quotmark": "single",
"regexp": true,
"undef": true,
"unused": true,
"strict": true,
"trailing": true,
"smarttabs": true,
"white": true
}
10 changes: 10 additions & 0 deletions _todo.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
initial render time:
lookup default rates for each state in the rates array (which will be empty except for US Avg)
pass down state change handler function

onChange
check our rates object (did we look it up already?)
if it's not there, get rate data from API
put the new data in the rates object
...
recalculate
44 changes: 44 additions & 0 deletions app/bower_components/bootstrap/.bower.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
{
"name": "bootstrap",
"description": "The most popular front-end framework for developing responsive, mobile first projects on the web.",
"keywords": [
"css",
"js",
"less",
"mobile-first",
"responsive",
"front-end",
"framework",
"web"
],
"homepage": "http://getbootstrap.com",
"license": "MIT",
"moduleType": "globals",
"main": [
"less/bootstrap.less",
"dist/js/bootstrap.js"
],
"ignore": [
"/.*",
"_config.yml",
"CNAME",
"composer.json",
"CONTRIBUTING.md",
"docs",
"js/tests",
"test-infra"
],
"dependencies": {
"jquery": "1.9.1 - 2"
},
"version": "3.3.6",
"_release": "3.3.6",
"_resolution": {
"type": "version",
"tag": "v3.3.6",
"commit": "81df608a40bf0629a1dc08e584849bb1e43e0b7a"
},
"_source": "https://github.com/twbs/bootstrap.git",
"_target": ">=3.3.5",
"_originalSource": "bootstrap"
}
5 changes: 5 additions & 0 deletions app/bower_components/bootstrap/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Bootstrap uses [GitHub's Releases feature](https://github.com/blog/1547-release-your-software) for its changelogs.

See [the Releases section of our GitHub project](https://github.com/twbs/bootstrap/releases) for changelogs for each release version of Bootstrap.

Release announcement posts on [the official Bootstrap blog](http://blog.getbootstrap.com) contain summaries of the most noteworthy changes made in each release.
Loading

0 comments on commit a428188

Please sign in to comment.