$w.Repeater API change / deprecation...

Its fairly straight forward Omid

Instead of this:


$w('#elementName').onClick(event, $wScopedSelector) {
     // Do stuff with $wScopedSelector
}

You do this

$w('#elementName').onClick(event) {
     $wScopedSelector = $w.at(event.context);
    // Do stuff with $wScopedSelector
}

Good luck