-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheventHandler.js
75 lines (64 loc) · 2.24 KB
/
eventHandler.js
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
$(document).ready(function(){
$(document).on("click",".posterDiv",function(){
$(".latest").remove();
$(".classPostDiv").hide();
$(".classAlbumDiv").hide();
var x = $(this).parent().attr("posts-userID");
// $("<p class = \"latest\">Latest Posts</p>").insertBefore($(".classPostDiv").first());
// $("<p class = \"latest\">Latest Albums</p>").insertBefore($(".classAlbumDiv").first());
$("#profileInfo-" + x).prependTo("#profile-" + x);
$("#profileInfo-" + x).show();
$(".classPostDiv[posts-userid = "+ x +"]").show();
$(".classAlbumDiv[album-userid = "+ x +"]").show();
$("html,body").scrollTop(0);
});
$(document).on("click","#homeButton",function(){
$(".classProfileInfoDiv").hide();
$(".classPostDiv").show();
$(".classAlbumDiv").hide();
$(".latest").remove();
});
$(document).on("click", "#viewPhotos", function() {
$(".classProfileInfoDiv").hide();
$(".classPostDiv").hide();
$(".classAlbumDiv").show();
$(".classAlbumDiv").css("display", "flex");
$(".latest").remove();
});
$(document).on("click", ".photoThumbnail", function() {
var photoID = $(this).attr("photoid");
var albumTitle = $(this).parent().parent().attr("albumTitle");
getOriginalImage(photoID,albumTitle);
$("body").addClass("noScroll");
});
$(document).on("click", ".call_modal", function() {
$(".modal").fadeIn();
$(".modal_main").show();
$(".modal_sub").show();
});
$(document).on("click", ".closer", function() {
$(".modal").fadeOut();
$(".modal_main").fadeOut();
$(".modal_sub").fadeOut();
$(".modal_main").empty();
$(".modal_sub").empty();
$("body").removeClass("noScroll");
});
// $(document).on("click",".classPostDiv",function(){
// $(".classPostDiv").hide();
// var x = $(this).attr("posts-userID");
// $("#profileInfo-" + x).show();
// });
$(document).on("click", ".goToAlbum", function() {
var title = $(this).attr("album");
console.log(title);
$(".modal").fadeOut();
$(".modal_main").fadeOut();
$(".modal_sub").fadeOut();
$(".modal_main").empty();
$(".modal_sub").empty();
$("body").removeClass("noScroll");
$(".classAlbumDiv").hide();
$(".classAlbumDiv[albumtitle=\"" + title + "\"]").show();
});
});