Alexander A

Results 12 comments of Alexander A

It's a pity. ## How to change atom`s icon for Windows platform #### No any warranties provided. You follow next instruction on your own risks. It can cause application damage...

May be a [registry magic](http://stackoverflow.com/a/16853372). Dont know, newbee with Atom.

Greetings, would you mind to show config?

@xavierfoucrier, the project will develop as I find the strength to work on weekends :C

AFAIK, no. [twig-loader](https://github.com/zimmo-be/twig-loader#dynamic-templates-and-registering-at-runtime) should help.

Why not to use [include](https://twig.symfony.com/doc/3.x/tags/include.html)?

@kostik-noir ```twig {% include '@svg/lt.svg' %} {% include '@svg/lt.svg' %} ```

[Namespace](https://github.com/radiocity/twig-html-loader#namespaces)

Wrapper doesnt get selectric-open class and dropdown div doesnt appear. Mobile classes: ``` div.selectric-wrapper.selectric-hover.selectric-focus div.selectric-hide-select.has-no-error div.selectric ``` Desktop classes: ``` div.selectric-wrapper.selectric-hover.selectric-focus.selectric-open div.selectric-hide-select.has-no-error div.selectric ```

```php /** * Reads the data from the file * * @return array Excel data */ public function getData() { $loader = \PHPExcel_IOFactory::createReaderForFile($this->filename); $loader->setReadDataOnly(true); $reader = $loader->load($this->filename); $sheet = $reader->setActiveSheetIndex(0);...