## 2017-07-25 Nice COP Debugging...

Dragging resize was broken for relative objects...

```JS
cop.layer(window, "DevLayer").refineObject(lively, {
  
  setPosition(element, pos) {
    if (element === that)
      console.log("set position " + element + "" + lively.currentStack())
    return cop.proceed(element, pos)
  }
  
})

DevLayer.beGlobal()
```

And we found the problem. It seems to be the snapping code. 

```
set position [object HTMLDivElement]    at getAndCallMember 
    at Function.setPosition 
    at Function.setBounds 
    at Snapping.snapToExtent 
    at Snapping.snapBounds 
```

