This repository has been archived by the owner on Nov 6, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Kenneth Dahlstrøm <[email protected]>
- Loading branch information
Showing
22 changed files
with
261 additions
and
227 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
"ignore_dirs": ["tmp"] | ||
"ignore_dirs": ["tmp", "dist"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,8 +11,3 @@ | |
</div> | ||
</div> | ||
</div> | ||
|
||
|
||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,30 @@ | ||
import Ember from 'ember'; | ||
|
||
export default Ember.Component.extend({ | ||
tagName: 'aside', | ||
classNames: ['internal-nav'], | ||
didInsertElement: function() { | ||
Ember.$('.nav-internal').toc({ | ||
title: '', | ||
listType: 'ul' | ||
}); | ||
//Ember.$('body').scrollspy({ target: 'nav.nav-internal' }); | ||
Ember.$('.nav-internal ul').addClass('nav nav-pills nav-stacked'); | ||
tagName: 'aside', | ||
classNames: ['internal-nav'], | ||
didInsertElement: function() { | ||
Ember.$('.nav-internal').toc({ | ||
title: '', | ||
listType: 'ul', | ||
headers: '.content h1, .content h2, .content h3, .content h4, .content h5, .content h6', | ||
showEffect: 'fadeIn' | ||
}); | ||
//Ember.$('body').scrollspy({ target: 'nav.nav-internal' }); | ||
Ember.$('.nav-internal ul').addClass('nav nav-pills nav-stacked'); | ||
|
||
Ember.$('.nav-internal a').on('click', function(e) { | ||
e.preventDefault(); | ||
var el = Ember.$(this).attr('href'); | ||
Ember.$('.nav-internal a').on('click', function(e) { | ||
e.preventDefault(); | ||
var el = Ember.$(this).attr('href'); | ||
|
||
|
||
|
||
Ember.$('html, body').animate({ | ||
scrollTop: Ember.$(el).offset().top | ||
}, 200); | ||
Ember.$('html, body').animate({ | ||
scrollTop: Ember.$(el).offset().top | ||
}, 200); | ||
|
||
//Ember.$.scrolTo($(this).attr('href')); | ||
//console.log(this); | ||
}); | ||
} | ||
//Ember.$.scrolTo($(this).attr('href')); | ||
//console.log(this); | ||
}); | ||
} | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
import Resolver from 'ember-resolver'; | ||
|
||
export default Resolver; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,50 +1,50 @@ | ||
// Core variables and mixins | ||
@import "bootstrap/variables"; | ||
@import "bootstrap/mixins"; | ||
|
||
// Reset and dependencies | ||
@import "bootstrap/normalize"; | ||
//@import "bootstrap/print"; | ||
@import "bootstrap/glyphicons"; | ||
|
||
// Core CSS | ||
@import "bootstrap/scaffolding"; | ||
@import "bootstrap/type"; | ||
@import "bootstrap/code"; | ||
//@import "bootstrap/grid"; | ||
@import "bootstrap/tables"; | ||
@import "bootstrap/forms"; | ||
@import "bootstrap/buttons"; | ||
|
||
// Components | ||
@import "bootstrap/component-animations"; | ||
@import "bootstrap/dropdowns"; | ||
@import "bootstrap/button-groups"; | ||
@import "bootstrap/input-groups"; | ||
@import "bootstrap/navs"; | ||
@import "bootstrap/navbar"; | ||
@import "bootstrap/breadcrumbs"; | ||
@import "bootstrap/pagination"; | ||
@import "bootstrap/pager"; | ||
@import "bootstrap/labels"; | ||
@import "bootstrap/badges"; | ||
@import "bootstrap/jumbotron"; | ||
@import "bootstrap/thumbnails"; | ||
@import "bootstrap/alerts"; | ||
@import "bootstrap/progress-bars"; | ||
@import "bootstrap/media"; | ||
@import "bootstrap/list-group"; | ||
@import "bootstrap/panels"; | ||
@import "bootstrap/responsive-embed"; | ||
@import "bootstrap/wells"; | ||
@import "bootstrap/close"; | ||
|
||
// Components w/ JavaScript | ||
@import "bootstrap/modals"; | ||
@import "bootstrap/tooltip"; | ||
@import "bootstrap/popovers"; | ||
//@import "bootstrap/carousel"; | ||
|
||
// Utility classes | ||
@import "bootstrap/utilities"; | ||
//@import "bootstrap/responsive-utilities"; | ||
// // Core variables and mixins | ||
// @import "bootstrap/variables"; | ||
// @import "bootstrap/mixins"; | ||
// | ||
// // Reset and dependencies | ||
// @import "bootstrap/normalize"; | ||
// //@import "bootstrap/print"; | ||
// @import "bootstrap/glyphicons"; | ||
// | ||
// // Core CSS | ||
// @import "bootstrap/scaffolding"; | ||
// @import "bootstrap/type"; | ||
// @import "bootstrap/code"; | ||
// //@import "bootstrap/grid"; | ||
// @import "bootstrap/tables"; | ||
// @import "bootstrap/forms"; | ||
// @import "bootstrap/buttons"; | ||
// | ||
// // Components | ||
// @import "bootstrap/component-animations"; | ||
// @import "bootstrap/dropdowns"; | ||
// @import "bootstrap/button-groups"; | ||
// @import "bootstrap/input-groups"; | ||
// @import "bootstrap/navs"; | ||
// @import "bootstrap/navbar"; | ||
// @import "bootstrap/breadcrumbs"; | ||
// @import "bootstrap/pagination"; | ||
// @import "bootstrap/pager"; | ||
// @import "bootstrap/labels"; | ||
// @import "bootstrap/badges"; | ||
// @import "bootstrap/jumbotron"; | ||
// @import "bootstrap/thumbnails"; | ||
// @import "bootstrap/alerts"; | ||
// @import "bootstrap/progress-bars"; | ||
// @import "bootstrap/media"; | ||
// @import "bootstrap/list-group"; | ||
// @import "bootstrap/panels"; | ||
// @import "bootstrap/responsive-embed"; | ||
// @import "bootstrap/wells"; | ||
// @import "bootstrap/close"; | ||
// | ||
// // Components w/ JavaScript | ||
// @import "bootstrap/modals"; | ||
// @import "bootstrap/tooltip"; | ||
// @import "bootstrap/popovers"; | ||
// //@import "bootstrap/carousel"; | ||
// | ||
// // Utility classes | ||
// @import "bootstrap/utilities"; | ||
// //@import "bootstrap/responsive-utilities"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,17 @@ | ||
{ | ||
"name": "design", | ||
"dependencies": { | ||
"ember": "1.13.5", | ||
"ember-cli-shims": "ember-cli/ember-cli-shims#0.0.3", | ||
"ember-cli-test-loader": "ember-cli-test-loader#0.1.3", | ||
"ember-data": "1.13.7", | ||
"ember-load-initializers": "ember-cli/ember-load-initializers#0.1.5", | ||
"ember-qunit": "0.4.7", | ||
"ember-qunit-notifications": "0.0.7", | ||
"ember-resolver": "~0.1.18", | ||
"jquery": "^1.11.1", | ||
"loader.js": "ember-cli/loader.js#3.2.0", | ||
"qunit": "~1.17.1", | ||
"ember": "~2.6.0", | ||
"ember-cli-shims": "0.1.1", | ||
"ember-cli-test-loader": "0.2.2", | ||
"ember-qunit-notifications": "0.1.0", | ||
"showdown": "^1.4.2", | ||
"toc": "[email protected]:ghiculescu/jekyll-table-of-contents.git", | ||
"hiof-layout": "[email protected]:hiof/layout.git", | ||
"hiof-colors": "[email protected]:hiof/colors.git", | ||
"hiof-typography": "[email protected]:hiof/typography.git", | ||
"toc": "[email protected]:ghiculescu/jekyll-table-of-contents.git", | ||
"sass-mq": "~3.2.4", | ||
"highlightjs": "~8.8.0" | ||
"highlightjs": "~8.8.0", | ||
"bootstrap": "~3.3.5" | ||
} | ||
} |
Oops, something went wrong.