Alex Panasenko

Results 5 comments of Alex Panasenko

You can use jQuery.data() to pass data around. ``` $("#modal").each(function() { $(this).iziModal({ width: '800px', onOpening: function(modal) { modal.startLoading(); $.get(modal.$element.data('href'), function(data) { // get data $(".iziModal-content", modal.$element).html(data); modal.stopLoading(); }); } });...

I've removed "element-case": "lower" from my config for now.

Hi, If used for a module does it mean to override a module's standard helper.php, for example in the case of mod_tags_similar it would be ModTagssimilarHelper class, is that right?...

I just realized that Goober cleans the comments just fine, it's the string that's formed from template literal before goober gets in the game. It's tricky to overlook though.

For now, I've coded theme/order dependent global styles as object, while in other places, within my app, I use goober only with object notation. There's a related issue styled-components/babel-plugin-styled-components/issues/12, it's...