Skip to content

Commit fd3645a

Browse files
author
Daniel Herzog
committed
Ran cleanrepo
1 parent 76fe897 commit fd3645a

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

src/build-application/build_resource_manager_1_0.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ window.app.builders.ResourceManager["1.0"] = function(service)
66
new cls.ResourceManagerAllView("resource_all", ui_strings.M_VIEW_LABEL_ALL_RESOURCES, "scroll resource-manager", "", "");
77
//new cls.ResourceManagerFontView('resource_fonts', "Fonts", 'scroll', '', '');
88
//new cls.ResourceManagerImageView('resource_images', "Images", 'scroll', '', '');
9-
new cls.NetworkLogView("network_logger",
9+
new cls.NetworkLogView("network_logger",
1010
ui_strings.M_VIEW_LABEL_NETWORK_LOG,
1111
"scroll network_logger",
1212
null,

src/network/network_service.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"use strict";
1+
"use strict";
22

33
cls.NetworkLoggerService = function()
44
{
@@ -127,7 +127,7 @@ cls.NetworkLoggerService = function()
127127
// a bit of cheating since further down we use .resouceID to determine
128128
// what resource the event applies to:
129129
data.resourceID = data.fromResourceID;
130-
130+
131131
ctx.update("urlredirect", data);
132132
};
133133
this._on_urlredirect_bound = this._on_urlredirect.bind(this, this._on_urlredirect);

src/syntaxhighlight/http-header/tokenizer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ cls.HTTPHeaderTokenizerPrototype = function()
7979

8080
var c = this._buffer.charAt(this._current_pos++);
8181
this._token_type = cls.HTTPHeaderTokenizer.types.VALUE;
82-
// LINEBREAK_CHARS only mean switching to header when the following char is not whitespace. They
82+
// LINEBREAK_CHARS only mean switching to header when the following char is not whitespace. They
8383
// are added to the NAME tokens, since the purpose of the tokenizer is mostly visual highlighting.
8484
if (c in LINEBREAK_CHARS && !(this._buffer.charAt(this._current_pos) in WHITESPACE_CHARS))
8585
{

src/ui-strings/ui_strings-en.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
window.ui_strings || ( window.ui_strings = {} );
1+
window.ui_strings || ( window.ui_strings = {} );
22
window.ui_strings.lang_code = "en";
33

44
/**

0 commit comments

Comments
 (0)