@@ -701,7 +700,6 @@
-
diff --git a/js/background.js b/js/background.js
index a826bdd99..94d98147b 100644
--- a/js/background.js
+++ b/js/background.js
@@ -802,17 +802,13 @@
appView.openConversation(groupId, {});
};
+ // $(document).ready(() => {
+ // window.settingsView = new Whisper.SessionSettingsView({
+ // el: $('#settings-container'),
+ // });
+ // window.settingsView.render();
+ // });
-
- $(document).ready(() => {
- window.settingsView = new Whisper.SessionSettingsView({
- el: $('#settings-container'),
- });
- window.settingsView.render();
- });
-
-
-
window.generateID = () =>
Math.random()
.toString(36)
diff --git a/js/modules/signal.js b/js/modules/signal.js
index 960f3a64c..f13542db1 100644
--- a/js/modules/signal.js
+++ b/js/modules/signal.js
@@ -50,8 +50,9 @@ const {
} = require('../../ts/components/conversation/CreateGroupDialog');
const { EditProfileDialog } = require('../../ts/components/EditProfileDialog');
const { UserDetailsDialog } = require('../../ts/components/UserDetailsDialog');
-const { DevicePairingDialog } = require('../../ts/components/DevicePairingDialog');
-const { SessionSettings } = require('../../ts/components/session/SessionSettings');
+const {
+ SessionSettings,
+} = require('../../ts/components/session/SessionSettings');
const { SessionToast } = require('../../ts/components/session/SessionToast');
const { SessionToggle } = require('../../ts/components/session/SessionToggle');
const { SessionModal } = require('../../ts/components/session/SessionModal');
@@ -250,7 +251,6 @@ exports.setup = (options = {}) => {
CreateGroupDialog,
EditProfileDialog,
UserDetailsDialog,
- DevicePairingDialog,
SessionRegistrationView,
ConfirmDialog,
UpdateGroupDialog,
diff --git a/js/views/session_settings_view.js b/js/views/session_settings_view.js
index 1a566c990..4d5dac9b2 100644
--- a/js/views/session_settings_view.js
+++ b/js/views/session_settings_view.js
@@ -2,30 +2,27 @@
// eslint-disable-next-line func-names
(function() {
- 'use strict';
-
- window.Whisper = window.Whisper || {};
-
- Whisper.SessionSettingsView = Whisper.View.extend({
- initialize(options) {
- console.log(options);
+ 'use strict';
- this.render();
- },
- render() {
- this.settingsView = new Whisper.ReactWrapperView({
- className: 'session-settings',
- Component: window.Signal.Components.SessionSettings,
- props: {
- i18n,
- },
- });
-
- this.$el.append(this.settingsView.el);
- },
- close() {
- this.remove();
- },
- });
-})();
+ window.Whisper = window.Whisper || {};
+
+ Whisper.SessionSettingsView = Whisper.View.extend({
+ initialize() {
+ this.render();
+ },
+ render() {
+ this.settingsView = new Whisper.ReactWrapperView({
+ className: 'session-settings',
+ Component: window.Signal.Components.SessionSettings,
+ props: {
+ i18n,
+ },
+ });
+ this.$el.append(this.settingsView.el);
+ },
+ close() {
+ this.remove();
+ },
+ });
+})();
diff --git a/stylesheets/_session.scss b/stylesheets/_session.scss
index 0740db986..76bdcc0f2 100644
--- a/stylesheets/_session.scss
+++ b/stylesheets/_session.scss
@@ -529,7 +529,8 @@ label {
font-size: 15px;
font-weight: 700;
- &__icons, &__close {
+ &__icons,
+ &__close {
width: 60px;
}
&__icons {
@@ -551,7 +552,7 @@ label {
line-height: 16px;
font-size: 13px;
- .message{
+ .message {
text-align: center;
}
}
@@ -560,14 +561,13 @@ label {
display: flex;
justify-content: flex-end;
- &__center{
+ &__center {
align-items: center;
}
.session-button {
margin-left: $session-margin-sm;
}
}
-
}
.session-toggle {
@@ -680,16 +680,8 @@ label {
}
}
-
-
.edit-profile-dialog .image-upload-section {
position: absolute;
margin-top: 50px;
margin-left: 75px;
}
-
-#settings-container {
- width: 100%;
- height: 100%;
- background-color: blue;
-}
\ No newline at end of file
diff --git a/ts/components/ConfirmDialog.tsx b/ts/components/ConfirmDialog.tsx
index ef02efaf0..77f902680 100644
--- a/ts/components/ConfirmDialog.tsx
+++ b/ts/components/ConfirmDialog.tsx
@@ -19,20 +19,24 @@ export class ConfirmDialog extends React.Component
{
public render() {
return (
- null} onOk={() => null}>
-
+ null}
+ onOk={() => null}
+ >
+
{this.props.messageText}
-
+
-
-
-
diff --git a/ts/components/DevicePairingDialog.tsx b/ts/components/DevicePairingDialog.tsx
deleted file mode 100644
index e69de29bb..000000000
diff --git a/ts/components/EditProfileDialog.tsx b/ts/components/EditProfileDialog.tsx
index 438d937a9..671dab958 100644
--- a/ts/components/EditProfileDialog.tsx
+++ b/ts/components/EditProfileDialog.tsx
@@ -2,10 +2,13 @@ import React from 'react';
import classNames from 'classnames';
import { Avatar } from './Avatar';
-import { SessionModal } from './session/SessionModal';
import { SessionButton, SessionButtonColor } from './session/SessionButton';
-import { SessionIconButton, SessionIconType, SessionIconSize } from './session/icon';
-
+import {
+ SessionIconButton,
+ SessionIconSize,
+ SessionIconType,
+} from './session/icon';
+import { SessionModal } from './session/SessionModal';
declare global {
interface Window {
@@ -85,23 +88,23 @@ export class EditProfileDialog extends React.Component {
name="name"
onChange={this.onFileSelected}
/>
-
- {
- const el = this.inputEl.current;
- if (el) {
- el.click();
- }
- }}
- />
+
+ {
+ const el = this.inputEl.current;
+ if (el) {
+ el.click();
+ }
+ }}
+ />