-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#26 Upgrade Bootstrap & Font Awesome
- Loading branch information
Showing
40 changed files
with
3,007 additions
and
903 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
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,2 @@ | ||
//noinspection CssUnknownTarget | ||
@import "ember-cli-bootstrap-4/bootstrap"; |
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,7 +1,5 @@ | ||
{ | ||
"name": "ember-cli-textarea-autosize", | ||
"devDependencies": { | ||
"bootstrap-sass": "^3.3.7", | ||
"font-awesome": "^4.7.0" | ||
} | ||
} |
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,13 +1,26 @@ | ||
#!/bin/sh | ||
|
||
ember install ember-cli-bootstrap3-sass | ||
yarn add --dev clipboard | ||
|
||
ember install ct-emberjs-bling | ||
|
||
ember install @fortawesome/ember-fontawesome | ||
yarn add @fortawesome/free-solid-svg-icons --dev | ||
yarn add @fortawesome/free-brands-svg-icons --dev | ||
|
||
ember install ember-auto-import | ||
|
||
ember install ember-cli-app-version | ||
|
||
ember install ember-cli-bootstrap-4 | ||
|
||
ember install ember-cli-deploy | ||
ember install ember-cli-deploy-build | ||
ember install ember-cli-deploy-gzip | ||
ember install ember-cli-deploy-s3 | ||
ember install ember-cli-font-awesome-sass | ||
ember install ember-cli-text-support-mixins@~1 | ||
ember install ember-cli-deploy-slack | ||
|
||
ember install ember-cli-text-support-mixins@~2.0.0 | ||
|
||
yarn add autosize@~4 --dev | ||
yarn add bootswatch@3.3.7 --dev | ||
yarn add autosize --dev | ||
yarn add ember-cli-node-assets # this must go into "dependencies" NOT "devDependencies" |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,15 @@ | ||
import Controller from '@ember/controller'; | ||
|
||
export default Controller.extend({ | ||
actions: { | ||
withSubmit(/*event*/) { | ||
window.alert('<form {{action "submitWithOn" on="submit"}}>'); | ||
return false; | ||
}, | ||
|
||
withOnSubmit(/*event*/) { | ||
window.alert('<form onsubmit={{action "submitWithOn"}}>'); | ||
return false; | ||
} | ||
} | ||
}); |
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 was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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 Route from '@ember/routing/route'; | ||
|
||
export default Route.extend({}); |
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,13 +1,2 @@ | ||
@import "../../../../node_modules/bootswatch/spacelab/variables"; | ||
|
||
$icon-font-path: '/assets/bootstrap/'; // TODO: this should be removed once I fix the bootstrap3-sass addon | ||
//noinspection CssUnknownTarget | ||
@import 'ember-cli-bootstrap3-sass'; | ||
@import "../../../../node_modules/bootswatch/spacelab/bootswatch"; | ||
//noinspection CssUnknownTarget | ||
@import "ember-cli-font-awesome-sass"; | ||
|
||
body { | ||
padding-top: 50px; // for the fixed navbar | ||
margin-bottom: 50%; // to allow scrolling beyond the end of the last example | ||
} | ||
@import "ember-cli-bootstrap-4/bootstrap"; |
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,101 +1,31 @@ | ||
<nav class="navbar navbar-default navbar-fixed-top"> | ||
<section class="my-2"> | ||
<div class="container"> | ||
<div class="navbar-header"> | ||
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" | ||
data-target="#bs-example-navbar-collapse-1" aria-expanded="false"> | ||
<span class="sr-only">Toggle navigation</span> | ||
<span class="icon-bar"></span> | ||
<span class="icon-bar"></span> | ||
<span class="icon-bar"></span> | ||
</button> | ||
{{#link-to "index" class="navbar-brand"}} | ||
ember-cli-textarea-autosize | ||
{{/link-to}} | ||
</div> | ||
|
||
<!-- Collect the nav links, forms, and other content for toggling --> | ||
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1"> | ||
<ul class="nav navbar-nav navbar-right"> | ||
<li> | ||
<a href="https://cybertoothca.github.io/ember-cli-textarea-autosize/" target="_blank"> | ||
<i class="fa fa-book"></i> | ||
Docs | ||
</a> | ||
</li> | ||
<li> | ||
<a href="https://github.com/cybertoothca/ember-cli-textarea-autosize" target="_blank"> | ||
<i class="fa fa-github"></i> | ||
GitHub | ||
</a> | ||
</li> | ||
<li> | ||
<a href="https://www.npmjs.com/package/ember-cli-textarea-autosize" target="_blank"> | ||
npm | ||
</a> | ||
</li> | ||
<li class="dropdown"> | ||
<a href="#" class="dropdown-toggle" data-toggle="dropdown" aria-expanded="false"> | ||
Other Projects <span class="caret"></span> | ||
</a> | ||
<ul class="dropdown-menu"> | ||
<li> | ||
<a href="http://ember-cli-bootstrap3-carousel.cybertooth.io/" target="_blank"> | ||
ember-cli-bootstrap3-carousel | ||
</a> | ||
</li> | ||
<li> | ||
<a href="http://ember-cli-bootstrap3-popover.cybertooth.io/" target="_blank"> | ||
ember-cli-bootstrap3-popover | ||
</a> | ||
</li> | ||
{{!-- | ||
<li> | ||
<a href="http://ember-cli-bootstrap3-tooltip.cybertooth.io/" target="_blank"> | ||
ember-cli-bootstrap3-tooltip | ||
</a> | ||
</li> | ||
--}} | ||
<li> | ||
<a href="http://ember-cli-date-textbox.cybertooth.io/" target="_blank"> | ||
ember-cli-date-textbox | ||
</a> | ||
</li> | ||
<li> | ||
<a href="http://ember-cli-marked-down.cybertooth.io/" target="_blank"> | ||
ember-cli-marked-down | ||
</a> | ||
</li> | ||
<li> | ||
<a href="http://ember-cli-text-support-mixins.cybertooth.io/" target="_blank"> | ||
ember-cli-text-support-mixins | ||
</a> | ||
</li> | ||
<li> | ||
<a href="http://ember-cli-textarea-autosize.cybertooth.io/" target="_blank"> | ||
ember-cli-textarea-autosize | ||
</a> | ||
</li> | ||
<li> | ||
<a href="http://ember-data-bootstrap3-forms.cybertooth.io/" target="_blank"> | ||
ember-data-bootstrap3-forms | ||
</a> | ||
</li> | ||
</ul> | ||
</li> | ||
</ul> | ||
</div> | ||
{{#ct-navbar | ||
appLabel="Textarea Autosize" | ||
appName=(read-config "APP.name") | ||
class="bg-dark navbar-expand-md navbar-dark shadow rounded" | ||
}} | ||
<li class="nav-item"> | ||
{{#link-to "demo.index" class="nav-link"}} | ||
{{fa-icon "tv" size="2x"}} | ||
{{/link-to}} | ||
</li> | ||
{{/ct-navbar}} | ||
</div> | ||
</nav> | ||
</section> | ||
|
||
<section class="container"> | ||
<div class="page-header"> | ||
<h1> | ||
Demo | ||
<img src="http://badge.fury.io/gh/cybertoothca%2Fember-cli-textarea-autosize.svg" | ||
alt="ember-cli-textarea-autosize version"> | ||
<img src="https://badge.fury.io/js/ember-cli-textarea-autosize.svg" alt="ember-cli-textarea-autosize npm"/> | ||
</h1> | ||
<section class="my-3"> | ||
<div class="container"> | ||
{{badge-fury-io appName=(read-config "APP.name")}} | ||
{{badge-built-with appName=(read-config "APP.name") emberCliVersion="2.18.2"}} | ||
{{badge-install-command appName=(read-config "APP.name") version=(app-version versionOnly=true)}} | ||
</div> | ||
</section> | ||
|
||
{{outlet}} | ||
{{outlet}} | ||
|
||
<section class="bg-dark mt-5 text-light"> | ||
<div class="container"> | ||
{{ct-footer class="py-5"}} | ||
</div> | ||
</section> |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.