only run participate test for sign up if user has no projects

This commit is contained in:
Henry Oswald 2015-11-10 14:06:06 +00:00
parent 23fd12c67d
commit 5598624ee1

View file

@ -11,12 +11,14 @@ define [
$scope.predicate = "lastUpdated"
$scope.reverse = true
sixpack.participate 'first_sign_up', ['default', 'minimial'], (chosenVariation, rawResponse)->
$scope.first_sign_up = chosenVariation
$timeout () ->
recalculateProjectListHeight()
, 10
if $scope.projects.length > 0
$scope.first_sign_up = "default"
else
sixpack.participate 'first_sign_up', ['default', 'minimial'], (chosenVariation, rawResponse)->
$scope.first_sign_up = chosenVariation
$timeout () ->
recalculateProjectListHeight()
, 10
recalculateProjectListHeight = () ->
topOffset = $(".project-list-card")?.offset()?.top