Commit d54caaca by Orkhan Alikhanov

Fixed indentation

parent 75d81ffc
...@@ -138,59 +138,59 @@ extension FABMenuItem { ...@@ -138,59 +138,59 @@ extension FABMenuItem {
} }
@objc(FABMenuDelegate) @objc(FABMenuDelegate)
public protocol FABMenuDelegate { public protocol FABMenuDelegate {
/** /**
A delegation method that is executed to determine whether fabMenu should open. A delegation method that is executed to determine whether fabMenu should open.
- Parameter fabMenu: A FABMenu. - Parameter fabMenu: A FABMenu.
*/ */
@objc @objc
optional func fabMenuShouldOpen(fabMenu: FABMenu) -> Bool optional func fabMenuShouldOpen(fabMenu: FABMenu) -> Bool
/** /**
A delegation method that is execited when the fabMenu will open. A delegation method that is execited when the fabMenu will open.
- Parameter fabMenu: A FABMenu. - Parameter fabMenu: A FABMenu.
*/ */
@objc @objc
optional func fabMenuWillOpen(fabMenu: FABMenu) optional func fabMenuWillOpen(fabMenu: FABMenu)
/** /**
A delegation method that is execited when the fabMenu did open. A delegation method that is execited when the fabMenu did open.
- Parameter fabMenu: A FABMenu. - Parameter fabMenu: A FABMenu.
*/ */
@objc @objc
optional func fabMenuDidOpen(fabMenu: FABMenu) optional func fabMenuDidOpen(fabMenu: FABMenu)
/** /**
A delegation method that is executed to determine whether fabMenu should close. A delegation method that is executed to determine whether fabMenu should close.
- Parameter fabMenu: A FABMenu. - Parameter fabMenu: A FABMenu.
*/ */
@objc @objc
optional func fabMenuShouldClose(fabMenu: FABMenu) -> Bool optional func fabMenuShouldClose(fabMenu: FABMenu) -> Bool
/** /**
A delegation method that is execited when the fabMenu will close. A delegation method that is execited when the fabMenu will close.
- Parameter fabMenu: A FABMenu. - Parameter fabMenu: A FABMenu.
*/ */
@objc @objc
optional func fabMenuWillClose(fabMenu: FABMenu) optional func fabMenuWillClose(fabMenu: FABMenu)
/** /**
A delegation method that is execited when the fabMenu did close. A delegation method that is execited when the fabMenu did close.
- Parameter fabMenu: A FABMenu. - Parameter fabMenu: A FABMenu.
*/ */
@objc @objc
optional func fabMenuDidClose(fabMenu: FABMenu) optional func fabMenuDidClose(fabMenu: FABMenu)
/** /**
A delegation method that is executed when the user taps while A delegation method that is executed when the user taps while
the menu is opened. the menu is opened.
- Parameter fabMenu: A FABMenu. - Parameter fabMenu: A FABMenu.
- Parameter tappedAt point: A CGPoint. - Parameter tappedAt point: A CGPoint.
- Parameter isOutside: A boolean indicating whether the tap - Parameter isOutside: A boolean indicating whether the tap
was outside the menu button area. was outside the menu button area.
*/ */
@objc @objc
optional func fabMenu(fabMenu: FABMenu, tappedAt point: CGPoint, isOutside: Bool) optional func fabMenu(fabMenu: FABMenu, tappedAt point: CGPoint, isOutside: Bool)
} }
@objc(FABMenu) @objc(FABMenu)
......
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