コード例 #1
0
 /**
  * {@inheritDoc}
  * @see \Ajax\semantic\html\base\HtmlSemDoubleElement::run()
  */
 public function run(JsUtils $js)
 {
     parent::run($js);
     if (isset($this->close)) {
         $js->execOn("click", "#" . $this->identifier . " .close", "\$(this).closest('.message').transition('fade')");
     }
 }
コード例 #2
0
ファイル: HtmlDimmer.php プロジェクト: jcheron/phalcon-jquery
 public function run(JsUtils $js)
 {
     if ($this->_container instanceof HtmlSingleElement) {
         $this->_bsComponent = $js->semantic()->dimmer("#" . $this->_container->getIdentifier(), $this->_params);
     }
     return parent::run($js);
 }
コード例 #3
0
ファイル: HtmlSticky.php プロジェクト: jcheron/phalcon-jquery
 /**
  * {@inheritDoc}
  * @see \Ajax\semantic\html\base\HtmlSemDoubleElement::run()
  */
 public function run(JsUtils $js)
 {
     parent::run($js);
     return $js->semantic()->sticky("#" . $this->identifier, $this->_params);
 }