Skip to content

Commit 25be86c

Browse files
author
Daniel Herzog
committed
Ran cleanrepo
1 parent 9c49a6b commit 25be86c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
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/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)