Jeremy

Results 14 comments of Jeremy

base on @tristanjahier : ``` $('.ui.dropdown').has('optgroup').each(function() { const $menu = $('').addClass('menu'); $(this).find('optgroup').each(function() { $menu.append("" + this.label + ""); return $(this).children().each(function() { return $menu.append("" + this.innerHTML + ""); }); }); return...

```php $response = $app->handle($_SERVER['REQUEST_URI']); if (!$response->isSent()) { $response->send(); } ``` and please also inject your route service and set the default module/contorller.

检查一下yaconf.check_delay。 https://github.com/laruence/yaconf#runtime-configuration 这里有说明的。

为啥要把Release后的文件放进去啊?

> @zikezhang Could you please add some basic tests for theses methods? Hi @Jeckerson, yes, I will. I am sorry for the inconvenience. So, one of my project, I need...

Hi @niden , I am using `Phalcon\Di\FactoryDefault` for the Http container.

I am wondering if we can rename `private filterService = null;` to `private filter = null;` like it's in the `Cookie` component.