-
Notifications
You must be signed in to change notification settings - Fork 30
/
form_buttons.js
35 lines (34 loc) · 1.06 KB
/
form_buttons.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
$(function() {
$(".form-button").click(function(e) {
if(!$(this).hasClass("active")) {
var fullWidth = $(this).hasClass("full-width");
var containerWidth = $(this).outerWidth();
if(fullWidth) {
containerWidth = $(this).parent().width();
}
var input = $(this).find(".input");
var width = containerWidth - $(this).find(".icon").outerWidth() - $(this).find(".submit").outerWidth() - (input.outerWidth() - input.width());
if(fullWidth) {
input.animate({ width: width });
} else {
input.css("width", width);
}
input.css("display", "inline-block");
$(this).addClass("active");
input.focus();
}
});
$(document).click(function(e) {
if(!$(e.target).hasClass("form-button") &&
!$(e.target).parents().is(".form-button")) {
$.each($(".form-button.auto-close.active"), function() {
var input = $(this).find(".input");
input.css({
width: 0,
display: "none"
});
$(this).removeClass("active");
});
}
});
});