Skip to content

Commit

Permalink
Small fix for php versions < 7.x
Browse files Browse the repository at this point in the history
Small fix for php versions < 7.x
  • Loading branch information
demogorgorn committed Jan 30, 2018
1 parent a25442f commit 50779a0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions AjaxSubmitButton.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ class AjaxSubmitButton extends Widget
/**
* Icon positions
*/
public const ICON_POSITION_LEFT = 'left';
const ICON_POSITION_LEFT = 'left';

public const ICON_POSITION_RIGHT = 'right';
const ICON_POSITION_RIGHT = 'right';

public $ajaxOptions = [];

Expand Down

0 comments on commit 50779a0

Please sign in to comment.