|
@@ -80,7 +80,7 @@
|
|
|
<div class="menu-form-input text-center">
|
|
|
<div class="menu-item smad-heder-title">głębokość powiązań:</div>
|
|
|
<div class="menu-item">
|
|
|
- <input type="text" class="form-control smad-depth" placeholder="1-16" value="7" />
|
|
|
+ <input type="text" class="form-control smad-depth" placeholder="1-16" value="6" />
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -101,14 +101,14 @@
|
|
|
<script type="text/javascript">
|
|
|
|
|
|
if (localStorage.getItem("Bocian.biAuditForm.depth") === null) {
|
|
|
- localStorage.setItem('Bocian.biAuditForm.depth', 7);
|
|
|
+ localStorage.setItem('Bocian.biAuditForm.depth', 6);
|
|
|
}
|
|
|
|
|
|
$(document).ready(function() {
|
|
|
clearBIAuditFormLocalStorage();
|
|
|
loadCurrentDepthInInput('.smad-depth');
|
|
|
updateLocalStorageBiAuditDepth('.smad-depth');
|
|
|
- setItemLocalStorage('Bocian.biAuditForm.smadReaportTitle', 'Default reaport');
|
|
|
+ setItemLocalStorage('Bocian.biAuditForm.smadReaportTitle', 'Nazwa raportu');
|
|
|
$("#oip").click(function(){
|
|
|
$("#OIP").show();
|
|
|
$("#OBZ").hide();
|
|
@@ -126,7 +126,7 @@ function loadCurrentReaportTitleInInput(idInput) {
|
|
|
var reaportTitleValue = getItemLocalStorage("Bocian.biAuditForm.smadReaportTitle");
|
|
|
|
|
|
if ( getItemLocalStorage('Bocian.biAuditForm.smadReaportTitle') === null ) {
|
|
|
- reaportTitleValue = setItemLocalStorage('Bocian.biAuditForm.smadReaportTitle', 'Default reaport');
|
|
|
+ reaportTitleValue = setItemLocalStorage('Bocian.biAuditForm.smadReaportTitle', 'Nazwa raportu');
|
|
|
}
|
|
|
|
|
|
$(idInput).val(function() {
|
|
@@ -141,7 +141,7 @@ function loadCurrentDepthInInput(idInput) {
|
|
|
var depthValue = getItemLocalStorage("Bocian.biAuditForm.depth");
|
|
|
|
|
|
if ( getItemLocalStorage('Bocian.biAuditForm.depth') === null ) {
|
|
|
- depthValue = setItemLocalStorage('Bocian.biAuditForm.depth', 7);
|
|
|
+ depthValue = setItemLocalStorage('Bocian.biAuditForm.depth', 6);
|
|
|
}
|
|
|
|
|
|
$(idInput).val(function() {
|