diff --git a/VAR.Focus.Web/Code/Bundler.cs b/VAR.Focus.Web/Code/Bundler.cs index 1d9118c..b6c2409 100644 --- a/VAR.Focus.Web/Code/Bundler.cs +++ b/VAR.Focus.Web/Code/Bundler.cs @@ -1,5 +1,4 @@ -using System; -using System.Collections.Generic; +using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; diff --git a/VAR.Focus.Web/Code/ScriptsBundler.cs b/VAR.Focus.Web/Code/ScriptsBundler.cs index 4dbbf88..3b0730b 100644 --- a/VAR.Focus.Web/Code/ScriptsBundler.cs +++ b/VAR.Focus.Web/Code/ScriptsBundler.cs @@ -1,5 +1,4 @@ -using System; -using System.Web; +using System.Web; namespace VAR.Focus.Web.Code { diff --git a/VAR.Focus.Web/Code/StylesBundler.cs b/VAR.Focus.Web/Code/StylesBundler.cs index 94c3613..d2794bd 100644 --- a/VAR.Focus.Web/Code/StylesBundler.cs +++ b/VAR.Focus.Web/Code/StylesBundler.cs @@ -1,5 +1,4 @@ -using System; -using System.Web; +using System.Web; namespace VAR.Focus.Web.Code { diff --git a/VAR.Focus.Web/Pages/FrmBoard.cs b/VAR.Focus.Web/Pages/FrmBoard.cs index 70af48d..91b937d 100644 --- a/VAR.Focus.Web/Pages/FrmBoard.cs +++ b/VAR.Focus.Web/Pages/FrmBoard.cs @@ -1,7 +1,6 @@ using System; using System.Collections.Generic; using System.Web; -using System.Web.UI; using System.Web.UI.WebControls; using VAR.Focus.BusinessLogic; using VAR.Focus.BusinessLogic.Entities; diff --git a/VAR.Focus.Web/Scripts/01. Base.js b/VAR.Focus.Web/Scripts/01. Base.js index a4ec237..fdff599 100644 --- a/VAR.Focus.Web/Scripts/01. Base.js +++ b/VAR.Focus.Web/Scripts/01. Base.js @@ -54,9 +54,9 @@ function ElementToggleClass(element, className) { function escapeHTML(s) { return s.replace(/&/g, '&') - .replace(/"/g, '"') - .replace(//g, '>'); + .replace(/"/g, '"') + .replace(//g, '>'); } function fixedEncodeURIComponent(str) { diff --git a/VAR.Focus.Web/Scripts/02. Ajax.js b/VAR.Focus.Web/Scripts/02. Ajax.js index f160f2f..4c20fcc 100644 --- a/VAR.Focus.Web/Scripts/02. Ajax.js +++ b/VAR.Focus.Web/Scripts/02. Ajax.js @@ -50,7 +50,7 @@ function SendData(url, data, onData, onError) { } }; xhr.setRequestHeader('Content-Type', - 'application/x-www-form-urlencoded'); + 'application/x-www-form-urlencoded'); xhr.send(GetDataQueryString(data)); } @@ -62,8 +62,8 @@ function GetFormQueryString(idForm) { function appendVal(name, value) { queryString += (queryString.length > 0 ? "&" : "") - + fixedEncodeURIComponent(name) + "=" - + fixedEncodeURIComponent(value ? value : ""); + + fixedEncodeURIComponent(name) + "=" + + fixedEncodeURIComponent(value ? value : ""); } var elements = form.elements; @@ -74,14 +74,14 @@ function GetFormQueryString(idForm) { if (elemName) { if ( - elemType.indexOf("TEXT") !== -1 || - elemType.indexOf("TEXTAREA") !== -1 || - elemType.indexOf("PASSWORD") !== -1 || - elemType.indexOf("BUTTON") !== -1 || - elemType.indexOf("HIDDEN") !== -1 || - elemType.indexOf("SUBMIT") !== -1 || - elemType.indexOf("IMAGE") !== -1 - ) { + elemType.indexOf("TEXT") !== -1 || + elemType.indexOf("TEXTAREA") !== -1 || + elemType.indexOf("PASSWORD") !== -1 || + elemType.indexOf("BUTTON") !== -1 || + elemType.indexOf("HIDDEN") !== -1 || + elemType.indexOf("SUBMIT") !== -1 || + elemType.indexOf("IMAGE") !== -1 + ) { appendVal(elemName, element.value); } else if (elemType.indexOf("CHECKBOX") !== -1 && element.checked) { appendVal(elemName, element.value ? element.value : "On"); @@ -119,6 +119,6 @@ function SendForm(url, idForm, onData, onError) { } }; xhr.setRequestHeader('Content-Type', - 'application/x-www-form-urlencoded'); + 'application/x-www-form-urlencoded'); xhr.send(GetFormQueryString(idForm)); } \ No newline at end of file diff --git a/VAR.Focus.Web/Styles/00. Reset.css b/VAR.Focus.Web/Styles/00. Reset.css index 0720322..fbc98df 100644 --- a/VAR.Focus.Web/Styles/00. Reset.css +++ b/VAR.Focus.Web/Styles/00. Reset.css @@ -12,4 +12,4 @@ input[type="submit"]::-moz-focus-inner, input[type="reset"]::-moz-focus-inner { padding: 0 !important; border: 0 none !important; -} \ No newline at end of file +} diff --git a/VAR.Focus.Web/Styles/01. base.css b/VAR.Focus.Web/Styles/01. base.css index 2ae393e..4d48b87 100644 --- a/VAR.Focus.Web/Styles/01. base.css +++ b/VAR.Focus.Web/Styles/01. base.css @@ -213,4 +213,4 @@ textarea.textbox { .width300px { width: 300px !important; max-width: 100% !important; -} \ No newline at end of file +} diff --git a/VAR.Focus.Web/Styles/02. Boards.css b/VAR.Focus.Web/Styles/02. Boards.css index aff9f03..7ed7aa0 100644 --- a/VAR.Focus.Web/Styles/02. Boards.css +++ b/VAR.Focus.Web/Styles/02. Boards.css @@ -36,4 +36,4 @@ .boardBanner .formRow:first-child { margin: 0; - } \ No newline at end of file + } diff --git a/VAR.Focus.Web/Styles/05. Cards.css b/VAR.Focus.Web/Styles/05. Cards.css index df6f794..7b4d806 100644 --- a/VAR.Focus.Web/Styles/05. Cards.css +++ b/VAR.Focus.Web/Styles/05. Cards.css @@ -161,4 +161,4 @@ border-radius: 3px; box-shadow: 0 2px 4px rgba(0,0,0,0.4) inset, 0 -2px 3px rgba(255,255,255,1) inset; padding: 2px; - } \ No newline at end of file + } diff --git a/VAR.Focus.Web/Styles/10. Chat.css b/VAR.Focus.Web/Styles/10. Chat.css index b9621cd..75dab14 100644 --- a/VAR.Focus.Web/Styles/10. Chat.css +++ b/VAR.Focus.Web/Styles/10. Chat.css @@ -57,7 +57,7 @@ padding: 5px; } -.divChatContainer{ +.divChatContainer { transition-property: width, height, opacity; transition-duration: 0.3s; overflow: hidden; @@ -164,4 +164,4 @@ .chatButton:active { background-color: rgb(220,220,220); box-shadow: inset 0 2px 5px rgba(255,255,255,1), inset 0 -2px 5px rgba(128,128,128,1); - } \ No newline at end of file + }