diff options
author | Arthur Schiwon <blizzz@owncloud.com> | 2015-08-24 23:20:01 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2015-09-16 07:23:26 +0200 |
commit | fdb95613e9b133feed7b7dbad22dc289a54ef094 (patch) | |
tree | 1a56906ef86da1b219d4fdafe3fd324d535b2327 /core/js/sharedialogexpirationview.js | |
parent | f709022559d434612f995ecce56a65b034590f6b (diff) | |
download | nextcloud-server-fdb95613e9b133feed7b7dbad22dc289a54ef094.tar.gz nextcloud-server-fdb95613e9b133feed7b7dbad22dc289a54ef094.zip |
simplification, and throwing where throwing is needed
Diffstat (limited to 'core/js/sharedialogexpirationview.js')
-rw-r--r-- | core/js/sharedialogexpirationview.js | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/core/js/sharedialogexpirationview.js b/core/js/sharedialogexpirationview.js index e752c66bf35..4c628f5498a 100644 --- a/core/js/sharedialogexpirationview.js +++ b/core/js/sharedialogexpirationview.js @@ -48,7 +48,7 @@ if(!_.isUndefined(options.configModel)) { this.configModel = options.configModel; } else { - console.warn('missing OC.Share.ShareConfigModel'); + throw 'missing OC.Share.ShareConfigModel'; } }, @@ -64,8 +64,7 @@ } var expirationTemplate = this.template(); - this.$el.empty(); - this.$el.append(expirationTemplate({ + this.$el.html(expirationTemplate({ setExpirationLabel: t('core', 'Set expiration date'), expirationLabel: t('core', 'Expiration'), expirationDatePlaceholder: t('core', 'Expiration date'), |