Merge pull request #23 from luckxu/patch-1

Update laydate.js
pull/3/merge
贤心 2017-06-17 00:05:21 +08:00 committed by GitHub
commit a82f288199
1 changed files with 5 additions and 2 deletions

View File

@ -446,7 +446,10 @@ layui.define(function(exports){
//方位辨别
Dates.orien = function(obj, pos){
var tops, rect = Dates.elem.getBoundingClientRect();
obj.style.left = rect.left + (pos ? 0 : Dates.scroll(1)) + 'px';
if(rect.left < $(window).width() - 250)
obj.style.left = rect.left + (pos ? 0 : Dates.scroll(1)) + 'px';
else
obj.style.left = ($(window).width() - 250) + 'px';
if(rect.bottom + obj.offsetHeight/1.5 <= Dates.winarea()){
tops = rect.bottom - 1;
} else {
@ -826,4 +829,4 @@ layui.define(function(exports){
exports('laydate', laydate);
});
});