mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-03-03 19:43:04 +08:00
fix(build): Don't delete plugin package.json files, restore ellipsis (@sdw consulted HIG!)
This commit is contained in:
parent
68d08fda85
commit
162aac4943
4 changed files with 3 additions and 5 deletions
|
@ -26,8 +26,6 @@ module.exports = (grunt) ->
|
|||
|
||||
moduleCache = metadata._nylasModuleCache ? {}
|
||||
|
||||
rm metadataPath
|
||||
|
||||
extensions = moduleCache.extensions?['.json'] ? []
|
||||
i = extensions.indexOf('package.json')
|
||||
if i >= 0 then extensions.splice(i, 1)
|
||||
|
|
|
@ -64,7 +64,7 @@ class TemplatePicker extends React.Component {
|
|||
|
||||
render() {
|
||||
const button = (
|
||||
<button className="btn btn-toolbar narrow" title="Insert email template">
|
||||
<button className="btn btn-toolbar narrow" title="Insert email template…">
|
||||
<RetinaImg url="nylas://composer-templates/assets/icon-composer-templates@2x.png" mode={RetinaImg.Mode.ContentIsMask}/>
|
||||
|
||||
<RetinaImg name="icon-composer-dropdown.png" mode={RetinaImg.Mode.ContentIsMask}/>
|
||||
|
|
|
@ -71,7 +71,7 @@ class TranslateButton extends React.Component
|
|||
# `RetinaImg` will automatically chose the best image format for our display.
|
||||
#
|
||||
_renderButton: =>
|
||||
<button className="btn btn-toolbar" title="Translate email body">
|
||||
<button className="btn btn-toolbar" title="Translate email body…">
|
||||
<RetinaImg mode={RetinaImg.Mode.ContentIsMask} url="nylas://composer-translate/assets/icon-composer-translate@2x.png" />
|
||||
|
||||
<RetinaImg name="icon-composer-dropdown.png" mode={RetinaImg.Mode.ContentIsMask}/>
|
||||
|
|
|
@ -148,7 +148,7 @@ class SendLaterPopover extends Component {
|
|||
}
|
||||
}
|
||||
return (
|
||||
<button className={className} title="Send later">
|
||||
<button className={className} title="Send later…">
|
||||
<RetinaImg name="icon-composer-sendlater.png" mode={RetinaImg.Mode.ContentIsMask}/>
|
||||
{dateInterpretation}
|
||||
<span> </span>
|
||||
|
|
Loading…
Reference in a new issue