mirror of
https://github.com/moparisthebest/mail
synced 2024-11-22 17:02:17 -05:00
Merge pull request #217 from whiteout-io/dev/WO-751
[WO-751] Change naming from favorite to flag
This commit is contained in:
commit
e06fff4385
@ -169,7 +169,7 @@ var ActionBarCtrl = function($scope, email, dialog, statusDisplay) {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
statusDisplay.update(flagged ? 'Adding message to favorites...' : 'Removing message from favorites');
|
statusDisplay.update(flagged ? 'Adding star to message...' : 'Removing star from message');
|
||||||
|
|
||||||
var originalState = message.flagged;
|
var originalState = message.flagged;
|
||||||
message.flagged = flagged;
|
message.flagged = flagged;
|
||||||
@ -180,7 +180,7 @@ var ActionBarCtrl = function($scope, email, dialog, statusDisplay) {
|
|||||||
if (err && err.code === 42) {
|
if (err && err.code === 42) {
|
||||||
// offline, restore
|
// offline, restore
|
||||||
message.unread = originalState;
|
message.unread = originalState;
|
||||||
statusDisplay.update('Unable to ' + (flagged ? 'add message to' : 'remove message from') + ' favorites in offline mode!');
|
statusDisplay.update('Unable to ' + (flagged ? 'add star to' : 'remove star from') + ' message in offline mode!');
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -220,7 +220,7 @@
|
|||||||
&__flags-checked {
|
&__flags-checked {
|
||||||
display: none; // feature on touch layout not available for now
|
display: none; // feature on touch layout not available for now
|
||||||
}
|
}
|
||||||
&__flags-favorite {
|
&__flags-flagged {
|
||||||
display: none; // feature on touch layout not available for now
|
display: none; // feature on touch layout not available for now
|
||||||
}
|
}
|
||||||
&__flags-encrypted {
|
&__flags-encrypted {
|
||||||
@ -373,7 +373,7 @@
|
|||||||
padding: 0.5em 0 0.5em 1em;
|
padding: 0.5em 0 0.5em 1em;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
&__flags-favorite {
|
&__flags-flagged {
|
||||||
// add invisible padding to increase clickable area around star
|
// add invisible padding to increase clickable area around star
|
||||||
margin: -0.5em 0 -0.5em;
|
margin: -0.5em 0 -0.5em;
|
||||||
padding: 0.5em 0 0.5em;
|
padding: 0.5em 0 0.5em;
|
||||||
|
@ -37,7 +37,7 @@
|
|||||||
<ul id="dropdown-more" class="dropdown">
|
<ul id="dropdown-more" class="dropdown">
|
||||||
<li><button wo-touch="state.read.open ? markMessage(state.mailList.selected, false) : markCheckedMessages(false)">Mark as read</button></li>
|
<li><button wo-touch="state.read.open ? markMessage(state.mailList.selected, false) : markCheckedMessages(false)">Mark as read</button></li>
|
||||||
<li><button wo-touch="state.read.open ? markMessage(state.mailList.selected, true) : markCheckedMessages(true)">Mark as unread</button></li>
|
<li><button wo-touch="state.read.open ? markMessage(state.mailList.selected, true) : markCheckedMessages(true)">Mark as unread</button></li>
|
||||||
<li><button wo-touch="state.read.open ? flagMessage(state.mailList.selected, true) : flagCheckedMessages(true)">Flag message</button></li>
|
<li><button wo-touch="state.read.open ? flagMessage(state.mailList.selected, true) : flagCheckedMessages(true)">Add star</button></li>
|
||||||
<li><button wo-touch="state.read.open ? flagMessage(state.mailList.selected, false) : flagCheckedMessages(false)">Unflag message</button></li>
|
<li><button wo-touch="state.read.open ? flagMessage(state.mailList.selected, false) : flagCheckedMessages(false)">Remove star</button></li>
|
||||||
</ul><!--/dropdown-->
|
</ul><!--/dropdown-->
|
||||||
</div>
|
</div>
|
||||||
|
@ -37,9 +37,9 @@
|
|||||||
<span><svg role="presentation"><use xlink:href="#icon-check" /></svg></span>
|
<span><svg role="presentation"><use xlink:href="#icon-check" /></svg></span>
|
||||||
</label>
|
</label>
|
||||||
</li>
|
</li>
|
||||||
<li class="mail-list-entry__flags-favorite" wo-touch="flag(email, !email.flagged); $event.stopPropagation()">
|
<li class="mail-list-entry__flags-flagged" wo-touch="flag(email, !email.flagged); $event.stopPropagation()">
|
||||||
<svg ng-show="email.flagged"><use xlink:href="#icon-star_filled" /><title>Favorited</title></svg>
|
<svg ng-show="email.flagged"><use xlink:href="#icon-star_filled" /><title>Starred</title></svg>
|
||||||
<svg ng-show="!email.flagged"><use xlink:href="#icon-star" /><title>Not Favorited</title></svg>
|
<svg ng-show="!email.flagged"><use xlink:href="#icon-star" /><title>Not Starred</title></svg>
|
||||||
</li>
|
</li>
|
||||||
<li class="mail-list-entry__flags-encrypted">
|
<li class="mail-list-entry__flags-encrypted">
|
||||||
<svg ng-show="email.encrypted"><use xlink:href="#icon-encrypted" /><title>Encrypted</title></svg>
|
<svg ng-show="email.encrypted"><use xlink:href="#icon-encrypted" /><title>Encrypted</title></svg>
|
||||||
|
@ -26,7 +26,7 @@
|
|||||||
<svg ng-if="folder.type === 'Flagged'" role="presentation">
|
<svg ng-if="folder.type === 'Flagged'" role="presentation">
|
||||||
<use xlink:href="#icon-star" />
|
<use xlink:href="#icon-star" />
|
||||||
</svg>
|
</svg>
|
||||||
{{folder.type}}
|
{{folder.type === 'Flagged' ? 'Starred' : folder.type}}
|
||||||
<span ng-show="folder.count > 0" class="nav__counter">{{folder.count}}</span>
|
<span ng-show="folder.count > 0" class="nav__counter">{{folder.count}}</span>
|
||||||
</a>
|
</a>
|
||||||
<!--<button class="btn-icon-very-light">
|
<!--<button class="btn-icon-very-light">
|
||||||
|
@ -16,9 +16,9 @@
|
|||||||
<header class="read__header">
|
<header class="read__header">
|
||||||
<div class="read__controls">
|
<div class="read__controls">
|
||||||
<span class="u-hidden-lg" ng-controller="ActionBarCtrl">
|
<span class="u-hidden-lg" ng-controller="ActionBarCtrl">
|
||||||
<button wo-touch="flagMessage(state.mailList.selected, !state.mailList.selected.flagged)" class="btn-icon-light" title="{{state.mailList.selected.flagged ? 'Remove from Favorites' : 'Add to Favorites'}}">
|
<button wo-touch="flagMessage(state.mailList.selected, !state.mailList.selected.flagged)" class="btn-icon-light" title="{{state.mailList.selected.flagged ? 'Remove Star' : 'Add Star'}}">
|
||||||
<svg ng-show="state.mailList.selected.flagged"><use xlink:href="#icon-star_filled" /><title>Favorited</title></svg>
|
<svg ng-show="state.mailList.selected.flagged"><use xlink:href="#icon-star_filled" /><title>Starred</title></svg>
|
||||||
<svg ng-show="!state.mailList.selected.flagged"><use xlink:href="#icon-star" /><title>Not Favorited</title></svg>
|
<svg ng-show="!state.mailList.selected.flagged"><use xlink:href="#icon-star" /><title>Not Starred</title></svg>
|
||||||
</button>
|
</button>
|
||||||
<button class="btn-icon-light" title="Move mail" wo-dropdown="#read-dropdown-folder" wo-dropdown-position="center">
|
<button class="btn-icon-light" title="Move mail" wo-dropdown="#read-dropdown-folder" wo-dropdown-position="center">
|
||||||
<svg><use xlink:href="#icon-folder" /><title>Move mail</title></svg>
|
<svg><use xlink:href="#icon-folder" /><title>Move mail</title></svg>
|
||||||
@ -128,9 +128,9 @@
|
|||||||
<div class="toolbar">
|
<div class="toolbar">
|
||||||
<ul class="toolbar__actions">
|
<ul class="toolbar__actions">
|
||||||
<li>
|
<li>
|
||||||
<button wo-touch="flagMessage(state.mailList.selected, !state.mailList.selected.flagged)" class="btn-icon-light" title="{{state.mailList.selected.flagged ? 'Remove from Favorites' : 'Add to Favorites'}}">
|
<button wo-touch="flagMessage(state.mailList.selected, !state.mailList.selected.flagged)" class="btn-icon-light" title="{{state.mailList.selected.flagged ? 'Remove Star' : 'Add Star'}}">
|
||||||
<svg ng-show="state.mailList.selected.flagged"><use xlink:href="#icon-star_filled" /><title>Favorited</title></svg>
|
<svg ng-show="state.mailList.selected.flagged"><use xlink:href="#icon-star_filled" /><title>Starred</title></svg>
|
||||||
<svg ng-show="!state.mailList.selected.flagged"><use xlink:href="#icon-star" /><title>Not Favorited</title></svg>
|
<svg ng-show="!state.mailList.selected.flagged"><use xlink:href="#icon-star" /><title>Not Starred</title></svg>
|
||||||
</button>
|
</button>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
|
Loading…
Reference in New Issue
Block a user