fix test for placement check

This commit is contained in:
vitalets 2013-08-07 11:44:03 +04:00
parent e21d092f0b
commit ada3a4350a

@ -72,7 +72,7 @@
var title = 'abc', var title = 'abc',
//add to fx because qunit-fixture has wrong positioning //add to fx because qunit-fixture has wrong positioning
e = $('<a href="#" id="a"></a>').appendTo(fx).editable({ e = $('<a href="#" id="a"></a>').appendTo(fx).editable({
placement: 'bottom', placement: 'top',
title: title title: title
}); });
@ -82,7 +82,7 @@
//todo: for jqueryui phantomjs calcs wrong position. Skip this test.. //todo: for jqueryui phantomjs calcs wrong position. Skip this test..
if(!/phantom/i.test(navigator.userAgent) && e.data('editableContainer').containerName !== 'tooltip') { if(!/phantom/i.test(navigator.userAgent) && e.data('editableContainer').containerName !== 'tooltip') {
ok(p.offset().top > e.offset().top, 'placement ok'); ok(p.offset().top < e.offset().top, 'placement ok');
} }
//check title //check title