var app_operate_button = function () {
|
|
return {
|
init: function () {
|
$(".btn-dropdown").parent().attr("style", "position: inherit;");
|
$(".btn-dropdown").click(function () {
|
var heighty = $(this).position().top + 20;
|
var widthx = $(this).position().left;
|
var screen = $(window).width();
|
var offset = $(this).offset();
|
$(this).next('ul').removeAttr("style");
|
$(this).next('ul').css("top", heighty);
|
if ((offset.left + 180) > screen) {
|
var marginr = screen - offset.left - 53;
|
$(this).next('ul').css("margin-right", marginr);
|
$(this).next('ul').addClass("pull-right")
|
}
|
else {
|
$(this).next('ul').css("left", widthx);
|
$(this).next('ul').removeClass("pull-right")
|
}
|
});
|
}
|
}
|
}();
|
|
jQuery(document).ready(function () {
|
app_operate_button.init();
|
});
|