12345678910111213141516171819202122232425262728293031323334353637 |
- modal = {
- fns: null,
- show: function(title, text, buttons) {
- if (!buttons) {
- var buttons = [];
- buttons[0] = ["", function() {}];
- buttons[1] = ["", function() {}];
- }
- modal.fns = [buttons[0][1], buttons[1][1]];
- $("body").append(build.modal(title, text, buttons));
- $(".message input").focus();
- },
- close: function() {
- modal.fns = null;
- $(".message_overlay").removeClass("fadeIn").css("opacity", 0);
- setTimeout(function() { $(".message_overlay").remove() }, 300);
- }
- }
|