aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2013-01-12 19:08:34 +0100
committerMarc Alexander <admin@m-a-styles.de>2013-01-12 19:08:34 +0100
commit49edfa49ab9b475e02997f8a89050acc73bf30c8 (patch)
treea9f535cb8a68c975c361851289bb613c805532dd /phpBB
parentc31f489cce8fd5d60eb484928221bef0666f3c06 (diff)
downloadforums-49edfa49ab9b475e02997f8a89050acc73bf30c8.tar
forums-49edfa49ab9b475e02997f8a89050acc73bf30c8.tar.gz
forums-49edfa49ab9b475e02997f8a89050acc73bf30c8.tar.bz2
forums-49edfa49ab9b475e02997f8a89050acc73bf30c8.tar.xz
forums-49edfa49ab9b475e02997f8a89050acc73bf30c8.zip
[ticket/11314] Fix whitespace issues
PHPBB3-11314
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/assets/javascript/core.js12
-rw-r--r--phpBB/styles/subsilver2/template/editor.js5
2 files changed, 8 insertions, 9 deletions
diff --git a/phpBB/assets/javascript/core.js b/phpBB/assets/javascript/core.js
index 9323f4a447..f38b35d613 100644
--- a/phpBB/assets/javascript/core.js
+++ b/phpBB/assets/javascript/core.js
@@ -57,7 +57,7 @@ phpbb.clearLoadingTimeout = function() {
* @param string title Title of the message, eg "Information" (HTML).
* @param string msg Message to display (HTML).
* @param bool fadedark Remove the dark background when done? Defaults
- * to yes.
+ * to yes.
*
* @returns object Returns the div created.
*/
@@ -121,9 +121,9 @@ phpbb.alert = function(title, msg, fadedark) {
*
* @param string msg Message to display (HTML).
* @param function callback Callback. Bool param, whether the user pressed
- * yes or no (or whatever their language is).
+ * yes or no (or whatever their language is).
* @param bool fadedark Remove the dark background when done? Defaults
- * to yes.
+ * to yes.
*
* @returns object Returns the div created.
*/
@@ -232,10 +232,10 @@ phpbb.parseQuerystring = function(string) {
*
* @param object options Options.
* @param bool/function refresh If we are sent back a refresh, should it be
- * acted upon? This can either be true / false / a function.
+ * acted upon? This can either be true / false / a function.
* @param function callback Callback to call on completion of event. Has
- * three parameters: the element that the event was evoked from, the JSON
- * that was returned and (if it is a form) the form action.
+ * three parameters: the element that the event was evoked from, the JSON
+ * that was returned and (if it is a form) the form action.
*/
phpbb.ajaxify = function(options) {
var elements = $(options.selector),
diff --git a/phpBB/styles/subsilver2/template/editor.js b/phpBB/styles/subsilver2/template/editor.js
index 151cf53ff1..0b5b15643a 100644
--- a/phpBB/styles/subsilver2/template/editor.js
+++ b/phpBB/styles/subsilver2/template/editor.js
@@ -179,11 +179,10 @@ function insert_text(text, spaces, popup)
{
textarea.value = textarea.value + text;
}
- if (!popup)
+ if (!popup)
{
textarea.focus();
- }
-
+ }
}
/**