mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-29 12:09:20 +03:00
Small fixes
Release commit
This commit is contained in:
parent
78f09856e3
commit
c26ab305a1
29 changed files with 385 additions and 371 deletions
|
|
@ -9,7 +9,7 @@
|
|||
|
||||
Globals = require('Common/Globals'),
|
||||
Utils = require('Common/Utils'),
|
||||
LinkBuilder = require('Common/LinkBuilder'),
|
||||
Links = require('Common/Links'),
|
||||
|
||||
AbstractModel = require('Knoin/AbstractModel')
|
||||
;
|
||||
|
|
@ -125,7 +125,7 @@
|
|||
*/
|
||||
AttachmentModel.prototype.linkDownload = function ()
|
||||
{
|
||||
return LinkBuilder.attachmentDownload(this.download);
|
||||
return Links.attachmentDownload(this.download);
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
@ -133,7 +133,7 @@
|
|||
*/
|
||||
AttachmentModel.prototype.linkPreview = function ()
|
||||
{
|
||||
return LinkBuilder.attachmentPreview(this.download);
|
||||
return Links.attachmentPreview(this.download);
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
@ -141,7 +141,7 @@
|
|||
*/
|
||||
AttachmentModel.prototype.linkPreviewAsPlain = function ()
|
||||
{
|
||||
return LinkBuilder.attachmentPreviewAsPlain(this.download);
|
||||
return Links.attachmentPreviewAsPlain(this.download);
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue