Browse Source

Formatting on rtl

pull/2092/head
jlukic 9 years ago
parent
commit
a60deeba36
1 changed files with 6 additions and 1 deletions
  1. 7
      src/definitions/modules/popup.js

7
src/definitions/modules/popup.js

@ -598,10 +598,13 @@ $.fn.popup = function(parameters) {
set: { set: {
position: function(position, arrowOffset) { position: function(position, arrowOffset) {
// exit conditions
if($target.length == 0 || $popup.length == 0) { if($target.length == 0 || $popup.length == 0) {
module.error(error.notFound); module.error(error.notFound);
return; return;
} }
var var
windowWidth = $(window).width(), windowWidth = $(window).width(),
windowHeight = $(window).height(), windowHeight = $(window).height(),
@ -623,7 +626,9 @@ $.fn.popup = function(parameters) {
? parseInt( window.getComputedStyle(targetElement).getPropertyValue('margin-top'), 10) ? parseInt( window.getComputedStyle(targetElement).getPropertyValue('margin-top'), 10)
: 0, : 0,
marginLeft = (settings.inline) marginLeft = (settings.inline)
? parseInt( window.getComputedStyle(targetElement).getPropertyValue(module.is.rtl() ? 'margin-right' : 'margin-left'), 10)
? module.is.rtl()
? parseInt( window.getComputedStyle(targetElement).getPropertyValue('margin-right'), 10)
: parseInt( window.getComputedStyle(targetElement).getPropertyValue('margin-left') , 10)
: 0, : 0,
target = (settings.inline || settings.popup) target = (settings.inline || settings.popup)

Loading…
Cancel
Save