Skip to content

Commit

Permalink
Fixed #236
Browse files Browse the repository at this point in the history
  • Loading branch information
poonwu committed Oct 19, 2016
1 parent 5bf38dd commit 6c9e80e
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
8 changes: 6 additions & 2 deletions app/js/controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -782,8 +782,8 @@ angular.module('reachRabbitApp.influencer.controller', ['reachRabbitApp.service'
});
}
])
.controller('InfluencerProfileController', ['$scope', '$window', '$stateParams', 'AccountService', 'NcAlert', 'UserProfile', 'validator', 'util',
function ($scope, $window, $stateParams, AccountService, NcAlert, UserProfile, validator, util) {
.controller('InfluencerProfileController', ['$scope', '$window', '$stateParams', 'AccountService', 'NcAlert', 'UserProfile', 'validator', 'util', 'smoothScroll',
function ($scope, $window, $stateParams, AccountService, NcAlert, UserProfile, validator, util, smoothScroll) {
util.warnOnExit($scope);
$scope.showStickyToolbar = !_.isNil($stateParams.showToolbar);
$scope.form = {};
Expand All @@ -800,6 +800,10 @@ angular.module('reachRabbitApp.influencer.controller', ['reachRabbitApp.service'
value: 'NotSpecified'
}];

if($stateParams.showVerify) {
var element = document.getElementById('verify');
smoothScroll(element);
}
$scope.isValidate = function (model, error) {
if (error === 'required' && model.$name === 'profilePicture') {
return $scope.form.$submitted;
Expand Down
2 changes: 1 addition & 1 deletion app/js/route.js
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ angular.module('reachRabbitApp.influencer.routes', ['ui.router'])
controller: 'InfluencerProfileController'
})
.state('influencer-profile-published', {
url: '/influencer-profile-published?showToolbar',
url: '/influencer-profile-published?showToolbar&showVerify',
templateUrl: 'view/influencer-profile-published.html',
controller: 'InfluencerProfileController'
})
Expand Down
2 changes: 1 addition & 1 deletion app/view/influencer-profile.html
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ <h1>แก้ไข Profile ของฉัน</h1>
การยืนยันตัวตนจะช่วยให้คุณดูน่าเชื่อถือขึ้น และ สามารถถอนเงินได้ถูกต้องตามกฎหมาย ทางบริษัทจะไม่แชร์ข้อมูลเหล่านี้ให้กับใคร
</div>

<div class="card-row">
<div class="card-row" id="verify">
<div class="card-title col-xs-12">
<div class="card-title-content">
ข้อมูลยืนยันตัวตน
Expand Down
2 changes: 1 addition & 1 deletion app/view/influencer-wallet.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<div class="zone-alert" cute-bunny-hide>
<div nc-alert="alert"></div>
<div nc-alert type="warning" closable="false" ng-show="!isVerify">
กรุณากรอกข้อมูลยืนยันตัวตนในหน้า Profile ให้ครบ ก่อนถอนเงิน <a ui-sref="influencer-profile">กดที่นี่เพื่อใส่ข้อมูลเพิ่ม</a>
กรุณากรอกข้อมูลยืนยันตัวตนในหน้า Profile ให้ครบ ก่อนถอนเงิน <a ui-sref="influencer-profile({showVerify: true})">กดที่นี่เพื่อใส่ข้อมูลเพิ่ม</a>
</div>
</div>
<zone-header historyback="false">
Expand Down

0 comments on commit 6c9e80e

Please sign in to comment.