<Regenaxer>
m_mans: Do you have any new info about the style issue in @lib/form.js?
<m_mans>
Regenaxer: no, I've postponed that issue a little
abel-normand has joined #picolisp
<Regenaxer>
ok
<cess11>
happy holidays
<Regenaxer>
Hi cess11, same!
<clacke[m]>
Merry Gravmass!
orivej has quit [Ping timeout: 248 seconds]
Unscrmbl-aw has joined #picolisp
orivej has joined #picolisp
Unscrmbl-aw has quit [Quit: Leaving.]
Unscrmbl-aw has joined #picolisp
<Unscrmbl-aw>
hi all! happy holidays!
jibanes has quit [Ping timeout: 256 seconds]
Unscrmbl-aw is now known as aw-
aw- has quit [Client Quit]
jibanes has joined #picolisp
aw- has joined #picolisp
<aw->
not sure if my last message appeared correctly
<aw->
happy holidays!
<m_mans>
Regenaxer: here?
<m_mans>
we could change form.l:262
<m_mans>
- val = j >= 0? cls.substr(j+2) : "";
<m_mans>
+ val = j >= 0? cls.substr(j+2) : cls;
<m_mans>
but small issue remains in this case
<m_mans>
e.g, if field value is -1, thus class attr value is "red field" (during initial GET)
<m_mans>
then we change value to -2. After handling JS the class attr value become "red red field". Visually everything is still correct
<m_mans>
/become/becomes/
<m_mans>
then we change field value to positive number. JS handler strips "red " from class attr, thus we have class="red field" again. So finally we see positive value but in red color