From f0a352edc529273e2efb3990b09168cf76de9276 Mon Sep 17 00:00:00 2001
From: Baptiste Grob <60621355+baptiste-grob@users.noreply.github.com>
Date: Mon, 22 Jun 2020 15:58:11 +0200
Subject: [PATCH] style: remove trailing spaces
---
app/assets/javascripts/ui_models/application.ts | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/app/assets/javascripts/ui_models/application.ts b/app/assets/javascripts/ui_models/application.ts
index 5d2f5a0ab..51d6594f2 100644
--- a/app/assets/javascripts/ui_models/application.ts
+++ b/app/assets/javascripts/ui_models/application.ts
@@ -98,7 +98,7 @@ export class WebApplication extends SNApplication {
(this.scope! as any).application = undefined;
this.scope!.$destroy();
this.scope = undefined;
- /** Allow our Angular directives to be destroyed and any pending digest cycles
+ /** Allow our Angular directives to be destroyed and any pending digest cycles
* to complete before destroying the global application instance and all its services */
setImmediate(() => {
super.deinit();
@@ -210,7 +210,7 @@ export class WebApplication extends SNApplication {
scope.onCancel = customCancel;
scope.application = this;
const el = this.$compile!(`
-
`)(scope);
angular.element(document.body).append(el);
@@ -233,11 +233,11 @@ export class WebApplication extends SNApplication {
const scope = this.scope!.$new(true) as InputModalScope;
scope.type = "password";
scope.title = "Decryption Assistance";
- scope.message = `Unable to decrypt this item with your current keys.
+ scope.message = `Unable to decrypt this item with your current keys.
Please enter your account password at the time of this revision.`;
scope.callback = callback;
const el = this.$compile!(
- ``
)(scope as any);
angular.element(document.body).append(el);
@@ -249,9 +249,9 @@ export class WebApplication extends SNApplication {
scope.content = content;
scope.application = this;
const el = this.$compile!(
- ``
)(scope);
angular.element(document.body).append(el);
}
-}
\ No newline at end of file
+}