diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2014-05-11 10:55:00 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2014-05-11 10:55:00 +0200 |
commit | 62364269c5952756315121fabbb7f956412dac45 (patch) | |
tree | abf20a72bb89fde8b89310343593a8f49fce8e60 /core | |
parent | 163a7a47f9bb5a4ec8c939f9e3ed67d4c0123d0f (diff) | |
download | nextcloud-server-62364269c5952756315121fabbb7f956412dac45.tar.gz nextcloud-server-62364269c5952756315121fabbb7f956412dac45.zip |
Fix Typo, define $ as global
Diffstat (limited to 'core')
-rw-r--r-- | core/js/oc-dialogs.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/js/oc-dialogs.js b/core/js/oc-dialogs.js index 3e45e3789d2..f6c17122d7d 100644 --- a/core/js/oc-dialogs.js +++ b/core/js/oc-dialogs.js @@ -19,7 +19,7 @@ * */ -/* global OC, t, alert */ +/* global OC, t, alert, $ */ /** * this class to ease the usage of jquery dialogs @@ -69,7 +69,7 @@ var OCdialogs = { * (true or false would be passed to callback respectively) * @param modal make the dialog modal * @param name name of the input field - * @param password wether the input should be a password input + * @param password whether the input should be a password input */ prompt: function (text, title, callback, modal, name, password) { $.when(this._getMessageTemplate()).then(function ($tmpl) { |