mailboxTemplatesCtrl.js
2.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
'use strict';
angular.module('newApp')
.controller('mailboxTemplatesCtrl', ['$scope', function ($scope) {
$scope.$on('$viewContentLoaded', function () {
$('.email-sidebar').on('click', 'a', function (e) {
e.preventDefault();
var href = $(this).attr('href');
href = href.substring(1);
$('.email-template').removeClass('active');
$('#' + href).addClass('active');
$('.email-sidebar a').removeClass('active');
$(this).addClass('active');
$('.email-templates iframe').each(function () {
if (this.contentWindow.document.body) this.style.height = this.contentWindow.document.body.offsetHeight + 'px';
});
});
$('.responsive').on('click', 'a', function (e) {
e.preventDefault();
var href = $(this).attr('href');
href = href.substring(1);
var widthEmail = "100%";
if (href == "phone") widthEmail = 320;
if (href == "tablet") widthEmail = 600;
if (href == "desktop") widthEmail = "100%";
$('.responsive a').removeClass('active');
$(this).addClass('active');
$(".email-content").css('width', widthEmail);
$('.email-templates iframe').each(function () {
if (href == "phone") this.contentWindow.document.body.style.width = '320px';
if (href == "tablet") this.contentWindow.document.body.style.width = '600px';
if (href == "desktop") this.contentWindow.document.body.style.width = '100%';
this.style.height = this.contentWindow.document.body.offsetHeight + 'px';
});
});
$('iframe').load(function () {
$('.email-templates iframe').each(function () {
if (this.contentWindow.document.body) this.style.height = this.contentWindow.document.body.offsetHeight + 'px';
});
});
});
}]);