Merging release branch 'release-0.7.0'

Этот коммит содержится в:
Christopher Speller
2015-09-01 08:49:54 -04:00
родитель 0b3db018d3 8d6c354811
Коммит 72575ac7bd
20 изменённых файлов: 325 добавлений и 20 удалений

Просмотреть файл

@@ -152,7 +152,6 @@ export default class Login extends React.Component {
);
}
var forgotPassword;
if (loginMessage.length > 0 && emailSignup) {
loginMessage = (
<div>
@@ -162,7 +161,10 @@ export default class Login extends React.Component {
</div>
</div>
);
}
var forgotPassword;
if (emailSignup) {
forgotPassword = (
<div className='form-group'>
<a href={'/' + teamName + '/reset_password'}>I forgot my password</a>

Просмотреть файл

@@ -278,7 +278,6 @@ module.exports = React.createClass({
var lastUnreadElement = $(this.refs[this.lastUnreadChannel].getDOMNode());
if (lastUnreadElement.position().top > container.height()) {
$(this.refs.bottomUnreadIndicator.getDOMNode()).css('bottom', '0');
$(this.refs.bottomUnreadIndicator.getDOMNode()).css('display', 'initial');
} else {
$(this.refs.bottomUnreadIndicator.getDOMNode()).css('display', 'none');

Просмотреть файл

@@ -57,13 +57,14 @@ module.exports = React.createClass({
window.location.href = '/verify_email?email=' + encodeURIComponent(teamSignup.team.email) + '&teamname=' + encodeURIComponent(teamSignup.team.name);
} else {
this.setState({serverError: err.message});
$('#finish-button').button('reset');
}
}.bind(this)
);
}.bind(this),
function error(err) {
this.setState({serverError: err.message});
$('#sign-up-button').button('reset');
$('#finish-button').button('reset');
}.bind(this)
);
},

Просмотреть файл

@@ -139,6 +139,7 @@ body.ios {
width: 100%;
padding: 1em 0 0;
position: relative;
-webkit-overflow-scrolling: touch;
&.hide-scroll::-webkit-scrollbar {
width: 0px !important;
}

Просмотреть файл

@@ -59,7 +59,7 @@
top: 66px;
}
.nav-pills__unread-indicator-bottom {
bottom: 0px;
bottom: 10px;
}
.nav {