Skip to content

Instantly share code, notes, and snippets.

@egorvinogradov
Last active August 29, 2015 14:22
Show Gist options
  • Save egorvinogradov/5f2e2f153fd79403072b to your computer and use it in GitHub Desktop.
Save egorvinogradov/5f2e2f153fd79403072b to your computer and use it in GitHub Desktop.
On "Leads for QA", this marks all leads as "Passes review" and saves.
$scope = $('.b-content').scope()
$scope.$apply(function() {
$scope.leadsForQA.results.forEach(function(item) {
item.qa_status = 'Passes review';
})
})
$('.qa-save-button').trigger('click');
location.reload();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment