Browse Source

Fixed bootstrap Modal upgrade.

tags/2.0.0-beta
Qiang Xue 11 years ago
parent
commit
10e436eeb9
  1. 6
      framework/yii/bootstrap/Modal.php

6
framework/yii/bootstrap/Modal.php

@ -88,6 +88,8 @@ class Modal extends Widget
echo $this->renderToggleButton() . "\n";
echo Html::beginTag('div', $this->options) . "\n";
echo Html::beginTag('div', array('class' => 'modal-dialog')) . "\n";
echo Html::beginTag('div', array('class' => 'modal-content')) . "\n";
echo $this->renderHeader() . "\n";
echo $this->renderBodyBegin() . "\n";
}
@ -99,6 +101,8 @@ class Modal extends Widget
{
echo "\n" . $this->renderBodyEnd();
echo "\n" . $this->renderFooter();
echo "\n" . Html::endTag('div'); // modal-content
echo "\n" . Html::endTag('div'); // modal-dialog
echo "\n" . Html::endTag('div');
$this->registerPlugin('modal');
@ -195,7 +199,7 @@ class Modal extends Widget
protected function initOptions()
{
$this->options = array_merge(array(
'class' => 'modal hide',
'class' => 'modal fade',
), $this->options);
Html::addCssClass($this->options, 'modal');

Loading…
Cancel
Save