Jure Erznožnik
- Total activity 18
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 6
- Subscriptions 5
-
Jure Erznožnik created a post, AnsweredDjango template variable type
So I have two different templates, both with same issues: #1: $("#{{ field.uuid }}").toggle({{ condition }}()); #2: function cond() { {% if matching_values_is_list %} var vals = ({{ matching_va... -
-
Jure Erznožnik created a post, Placeholder variable not recognised as object instance (PyCharm JS internal code quality linter)
Settings: EcmaScript 5.1, non-strict So I have an object: device = { ........ emptyStr: function emptyStr(val, isSelector) { if (isSelector) val = $(val).val(); return (val == undefined || ... -
Jure Erznožnik commented, -
-
Jure Erznožnik created a post, PyCharm complaining about unescaped XML character within <script> tag
My .html file: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" xmlns="http://www.w3.org/1999/... -
Jure Erznožnik created a post, Possible bug: classes using meta classes not being detected as issubclass(class, metaclass)
So I have the following code:class TableMeta(type): ... def __init__(cls, name, bases, clsdict): """ :type cls: Table :type name: str :type bases: tuple(type) ...