-
-
Notifications
You must be signed in to change notification settings - Fork 15
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
1 parent
6059de0
commit 2efa500
Showing
4 changed files
with
102 additions
and
101 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 |
---|---|---|
@@ -1,15 +1,22 @@ | ||
<div class="note-grid-item"> | ||
<div class="quicknote noselect {{#if active}}note-active{{/if}} {{#if isshared}}shared{{/if}} {{#if sharedwith}}shareowner{{/if}}" style="background-color: {{color}}" data-id="{{ id }}" data-timestamp="{{ timestamp }}" > | ||
{{#if isshared}} | ||
<div class='icon-share shared-title' title="Shared by {{ userid }}"></div><div id='title' class='note-title'>{{{ title }}}</div> | ||
<div> | ||
<div class='icon-share shared-title' title="Shared by {{ userid }}"></div> | ||
<div class='note-title'>{{{ title }}}</div> | ||
</div> | ||
<div id='content' class='note-content'>{{{ content }}}</div> | ||
{{else}} | ||
<div class="icon-delete hide-delete-icon icon-delete-note" title="Delete"></div> | ||
{{#if sharedwith}} | ||
<div class='icon-share shared-title-owner' title="Shared with {{ sharedwith }}"></div> | ||
{{/if}} | ||
<div id='title-editable' class='note-title'>{{{ title }}}</div> | ||
<div id='content-editable' class='note-content'>{{{ content }}}</div> | ||
<div> | ||
<div class="icon-delete hide-delete-icon icon-delete-note" title="Delete"></div> | ||
<!-- | ||
{{#if sharedwith}} | ||
<div class='icon-share shared-title-owner' title="Shared with {{ sharedwith }}"></div> | ||
{{/if}} | ||
--> | ||
<div class='note-title'>{{{ title }}}</div> | ||
</div> | ||
<div class='note-content'>{{{ content }}}</div> | ||
{{/if}} | ||
</div> | ||
</div> |