Code review comment for lp:~zsombi/ubuntu-ui-toolkit/dynamic-tabs

Revision history for this message
Tim Peeters (tpeeters) wrote :

315 + function dymanicRemove() {
316 + for (var i in tabStack.children) {
317 + if (this === tabStack.children[i]) {
318 + tabs.removeTab(i);
319 + break;
320 }

That's a bit confusing for me. What is 'this' here?

« Back to merge proposal