From 7fd72fc422506007e72af59639a897e75a4cff8e Mon Sep 17 00:00:00 2001 From: Harvey Kandola Date: Sat, 4 Jun 2016 14:43:02 +0100 Subject: [PATCH] started new release 12.4 + fixed Intercom message --- app/app/components/document/page-wizard.js | 20 ++++++++++---------- documize/api/endpoint/router.go | 2 +- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/app/app/components/document/page-wizard.js b/app/app/components/document/page-wizard.js index b988bbfd..6faca932 100644 --- a/app/app/components/document/page-wizard.js +++ b/app/app/components/document/page-wizard.js @@ -35,9 +35,9 @@ export default Ember.Component.extend(NotifierMixin, { this.set("sections", sections); - // if (this.session.get('popupBlocked')) { - // this.showNotification("Hmm, looks like your browser is blocking popups..."); - // } + // if (this.session.get('popupBlocked')) { + // this.showNotification("Hmm, looks like your browser is blocking popups..."); + // } }, onCancel() { @@ -46,22 +46,22 @@ export default Ember.Component.extend(NotifierMixin, { onAction() { let title = this.get("title"); - let section = this.get("sections").findBy("selected", true); + let section = this.get("sections").findBy("selected", true); let contentType = section.contentType; - if (section.preview) { - this.showNotification("Coming soon!"); - return; - } + if (section.preview) { + this.showNotification("Coming soon!"); + return; + } if (is.empty(title)) { $("#page-title").addClass("error").focus(); return; } - this.audit.record('added section' + section.contentType); + this.audit.record('added section ' + section.contentType); this.attrs.onAction(title, contentType); } } -}); +}); \ No newline at end of file diff --git a/documize/api/endpoint/router.go b/documize/api/endpoint/router.go index 95a66337..e42f52c9 100644 --- a/documize/api/endpoint/router.go +++ b/documize/api/endpoint/router.go @@ -30,7 +30,7 @@ const ( // AppVersion does what it says // Versioning scheme major.minor where "minor" is optional // e.g. 1, 2, 3, 4.1, 4.2, 5, 6, 7, 7.1, 8, 9, 10, ..... 127, 127.1, 128 - AppVersion = "12.3" + AppVersion = "12.4" ) var port, certFile, keyFile, forcePort2SSL string