I've made the painfull experience that jQlite does not work like jQuery. The following statement is plain wrong:
jqLite is a tiny, API-compatible subset of jQuery that allows Angular to manipulate the DOM
If I set in my css the
.pane2 {
position: absolute;
right: 20%;
}
The following will work with jQuery but not with jQlite. Is this a bug or is this just undocumented, that jQlite can't read from percent calculated values?
var right = parseInt(pane2.elem.css('right'));
In jQlite is right
NaN. In jQuery is right
the correct integer value.