Commit 38735209 by whitepixelstudios Committed by GitHub

FABMenu: Expose handleFABButtonCallback

parent e819c860
...@@ -82,7 +82,7 @@ open class FABMenuItem: View { ...@@ -82,7 +82,7 @@ open class FABMenuItem: View {
addSubview(titleLabel) addSubview(titleLabel)
} }
} }
open var titleLabelSide : labelSide = .left open var titleLabelSide : labelSide = .right
public enum labelSide { public enum labelSide {
case left case left
...@@ -231,8 +231,8 @@ open class FABMenu: View { ...@@ -231,8 +231,8 @@ open class FABMenu: View {
} }
} }
/// An internal handler for the FABButton. /// An open handler for the FABButton.
internal var handleFABButtonCallback: ((UIButton) -> Void)? open var handleFABButtonCallback: ((UIButton) -> Void)?
/// An internal handler for the open function. /// An internal handler for the open function.
internal var handleOpenCallback: (() -> Void)? internal var handleOpenCallback: (() -> Void)?
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment