Browse Source

Merge pull request #808 from callmez/master

Modal::clientOptions disable support.
tags/2.0.0-beta
Qiang Xue 11 years ago
parent
commit
802a89f005
  1. 2
      framework/yii/bootstrap/Modal.php

2
framework/yii/bootstrap/Modal.php

@ -205,9 +205,11 @@ class Modal extends Widget
), $this->options);
Html::addCssClass($this->options, 'modal');
if ($this->clientOptions !== false) {
$this->clientOptions = array_merge(array(
'show' => false,
), $this->clientOptions);
}
if ($this->closeButton !== null) {
$this->closeButton = array_merge(array(

Loading…
Cancel
Save