-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #45 from omarduarte/moment-feature
Moment Creation Feature
- Loading branch information
Showing
24 changed files
with
525 additions
and
322 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
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 @@ | ||
(function() { | ||
'use strict'; | ||
|
||
angular.module('app.moment.items', []); | ||
})(); |
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,13 @@ | ||
<div> | ||
<div class="new-item-placeholder"> | ||
<new-text ng-if="typeSelected === 'text'"></new-text> | ||
<div> | ||
|
||
<button on-tap="selectType('text')" ng-if="newItemButtonWasTapped" class="new-text-button">Add Text</button> | ||
<button ng-if="newItemButtonWasTapped" class="new-image-button">Add Image</button> | ||
|
||
<button ng-disabled="newItemButtonWasTapped" class="new-item-button">+</button> | ||
|
||
<button ng-if="newItemButtonWasTapped" class="new-video">Add Video</button> | ||
<button ng-if="newItemButtonWasTapped" class="new-audio">Add Audio</button> | ||
</div> |
Oops, something went wrong.