check author in = operator
This commit is contained in:
parent
4e0353b3ef
commit
01cd82427a
|
@ -656,7 +656,12 @@ function handleUserChanges(data, cb)
|
||||||
, op
|
, op
|
||||||
while(iterator.hasNext()) {
|
while(iterator.hasNext()) {
|
||||||
op = iterator.next()
|
op = iterator.next()
|
||||||
if(op.opcode != '+') continue;
|
|
||||||
|
//+ can add text with attribs
|
||||||
|
//= can change or add attribs
|
||||||
|
//- can have attribs, but they are discarded and don't show up in the apool
|
||||||
|
if(op.opcode == '-') continue;
|
||||||
|
|
||||||
op.attribs.split('*').forEach(function(attr) {
|
op.attribs.split('*').forEach(function(attr) {
|
||||||
if(!attr) return
|
if(!attr) return
|
||||||
attr = wireApool.getAttrib(attr)
|
attr = wireApool.getAttrib(attr)
|
||||||
|
|
Loading…
Reference in New Issue