Created
February 7, 2012 11:40
-
-
Save a-ignatov-parc/1759289 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Init Section --> | |
<script type="text/javascript"> | |
if (window.Calc) { | |
if (Calc.restore && typeof(Calc.restore) === 'function') { | |
Calc.restore(); | |
} | |
} else { | |
window.Calc = { | |
loadOptions: { | |
// Все урлы должны заканчиваться "/", кроме тех что указываются в allowedPaths | |
// | |
// Доступные параметры: | |
// parent - если калькулятор подключается в портал то указываем этот параметр и прописываем в нем адрес где будет запускаться калькулятор. | |
// Если калькулятор должен запускаться по корневому адресу и не в портале, то этот параметр не обязательно указывать; | |
// calculator - адрес куда калькулятор будет посылать все запросы; | |
// static - адрес откуда должны грузится все файлы, если он отличается от того что указан в calculator; | |
// allowedPaths - массив состоящий из pathname на которых калькулятор может запускаться относительно корна указанного в parent (или если parent не указан, то в calculator). | |
locations: { | |
parent: 'http://localhost:51180/', | |
calculator: 'http://localhost:8080/', | |
allowedPaths: ['/', '/di-auto'] | |
}, | |
useDebugCSS: true, | |
containerSelector: '.b-portal_calc_container', | |
offlineErrors: { | |
'1[0]': '@Session["AlertAutoServiceNotAvailable"]', | |
'2[0]': '@Session["AlertOptionsServiceNotAvailable"]', | |
'3[0]': '@Session["AlertQuestionnaireServiceNotAvailable"]' | |
}, | |
heartbeatTimout: 4, // Время в минутах | |
customErrorNotifier: RENS.error, | |
faceType: "@Request["facetype"]", | |
calc_id: "@Request["calc_id"]", | |
siebel_id: "@Request["siebel_id"]", | |
operator_id: "@Request["operator_id"]", | |
ola_id: "@Request["ola_id"]", | |
calculator: true, | |
proxy: true | |
} | |
} | |
} | |
</script> | |
<script type="text/javascript" src="http://localhost:8080/Content/static/js/calc.loader.js"></script> | |
<!-- Init Section --> | |
<div class="b-portal_calc_container"> | |
<i class="b-calculator_loader_spinner"></i> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment