Spaces:
Running
Running
File size: 848 Bytes
61e59f4 |
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 |
// Show and bring to top
function showAndMakeTop(element) {
$(element).show();
$(element).bringToTop();
}
$( function() {
// Window drag
$( ".window" ).draggable({ handle: "div.windowtitle" });
// Window resize
$( ".window" ).resizable({ handles: "all", alsoresize: ".windowinner" });
// Window close
$('.windowclose').on("click", function () { $(this).parents('div.window').hide(); });
// Window click-to-bring-to-top
(function() {
var highest = 100;
$.fn.bringToTop = function() {
this.css('z-index', ++highest); // increase highest by 1 and set the style
};
})();
$('.window').click(function() {
$(this).bringToTop();
});
// Icon single click
$('.icon').click(function() {
$(this).find('p').toggleClass('highlight');
});
} ); |