fix dropdown position

This commit is contained in:
antelle 2016-04-03 11:23:38 +03:00
parent 8f4b88b3f4
commit 29677458a7
1 changed files with 1 additions and 1 deletions

View File

@ -240,7 +240,7 @@ var DetailsView = Backbone.View.extend({
moreOptions.push({value: 'otp', icon: 'clock-o', text: Locale.detSetupOtp});
var rect = this.moreView.labelEl[0].getBoundingClientRect();
dropdownView.render({
position: {top: rect.bottom, right: rect.right},
position: {top: rect.bottom, left: rect.left},
options: moreOptions
});
this.views.dropdownView = dropdownView;