Skip to content

Commit

Permalink
Add viewport units to menuTypeModal
Browse files Browse the repository at this point in the history
  • Loading branch information
cyrezdev committed May 10, 2016
1 parent 2046c18 commit abb9534
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions administrator/components/com_menus/models/fields/menutype.php
Original file line number Diff line number Diff line change
Expand Up @@ -90,12 +90,14 @@ function jSelectPosition_' . $this->id . '(name) {
'bootstrap.renderModal',
'menuTypeModal',
array(
'url' => $link,
'title' => JText::_('COM_MENUS_ITEM_FIELD_TYPE_LABEL'),
'width' => '800px',
'height' => '300px',
'footer' => '<button type="button" class="btn" data-dismiss="modal" aria-hidden="true">'
. JText::_("JLIB_HTML_BEHAVIOR_CLOSE") . '</button>'
'url' => $link,
'title' => JText::_('COM_MENUS_ITEM_FIELD_TYPE_LABEL'),
'width' => '800px',
'height' => '300px',
'modalWidth' => '80',
'bodyHeight' => '70',
'footer' => '<button type="button" class="btn" data-dismiss="modal" aria-hidden="true">'
. JText::_("JLIB_HTML_BEHAVIOR_CLOSE") . '</button>'
)
);
$html[] = '<input class="input-small" type="hidden" name="' . $this->name . '" value="'
Expand Down

0 comments on commit abb9534

Please sign in to comment.