Merge branch 'master' of https://github.com/easysoft/zentaopms
This commit is contained in:
@@ -196,7 +196,7 @@ class commonModel extends model
|
||||
if(strpos($this->server->http_user_agent, 'Trident') !== false)
|
||||
{
|
||||
echo "<a href='$denyLink' id='denylink' style='display:none'>deny</a>";
|
||||
echo "<script language='javascript'>document.getElementById('denylink').click();</script>";
|
||||
echo "<script>document.getElementById('denylink').click();</script>";
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
@@ -16,7 +16,7 @@ js::set('kuid', $uid);
|
||||
<link rel="stylesheet" href="<?php echo $jsRoot;?>kindeditor/themes/default/default.css" />
|
||||
<script src='<?php echo $jsRoot;?>kindeditor/kindeditor-min.js' type='text/javascript'></script>
|
||||
<script src='<?php echo $jsRoot;?>kindeditor/lang/<?php echo $editorLang;?>.js' type='text/javascript'></script>
|
||||
<script language='javascript'>
|
||||
<script>
|
||||
var editor = <?php echo json_encode($editor);?>;
|
||||
|
||||
var bugTools =
|
||||
|
||||
@@ -3,4 +3,4 @@
|
||||
css::import($defaultTheme . 'treetable.css');
|
||||
js::import($jsRoot . 'jquery/treetable/min.js');
|
||||
?>
|
||||
<script language='javascript'>$(function() { $("#treetable").treeTable({clickableNodeNames:true,initialState:"expanded"})})</script>
|
||||
<script>$(function() { $("#treetable").treeTable({clickableNodeNames:true,initialState:"expanded"})})</script>
|
||||
|
||||
@@ -13,9 +13,9 @@ $editorLang = isset($editorLangs[$app->getClientLang()]) ? $editorLangs[$app->
|
||||
$uid = uniqid('');
|
||||
js::set('kuid', $uid);
|
||||
?>
|
||||
<script type="text/javascript" charset="utf-8" src="<?php echo $this->app->getWebRoot() . "js/"?>ueditor/ueditor.config.js"></script>
|
||||
<script type="text/javascript" charset="utf-8" src="<?php echo $this->app->getWebRoot() . "js/"?>ueditor/ueditor.all.min.js"> </script>
|
||||
<script language='javascript'>
|
||||
<script charset="utf-8" src="<?php echo $this->app->getWebRoot() . "js/"?>ueditor/ueditor.config.js"></script>
|
||||
<script charset="utf-8" src="<?php echo $this->app->getWebRoot() . "js/"?>ueditor/ueditor.all.min.js"> </script>
|
||||
<script>
|
||||
var editor = <?php echo json_encode($editor);?>;
|
||||
|
||||
var toolbars = [[
|
||||
|
||||
@@ -11,7 +11,7 @@ $sessionString .= session_name() . '=' . session_id();
|
||||
<style>
|
||||
.files-list>li>a {display: inline;}
|
||||
</style>
|
||||
<script language='Javascript'>
|
||||
<script>
|
||||
$(function(){
|
||||
$(".edit").modalTrigger({width:350, type:'iframe'});
|
||||
})
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
<body <?php if($browser != 'opera') echo "bgcolor='transparent'";?> style='color:white; font-size:13px; text-align:center'>
|
||||
<?php if($note):?>
|
||||
<?php echo $note;?>
|
||||
<script language='javascript'>window.parent.document.getElementById('updater').className=''</script>
|
||||
<script>window.parent.document.getElementById('updater').className=''</script>
|
||||
<?php endif;?>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
@@ -328,7 +328,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<?php js::set('checkedSummary', $lang->product->checkedSummary);?>
|
||||
<script language='javascript'>
|
||||
<script>
|
||||
var moduleID = <?php echo $moduleID?>;
|
||||
$('#module<?php echo $moduleID;?>').addClass('active');
|
||||
<?php if($browseType == 'bysearch'):?>
|
||||
|
||||
@@ -228,7 +228,7 @@ $dataType = '';
|
||||
<canvas id='burnChart' data-bezier-curve='false' data-responsive='true'></canvas>
|
||||
</div>
|
||||
</body>
|
||||
<script language='Javascript'>
|
||||
<script>
|
||||
function initBurnChar()
|
||||
{
|
||||
var data =
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?php include '../../common/view/header.html.php';?>
|
||||
<?php include '../../common/view/kindeditor.html.php';?>
|
||||
<script language='Javascript'>
|
||||
<script>
|
||||
function loadProduct(productID)
|
||||
{
|
||||
loadProductBranches(productID)
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
?>
|
||||
<?php include './header.html.php';?>
|
||||
<?php include '../../common/view/datepicker.html.php';?>
|
||||
<script language='Javascript'>
|
||||
<script>
|
||||
var assignedTo = '<?php $story->lastEditedBy ? print($story->lastEditedBy) : print($story->openedBy);?>';
|
||||
</script>
|
||||
<div class='main-content' id='mainContent'>
|
||||
|
||||
@@ -140,7 +140,7 @@
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script language='Javascript'>
|
||||
<script>
|
||||
var nowTime = '<?php echo $time?>';
|
||||
var today = '<?php echo date('Y-m-d')?>';
|
||||
var start = '<?php echo key($times)?>';
|
||||
|
||||
@@ -144,4 +144,4 @@
|
||||
</form>
|
||||
</div>
|
||||
<?php include './footer.html.php';?>
|
||||
<script language='Javascript'>switchDateFeature(document.getElementById('dateSwitcher'));</script>
|
||||
<script>switchDateFeature(document.getElementById('dateSwitcher'));</script>
|
||||
|
||||
Reference in New Issue
Block a user