Script origins control inline policy, all scripts allowed for tab

This commit is contained in:
James Magahern
2020-07-29 17:46:53 -07:00
parent f330293606
commit 32cdcf71f7
14 changed files with 301 additions and 57 deletions

View File

@@ -22,4 +22,11 @@ extension CGRect
return rect
}
public func centeredY(inRect: CGRect) -> CGRect {
var rect = self
rect.origin.y = CGRound((inRect.height - rect.height) / 2.0)
return rect
}
}

View File

@@ -14,4 +14,11 @@ extension UIEdgeInsets
return UIEdgeInsets(top: -top, left: -left, bottom: -bottom, right: -right)
}
}
func subtracting(_ other: UIEdgeInsets) -> UIEdgeInsets {
return UIEdgeInsets(top: self.top - other.top,
left: self.left - other.left,
bottom: self.bottom - other.bottom,
right: self.right - other.right)
}
}