-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Former-commit-id: fb67e1d66c2db0c1f203583fd3f242ca7d4fa495 [formerly fb67e1d66c2db0c1f203583fd3f242ca7d4fa495 [formerly fb67e1d66c2db0c1f203583fd3f242ca7d4fa495 [formerly fb67e1d66c2db0c1f203583fd3f242ca7d4fa495 [formerly 175fef2 [formerly 974620bdfd040a851c119abdfaee248b4e8da2b2]]]]] Former-commit-id: cf56ec4 Former-commit-id: 70c7765 Former-commit-id: 7e3bda6f5cc5a4582a4130ed5d85068d7d6f0b4a [formerly d75269fe348765aacb3b2261336043954b1fe375] Former-commit-id: a8c866e0c3588039b82b74461dc6f3747aa84953 Former-commit-id: 57d878d95e7075d881c9053973e77cb73756e2ce Former-commit-id: 336a9ce8cbe19adaa714d9be7aa10394970dc2a8 Former-commit-id: 46c99f97bf3d2c73f1292c4cc002f287c8de45c1 Former-commit-id: 65ea36db2a9417df7d3f33858a8b24d1b1e2efde
- Loading branch information
Showing
167 changed files
with
7,015 additions
and
7 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" | ||
"http://www.w3.org/TR/html4/loose.dtd"> | ||
<html> | ||
<head> | ||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> | ||
<title></title> | ||
<style type="text/css"> | ||
*{color: #838383;margin: 0;padding: 0} | ||
html,body {font-size: 12px;overflow: hidden; } | ||
.content{padding:5px 0 0 15px;} | ||
input{width:210px;height:21px;line-height:21px;margin-left: 4px;} | ||
</style> | ||
</head> | ||
<body> | ||
<div class="content"> | ||
<span><var id="lang_input_anchorName"></var></span><input id="anchorName" value="" /> | ||
</div> | ||
<script type="text/javascript" src="../internal.js"></script> | ||
<script type="text/javascript"> | ||
var anchorInput = $G('anchorName'), | ||
node = editor.selection.getRange().getClosedNode(); | ||
if(node && node.tagName == 'IMG' && (node = node.getAttribute('anchorname'))){ | ||
anchorInput.value = node; | ||
} | ||
anchorInput.onkeydown = function(evt){ | ||
evt = evt || window.event; | ||
if(evt.keyCode == 13){ | ||
editor.execCommand('anchor', anchorInput.value); | ||
dialog.close(); | ||
domUtils.preventDefault(evt) | ||
} | ||
}; | ||
dialog.onok = function (){ | ||
editor.execCommand('anchor', anchorInput.value); | ||
dialog.close(); | ||
}; | ||
$focus(anchorInput); | ||
</script> | ||
</body> | ||
</html> |
1 change: 1 addition & 0 deletions
1
public/lib/UEditor/dialogs/attachment/attachment.css.REMOVED.git-id
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
e9d11af25d8be46c6174b6de4eca2b2e290544c5 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
<!doctype html> | ||
<html> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<title>ueditor图片对话框</title> | ||
<script type="text/javascript" src="../internal.js"></script> | ||
|
||
<!-- jquery --> | ||
<script type="text/javascript" src="../../third-party/jquery-1.10.2.min.js"></script> | ||
|
||
<!-- webuploader --> | ||
<script src="../../third-party/webuploader/webuploader.min.js"></script> | ||
<link rel="stylesheet" type="text/css" href="../../third-party/webuploader/webuploader.css"> | ||
|
||
<!-- attachment dialog --> | ||
<link rel="stylesheet" href="attachment.css" type="text/css" /> | ||
</head> | ||
<body> | ||
|
||
<div class="wrapper"> | ||
<div id="tabhead" class="tabhead"> | ||
<span class="tab focus" data-content-id="upload"><var id="lang_tab_upload"></var></span> | ||
<span class="tab" data-content-id="online"><var id="lang_tab_online"></var></span> | ||
</div> | ||
<div id="tabbody" class="tabbody"> | ||
<!-- 上传图片 --> | ||
<div id="upload" class="panel focus"> | ||
<div id="queueList" class="queueList"> | ||
<div class="statusBar element-invisible"> | ||
<div class="progress"> | ||
<span class="text">0%</span> | ||
<span class="percentage"></span> | ||
</div><div class="info"></div> | ||
<div class="btns"> | ||
<div id="filePickerBtn"></div> | ||
<div class="uploadBtn"><var id="lang_start_upload"></var></div> | ||
</div> | ||
</div> | ||
<div id="dndArea" class="placeholder"> | ||
<div class="filePickerContainer"> | ||
<div id="filePickerReady"></div> | ||
</div> | ||
</div> | ||
<ul class="filelist element-invisible"> | ||
<li id="filePickerBlock" class="filePickerBlock"></li> | ||
</ul> | ||
</div> | ||
</div> | ||
|
||
<!-- 在线图片 --> | ||
<div id="online" class="panel"> | ||
<div id="fileList"><var id="lang_imgLoading"></var></div> | ||
</div> | ||
|
||
</div> | ||
</div> | ||
<script type="text/javascript" src="attachment.js"></script> | ||
|
||
</body> | ||
</html> |
1 change: 1 addition & 0 deletions
1
public/lib/UEditor/dialogs/attachment/attachment.js.REMOVED.git-id
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
bb2557f4e0f695e9530072855e984242b3c0f64b |
1 change: 1 addition & 0 deletions
1
public/lib/UEditor/dialogs/attachment/images/file-icons.gif.REMOVED.git-id
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
d8c02c27e242f0584fc6b214f35b4f6d8caec332 |
1 change: 1 addition & 0 deletions
1
public/lib/UEditor/dialogs/attachment/images/file-icons.png.REMOVED.git-id
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
3ff82c8c488f53a7aff67fbe39742e3321183eca |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
.wrapper{ width: 424px;margin: 10px auto; zoom:1;position: relative} | ||
.tabbody{height:225px;} | ||
.tabbody .panel { position: absolute;width:100%; height:100%;background: #fff; display: none;} | ||
.tabbody .focus { display: block;} | ||
|
||
body{font-size: 12px;color: #888;overflow: hidden;} | ||
input,label{vertical-align:middle} | ||
.clear{clear: both;} | ||
.pl{padding-left: 18px;padding-left: 23px\9;} | ||
|
||
#imageList {width: 420px;height: 215px;margin-top: 10px;overflow: hidden;overflow-y: auto;} | ||
#imageList div {float: left;width: 100px;height: 95px;margin: 5px 10px;} | ||
#imageList img {cursor: pointer;border: 2px solid white;} | ||
|
||
.bgarea{margin: 10px;padding: 5px;height: 84%;border: 1px solid #A8A297;} | ||
.content div{margin: 10px 0 10px 5px;} | ||
.content .iptradio{margin: 0px 5px 5px 0px;} | ||
.txt{width:280px;} | ||
|
||
.wrapcolor{height: 19px;} | ||
div.color{float: left;margin: 0;} | ||
#colorPicker{width: 17px;height: 17px;border: 1px solid #CCC;display: inline-block;border-radius: 3px;box-shadow: 2px 2px 5px #D3D6DA;margin: 0;float: left;} | ||
div.alignment,#custom{margin-left: 23px;margin-left: 28px\9;} | ||
#custom input{height: 15px;min-height: 15px;width:20px;} | ||
#repeatType{width:100px;} | ||
|
||
|
||
/* 图片管理样式 */ | ||
#imgManager { | ||
width: 100%; | ||
height: 225px; | ||
} | ||
#imgManager #imageList{ | ||
width: 100%; | ||
overflow-x: hidden; | ||
overflow-y: auto; | ||
} | ||
#imgManager ul { | ||
display: block; | ||
list-style: none; | ||
margin: 0; | ||
padding: 0; | ||
} | ||
#imgManager li { | ||
float: left; | ||
display: block; | ||
list-style: none; | ||
padding: 0; | ||
width: 113px; | ||
height: 113px; | ||
margin: 9px 0 0 19px; | ||
background-color: #eee; | ||
overflow: hidden; | ||
cursor: pointer; | ||
position: relative; | ||
} | ||
#imgManager li.clearFloat { | ||
float: none; | ||
clear: both; | ||
display: block; | ||
width:0; | ||
height:0; | ||
margin: 0; | ||
padding: 0; | ||
} | ||
#imgManager li img { | ||
cursor: pointer; | ||
} | ||
#imgManager li .icon { | ||
cursor: pointer; | ||
width: 113px; | ||
height: 113px; | ||
position: absolute; | ||
top: 0; | ||
left: 0; | ||
z-index: 2; | ||
border: 0; | ||
background-repeat: no-repeat; | ||
} | ||
#imgManager li .icon:hover { | ||
width: 107px; | ||
height: 107px; | ||
border: 3px solid #1094fa; | ||
} | ||
#imgManager li.selected .icon { | ||
background-image: url(images/success.png); | ||
background-position: 75px 75px; | ||
} | ||
#imgManager li.selected .icon:hover { | ||
width: 107px; | ||
height: 107px; | ||
border: 3px solid #1094fa; | ||
background-position: 72px 72px; | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
<!DOCTYPE HTML> | ||
<html> | ||
<head> | ||
<meta http-equiv="Content-Type" content="text/html;charset=utf-8"/> | ||
<script type="text/javascript" src="../internal.js"></script> | ||
<link rel="stylesheet" type="text/css" href="background.css"> | ||
</head> | ||
<body> | ||
<div id="bg_container" class="wrapper"> | ||
<div id="tabHeads" class="tabhead"> | ||
<span class="focus" data-content-id="normal"><var id="lang_background_normal"></var></span> | ||
<span class="" data-content-id="imgManager"><var id="lang_background_local"></var></span> | ||
</div> | ||
<div id="tabBodys" class="tabbody"> | ||
<div id="normal" class="panel focus"> | ||
<fieldset class="bgarea"> | ||
<legend><var id="lang_background_set"></var></legend> | ||
<div class="content"> | ||
<div> | ||
<label><input id="nocolorRadio" class="iptradio" type="radio" name="t" value="none" checked="checked"><var id="lang_background_none"></var></label> | ||
<label><input id="coloredRadio" class="iptradio" type="radio" name="t" value="color"><var id="lang_background_colored"></var></label> | ||
</div> | ||
<div class="wrapcolor pl"> | ||
<div class="color"> | ||
<var id="lang_background_color"></var>: | ||
</div> | ||
<div id="colorPicker"></div> | ||
<div class="clear"></div> | ||
</div> | ||
<div class="wrapcolor pl"> | ||
<label><var id="lang_background_netimg"></var>:</label><input class="txt" type="text" id="url"> | ||
</div> | ||
<div id="alignment" class="alignment"> | ||
<var id="lang_background_align"></var>:<select id="repeatType"> | ||
<option value="center"></option> | ||
<option value="repeat-x"></option> | ||
<option value="repeat-y"></option> | ||
<option value="repeat"></option> | ||
<option value="self"></option> | ||
</select> | ||
</div> | ||
<div id="custom" > | ||
<var id="lang_background_position"></var>:x:<input type="text" size="1" id="x" maxlength="4" value="0">px y:<input type="text" size="1" id="y" maxlength="4" value="0">px | ||
</div> | ||
</div> | ||
</fieldset> | ||
|
||
</div> | ||
<div id="imgManager" class="panel"> | ||
<div id="imageList" style=""></div> | ||
</div> | ||
</div> | ||
</div> | ||
<script type="text/javascript" src="background.js"></script> | ||
</body> | ||
</html> |
1 change: 1 addition & 0 deletions
1
public/lib/UEditor/dialogs/background/background.js.REMOVED.git-id
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
9d63bade902432190590c06c7a66115b2619bcf0 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
/* | ||
* 图表配置文件 | ||
* */ | ||
|
||
|
||
//不同类型的配置 | ||
var typeConfig = [ | ||
{ | ||
chart: { | ||
type: 'line' | ||
}, | ||
plotOptions: { | ||
line: { | ||
dataLabels: { | ||
enabled: false | ||
}, | ||
enableMouseTracking: true | ||
} | ||
} | ||
}, { | ||
chart: { | ||
type: 'line' | ||
}, | ||
plotOptions: { | ||
line: { | ||
dataLabels: { | ||
enabled: true | ||
}, | ||
enableMouseTracking: false | ||
} | ||
} | ||
}, { | ||
chart: { | ||
type: 'area' | ||
} | ||
}, { | ||
chart: { | ||
type: 'bar' | ||
} | ||
}, { | ||
chart: { | ||
type: 'column' | ||
} | ||
}, { | ||
chart: { | ||
plotBackgroundColor: null, | ||
plotBorderWidth: null, | ||
plotShadow: false | ||
}, | ||
plotOptions: { | ||
pie: { | ||
allowPointSelect: true, | ||
cursor: 'pointer', | ||
dataLabels: { | ||
enabled: true, | ||
color: '#000000', | ||
connectorColor: '#000000', | ||
formatter: function() { | ||
return '<b>'+ this.point.name +'</b>: '+ ( Math.round( this.point.percentage*100 ) / 100 ) +' %'; | ||
} | ||
} | ||
} | ||
} | ||
} | ||
]; |
Oops, something went wrong.