summaryrefslogtreecommitdiffstats
path: root/ecomp-portal-BE-common/src/main/webapp/WEB-INF/static/ebz/angular_js/footer_new.js
blob: e2d5afd70577e51ea167255302f5baf3e10f2864 (plain)
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
var feedbackText, pageAddress;
(function ( $ ) {
	$(document).on('click', '.feedbackButtonDiv', function (e) {
		$(".feedbackSection").slideToggle(600, function(){
			if($(".feedbackButton").hasClass("closeFeedbackButton")) {
				$(".footerContainer .feedbackButton").html("Feedback<span class='icon-chevron-down'></span>");
				$(".footerContainer .feedbackButton").removeClass("closeFeedbackButton");
			} else {
				$(".footerContainer .feedbackButton").html("Close<span class='icon-chevron-up'></span>");
				$(".footerContainer .feedbackButton").addClass("closeFeedbackButton");
				$(".footerContainer  .feedbackText").focus();
			}

		});
	});

	$(document).on('click', '.closeFeedback', function (e) {
		$(".feedbackSection").slideUp(600, function(){

		});
	});

	$(document).on('click keypress keyup blur paste','textarea[maxlength]', function(e) {
		var maxlength = $(this).attr('maxlength');
		var val = $(this).val();

		if (val.length > maxlength) {
			$(this).val(val.slice(0, maxlength));
		}
	});

	$(document).on('click', '.feedbackSubmitButton', function (e) {	
		var feedbackTextTemp = $(".feedbackText").val();
		feedbackText = $.trim(feedbackTextTemp);
		pageAddress = window.location.href;
		var feedbackData = {
				commentText: feedbackText,
				sourcePage: pageAddress
		};
		if(feedbackText != null && feedbackText != ''){
			$.ajax({
				type: "post",
				dataType: 'json',
				data: feedbackData,
				url: window.dashboardContext + "/mnm/map/common/saveUserComments.jsp",
				success: function (data) {
					$(".feedbackSection").slideUp(600, function(){
						$(".feedbackText").val("");
						$(".footerContainer .feedbackButton").html("Feedback<span class='icon-chevron-down'></span>");
						$(".footerContainer .feedbackButton").removeClass("closeFeedbackButton");
						$(".feedbackButtonDiv").slideUp(600);
						$(".feedbackResultMsg, #feedbackResultDivider").slideDown(600);
						setTimeout(function() {
							$(".feedbackResultMsg, #feedbackResultDivider").slideUp(600);
							$(".feedbackButtonDiv").slideDown(600);
						}, 3000);
					});
				},
				error: function () {
					console.log("Error Saving Feedback.");
				}
			});
		} else {
			e.preventDefault();
			console.log("Invalid Input String")
		}

	});
}( jQuery ));	

$(function() {
	var footerHeight = 0,
	footerTop = 0,
	$footer = $("#footer");

	positionFooter();

	function positionFooter() {

		footerHeight = $footer.height();
		footerTop = ($(window).scrollTop() + $(window).height() - footerHeight) + "px";

		if (($(document.body).height() + footerHeight) < $(window).height()) {
			$footer.css({
				position: "absolute",
				left: "0",
				right: "0"
			}).animate({
				top: footerTop
			}, 0)
		} else {
			$footer.css({
				position: "static"
			})
		}

	}

	$(window)
	.scroll(positionFooter)
	.resize(positionFooter)
});