summaryrefslogtreecommitdiffstats
path: root/core/js
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2015-10-27 20:04:05 +0100
committerThomas Müller <thomas.mueller@tmit.eu>2015-10-27 20:04:05 +0100
commit588a668455536a576bfe0b42ef61806dfeab61bc (patch)
tree8fc98c0ca3fd58f0e78953b0b422afed704cffe0 /core/js
parentc30919303990c51b78157d86b95c0f97e004233d (diff)
parent89ab505c7be6cb1150ccae2865ebe98c00d3df72 (diff)
downloadnextcloud-server-588a668455536a576bfe0b42ef61806dfeab61bc.tar.gz
nextcloud-server-588a668455536a576bfe0b42ef61806dfeab61bc.zip
Merge pull request #20082 from owncloud/phil-davis-sharedialogviewspec-typos
sharedialogviewSpec.js couple of text typos
Diffstat (limited to 'core/js')
-rw-r--r--core/js/tests/specs/sharedialogviewSpec.js7
1 files changed, 3 insertions, 4 deletions
diff --git a/core/js/tests/specs/sharedialogviewSpec.js b/core/js/tests/specs/sharedialogviewSpec.js
index a557ff6f03b..6d5243b0e86 100644
--- a/core/js/tests/specs/sharedialogviewSpec.js
+++ b/core/js/tests/specs/sharedialogviewSpec.js
@@ -465,7 +465,7 @@ describe('OC.Share.ShareDialogView', function() {
clock.restore();
});
- it('displayes form when sending emails is enabled', function() {
+ it('displays form when sending emails is enabled', function() {
$('input[name=mailPublicNotificationEnabled]').val('yes');
dialog.render();
expect(dialog.$('.emailPrivateLinkForm').length).toEqual(1);
@@ -702,7 +702,7 @@ describe('OC.Share.ShareDialogView', function() {
});
});
describe('remote sharing', function() {
- it('shows remote share info when allows', function() {
+ it('shows remote share info when allowed', function() {
configModel.set({
isRemoteShareAllowed: true
});
@@ -717,7 +717,7 @@ describe('OC.Share.ShareDialogView', function() {
expect(dialog.$el.find('.shareWithRemoteInfo').length).toEqual(0);
});
});
- describe('autocompeltion of users', function() {
+ describe('autocompletion of users', function() {
it('triggers autocomplete display and focus with data when ajax search succeeds', function () {
dialog.render();
var response = sinon.stub();
@@ -780,4 +780,3 @@ describe('OC.Share.ShareDialogView', function() {
});
});
});
-