Skip to content

Commit 4a1c374

Browse files
committed
ReSharper project re-formatting.
1 parent 400a209 commit 4a1c374

File tree

148 files changed

+1797
-1590
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

148 files changed

+1797
-1590
lines changed

Console/Layouts/PowerShellTerminal.aspx.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ public partial class PowerShellTerminal : Page
1010
protected override void OnPreInit(EventArgs e)
1111
{
1212
Response.AddHeader("X-UA-Compatible", "IE=9");
13-
var settings = ApplicationSettings.GetInstance(ApplicationNames.AjaxConsole, false);
13+
ApplicationSettings settings = ApplicationSettings.GetInstance(ApplicationNames.AjaxConsole, false);
1414
ForegroundColor = OutputLine.ProcessHtmlColor(settings.ForegroundColor);
1515
BackgroundColor = OutputLine.ProcessHtmlColor(settings.BackgroundColor);
1616
base.OnPreInit(e);

Console/Scripts/jquery-ui.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11908,7 +11908,7 @@ $.widget( "ui.menu", {
1190811908
expand: function( event ) {
1190911909
var newItem = this.active &&
1191011910
this.active
11911-
.children( ".ui-menu " )
11911+
.children( ".ui-menu" )
1191211912
.children( ".ui-menu-item" )
1191311913
.first();
1191411914

@@ -14147,7 +14147,7 @@ $.widget( "ui.tabs", {
1414714147
.addClass( "ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all" )
1414814148
.attr( "role", "tablist" );
1414914149

14150-
this.tabs = this.tablist.find( "> li:has(a[href])" )
14150+
this.tabs = this.tablist.find( "* > li:has(a[href])" )
1415114151
.addClass( "ui-state-default ui-corner-top" )
1415214152
.attr({
1415314153
role: "tab",
@@ -14207,7 +14207,7 @@ $.widget( "ui.tabs", {
1420714207

1420814208
// allow overriding how to find the list for rare usage scenarios (#7715)
1420914209
_getList: function() {
14210-
return this.element.find( "ol,ul" ).eq( 0 );
14210+
return this.element.find( "ol, ul" ).eq( 0 );
1421114211
},
1421214212

1421314213
_createPanel: function( id ) {

Console/Scripts/jquery.terminal.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2503,14 +2503,14 @@
25032503
var scrollTop = self.scrollTop();
25042504
if (!is_scrolled_into_view(self)) {
25052505
self.enable();
2506-
$('html,body').animate({scrollTop: offsetTop-50}, 500);
2506+
$('html, body').animate({scrollTop: offsetTop-50}, 500);
25072507
return self;
25082508
} else {
25092509
terminals.front().disable();
25102510
var next = terminals.rotate().enable();
25112511
// 100 provides buffer in viewport
25122512
var x = next.offset().top - 50;
2513-
$('html,body').animate({scrollTop: x}, 500);
2513+
$('html, body').animate({scrollTop: x}, 500);
25142514
try {
25152515
settings.onTerminalChange(next);
25162516
} catch (e) {

0 commit comments

Comments
 (0)