Melloware

Results 212 issues of Melloware

I sent an email about this too but in case it didn't get through I am trying to optimize a CSS and your site http://dataurl.net/#cssoptimizer is not currently allowing downloads...

$.parseJson is now JSON.parse in JQuery 3.x https://github.com/jquery/jquery-migrate/blob/master/warnings.md JQMIGRATE: jQuery.parseJSON is deprecated; use JSON.parse Cause: The jQuery.parseJSON method in recent jQuery is identical to the native JSON.parse. As of jQuery...

See: https://github.com/melloware/jintellitype/issues/30 Allows you to use greater than Java 8 with JIntellitype.

**Describe the bug** Save Actions failing **What triggered the plugin** Saving my file. **Versions** ``` IntelliJ IDEA 2021.1 (Ultimate Edition) Build #IU-211.6693.111, built on April 6, 2021 Runtime version: 11.0.10+9-b1341.35...

This issue was reported in PrimeFaces: https://github.com/primefaces/primefaces/issues/82 For those unfamiliar with Web Fragments a nice explanation here: https://blogs.oracle.com/swchan/servlet-30-web-fragmentxml I have traced the issue to the fact that in AtmosphereFramework.java it...

Compare numbers and not strings when firing onChange event

### Current behavior We discovered this bug testing your component use in PrimeFaces. Original Ticket: https://github.com/primefaces/primefaces/issues/8610 ### Expected behavior ### Steps to reproduce the problem 1. focus val2 2.change the...

:lady_beetle: Bug

### Current behavior If you set `decimalCharacter : '' ` you get an ugly JS Console Error not really telling you the problem. Error: _"Uncaught SyntaxError: Invalid regular expression: /[^-0123456789\]/:...

:sparkles: User Experience

JQuery has deprecated `trim` and `isFunction` methods. Replace `$.trim()` with `value.trim()`.. `$.trim(element.text())` becomes `element.text().trim()` Replace `$.isFunction(stringOrFunction)` with `typeof stringOrFunction === "function"`