Skip to content

Commit

Permalink
Merge pull request #114 from cferdinandi/development
Browse files Browse the repository at this point in the history
Fixed JS concatenation bug
  • Loading branch information
Chris Ferdinandi committed Sep 29, 2014
2 parents cb6154f + 7b8058f commit c5a4f1d
Show file tree
Hide file tree
Showing 14 changed files with 54 additions and 51 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
language: node_js
node_js:
- "0.11"
- "0.10"
before_script:
- npm install -g gulp
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ Kraken is free to use under the [MIT License](http://gomakethings.com/mit/).

Kraken uses [semantic versioning](http://semver.org/).

* v3.8.2 - September 28, 2014
* Fixed JS concatenation bug.
* v3.8.1 - August 24, 2014
* Fixed unit tests path.
* Added feature testing and main JS files to their own subfolders for concatenation.
Expand Down
20 changes: 10 additions & 10 deletions dist/css/kraken.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Kraken v3.8.1
* Kraken v3.8.2
* A lightweight front-end boilerplate, by Chris Ferdinandi.
* http://github.com/cferdinandi/kraken
*
Expand Down Expand Up @@ -324,7 +324,7 @@ body {
font-size: 100%;
line-height: 1.5;
color: #272727;
background: white;
background: #ffffff;
}
@media (min-width: 40em) {
body {
Expand Down Expand Up @@ -362,7 +362,7 @@ p {
* Alternate text colors
*/
.text-muted {
color: gray;
color: #808080;
}

/**
Expand Down Expand Up @@ -491,7 +491,7 @@ hr {
margin: 2em auto;
border: 0;
border-top: 0.0725em solid #e5e5e5;
border-bottom: 0 solid white;
border-bottom: 0 solid #ffffff;
}

strong {
Expand Down Expand Up @@ -524,16 +524,16 @@ sub {
* Highlighting colors
*/
::-moz-selection {
color: white;
color: #ffffff;
background: #0088cc;
}
::selection {
color: white;
color: #ffffff;
background: #0088cc;
}

::-moz-selection {
color: white;
color: #ffffff;
background: #0088cc;
}

Expand Down Expand Up @@ -623,7 +623,7 @@ a .btn:focus,
.btn:active,
a .btn:active,
.btn.active {
color: white;
color: #ffffff;
}

.btn:hover,
Expand All @@ -639,8 +639,8 @@ a .btn:active,
}

.btn-secondary {
background-color: gray;
border-color: gray;
background-color: #808080;
border-color: #808080;
}

.btn-secondary:hover,
Expand Down
16 changes: 16 additions & 0 deletions dist/css/kraken.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/css/kraken.css.min.map
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/** Kraken v3.8.2, by Chris Ferdinandi | http://github.com/cferdinandi/kraken | Licensed under MIT: http://gomakethings.com/mit/ */
2 changes: 1 addition & 1 deletion dist/css/kraken.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/js/detects.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Kraken v3.8.1
* Kraken v3.8.2
* A lightweight front-end boilerplate, by Chris Ferdinandi.
* http://github.com/cferdinandi/kraken
*
Expand Down
Loading

0 comments on commit c5a4f1d

Please sign in to comment.