summaryrefslogtreecommitdiff
path: root/web-ui/app/js/services
diff options
context:
space:
mode:
authorGiovane <giovaneliberato@gmail.com>2015-12-30 16:03:27 -0200
committerGiovane <giovaneliberato@gmail.com>2015-12-30 16:03:27 -0200
commit111205c8cd74d553201b42db3041d870ae833165 (patch)
tree4a2a4f5158e45b4802c06336d792f2905c45f020 /web-ui/app/js/services
parentf8418b0a41298777834e00f4276b2a34d8c6ad39 (diff)
Updates jshint to latest version #565
- Change 'use strict' mode to function-level - Update needed files
Diffstat (limited to 'web-ui/app/js/services')
-rw-r--r--web-ui/app/js/services/model/mail.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/web-ui/app/js/services/model/mail.js b/web-ui/app/js/services/model/mail.js
index c41bcff9..64a10c1c 100644
--- a/web-ui/app/js/services/model/mail.js
+++ b/web-ui/app/js/services/model/mail.js
@@ -14,9 +14,8 @@
* You should have received a copy of the GNU Affero General Public License
* along with Pixelated. If not, see <http://www.gnu.org/licenses/>.
*/
-'use strict';
-
define(['helpers/contenttype'], function (contentType) {
+ 'use strict';
function isSentMail() {
return _.has(this, 'mailbox') && this.mailbox.toUpperCase() === 'SENT';
}