-
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.
- Loading branch information
Showing
17 changed files
with
90 additions
and
15 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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
{{thing-details content=model | ||
createNote='createNote' | ||
back="back" | ||
toggleDone='toggleDone'}} | ||
toggleDone='toggleDone' | ||
deleteContent='deleteContent'}} |
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 +1 @@ | ||
<button class='btn btn-danger clearfix' {{action 'back' on="click"}}>Back</button> | ||
<button class='btn btn-primary clearfix' {{action 'back' on="click"}}>Back</button> |
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,11 +1,10 @@ | ||
import Ember from 'ember'; | ||
|
||
export default Ember.Component.extend({ | ||
isBordered: false, | ||
isHidden: false, | ||
actions: { | ||
toggleTest() { | ||
this.toggleProperty('isBordered'); | ||
this.toggleProperty('isHidden'); | ||
} | ||
} | ||
|
||
}); |
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,17 @@ | ||
<div {{action "toggleTest"}} class="logo-center {{if isBordered "bordered"}}"> | ||
<img class="main-image" src="assets/imgs/keepr-small.png" alt="" /> | ||
<div {{action "toggleTest"}} class="logo-center {{if isHidden "transparent"}}"> | ||
<img class="main-image" src="assets/imgs/keepr-placeholder.png" alt="" /> | ||
</div> | ||
|
||
<div class="{{unless isHidden "hidden"}}" style="margin-top: -40%; z-index: 100; width: 80%; margin-left: auto; margin-right: auto"> | ||
<p style="font-size: 24px; text-align: justify"> | ||
With Keepr, you can create lists of categories based on your own interests and | ||
fill them up with whatever anything and everything you want to do, try, watch, taste, see, experience...<br/> | ||
<br/> | ||
Make notes about every item you add, and then cross them off when you've finally had a chance to give it a shot. | ||
</p> | ||
|
||
<br /> | ||
|
||
<p style="text-align: center; font-weight: 900; font-size: 30px;">Forget Forgetting. Keep track.</p> | ||
|
||
</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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<form {{action 'createCat' on='submit'}}> | ||
{{input placeholder='New Category' | ||
class='input-group form=control' | ||
value=form.text}} | ||
</form> |
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 @@ | ||
<div class="logo-center"> | ||
<img class="small-image" src="assets/imgs/keepr.png" alt="" /> | ||
<img class="small-image" src="assets/imgs/keepr-small.png" alt="" /> | ||
</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
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 +1,3 @@ | ||
<div class="flex"> | ||
{{big-logo}} | ||
</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,3 +1,4 @@ | ||
{{little-logo}} | ||
<h2>Sign In</h2> | ||
|
||
{{sign-in-form submit="signIn" reset="reset"}} |
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,2 +1,3 @@ | ||
{{little-logo}} | ||
<h2>Sign Up</h2> | ||
{{sign-up-form submit="signUp"}} |
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 |
---|---|---|
|
@@ -5,4 +5,5 @@ | |
|
||
.item-completed { | ||
text-decoration: line-through; | ||
color: grey; | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.