Attempt to make avatar change clearer

paul/schema_breaking_changes
Emmanuel ROHEE 2014-09-02 17:00:47 +02:00
parent bcf30b29ad
commit d3c7567369
2 changed files with 15 additions and 4 deletions

View File

@ -525,3 +525,13 @@ a:active { color: #000; }
font-size: 24px;
}
#user-displayname-input {
width: 160px;
max-width: 155px;
}
#user-save-button {
width: 160px;
font-size: 14px;
}

View File

@ -12,11 +12,12 @@
<div class="profile-avatar">
<img ng-src="{{ (null !== profile.avatarUrl) ? profile.avatarUrl : 'img/default-profile.png' }}" m-file-input="profile.avatarFile"/>
</div>
<div id="user-ids">
<input size="40" ng-model="profile.displayName" placeholder="Your display name"/>
<div>
<input id="user-displayname-input" size="40" ng-model="profile.displayName" placeholder="Your display name"/>
<br/>
<button ng-disabled="(profile.displayName == profileOnServer.displayName) && (profile.avatarUrl == profileOnServer.avatarUrl)"
ng-click="saveProfile()">Save</button>
<button id="user-save-button"
ng-disabled="(profile.displayName === profileOnServer.displayName) && (profile.avatarUrl === profileOnServer.avatarUrl)"
ng-click="saveProfile()">Save changes</button>
</div>
</form>
</div>