mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-18 14:44:58 +08:00
4bcb9f12d4
This is now more of a problem in the Electron app because of https://github.com/electron/electron/issues/8841 but is still annoying in the webapp if you're taken away from your chat client. Exception is the SSO link, as commented (issue filed at https://github.com/vector-im/riot-web/issues/8247). Fixes https://github.com/vector-im/riot-web/issues/8226
34 lines
992 B
JavaScript
34 lines
992 B
JavaScript
/*
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
|
Copyright 2019 New Vector Ltd
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
import { _t } from '../../../languageHandler';
|
|
import React from 'react';
|
|
|
|
module.exports = React.createClass({
|
|
displayName: 'AuthFooter',
|
|
|
|
render: function() {
|
|
return (
|
|
<div className="mx_AuthFooter">
|
|
<a href="https://matrix.org" target="_blank" rel="noopener">{ _t("powered by Matrix") }</a>
|
|
</div>
|
|
);
|
|
},
|
|
});
|