Commit c06e9caf by callmez

Modal::clientOptions disable support.

parent 1072abb1
......@@ -204,10 +204,12 @@ class Modal extends Widget
'tabindex' => -1,
), $this->options);
Html::addCssClass($this->options, 'modal');
$this->clientOptions = array_merge(array(
'show' => false,
), $this->clientOptions);
if ($this->clientOptions !== false) {
$this->clientOptions = array_merge(array(
'show' => false,
), $this->clientOptions);
}
if ($this->closeButton !== null) {
$this->closeButton = array_merge(array(
......
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