Skip to content

Commit

Permalink
Rerun grunt task with updated modules
Browse files Browse the repository at this point in the history
Also fix comment form focusing on error for all pages
  • Loading branch information
Kaspar Naaber committed Feb 5, 2015
1 parent aee4fe6 commit 36d79e3
Show file tree
Hide file tree
Showing 8 changed files with 1,465 additions and 2,812 deletions.
2 changes: 1 addition & 1 deletion assets/ico-flags.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/ico-flags.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4,256 changes: 1,454 additions & 2,802 deletions javascripts/application.js

Large diffs are not rendered by default.

7 changes: 3 additions & 4 deletions javascripts/application.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions javascripts/src/concat/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@

var initCommonPage = function() {
// Add common page specific functions here.
focusFormWithErrors();

};

var initBlogPage = function() {
Expand All @@ -110,13 +110,13 @@

var initPostPage = function() {
// Add single post layout specific functions here.
focusFormWithErrors();
};

var init = function() {
// Add site wide functions here.
handleLanguageSwitch();
toggleMainMenu();
focusFormWithErrors();
handlePopoverMenuHide();
handleGalleryHover();
handleWindowResize();
Expand Down
4 changes: 3 additions & 1 deletion stylesheets/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -143,13 +143,15 @@ body {
white-space: pre;
line-height: inherit;
background-color: transparent;
overflow-wrap: normal;
word-wrap: normal;
word-break: normal;
}
.content-formatted code {
display: inline-block;
padding: 5px;
word-wrap: break-word;
overflow-wrap: break-word;
word-wrap: break-word;
word-break: break-all;
}
.content-formatted blockquote {
Expand Down
2 changes: 1 addition & 1 deletion stylesheets/main.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion stylesheets/scss/main.scss
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// MAIN STYLESHEET
// Uncomment the partials you want to use in your template and comment out those that you don't need.

@import '../../bower_components/bourbon/dist/bourbon';
@import '../../bower_components/bourbon/app/assets/stylesheets/bourbon';
@import '_mixins';
@import '_mixins-flexbox';
@import '_variables';
Expand Down

0 comments on commit 36d79e3

Please sign in to comment.