-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathantipattern.js
29 lines (27 loc) · 949 Bytes
/
antipattern.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
$(function() {
var no = $('<div class="no"></div>').hide(),
body = $("body");
body.append(no);
$("#preso").bind("showoff:loaded", function(event) {
$(".content").bind("showoff:next", function(event) {
var slide = $(currentSlide).find(".content");
no.hide();
if(slide.hasClass("antipattern") && (incrCurr >= incrSteps)) {
if(!slide.data("overlaid")) {
no.show();
slide.data("overlaid", true);
event.preventDefault();
} else {
slide.data("overlaid", false);
}
}
});
$(".content").bind("showoff:prev", function(event) {
var slide = $(currentSlide).find(".content");
no.hide();
if(slide.hasClass("antipattern")) {
slide.data("overlaid", false);
}
});
});
});