first commit
This commit is contained in:
94
asset/jQuery-TE/demo/demo.css
Normal file
94
asset/jQuery-TE/demo/demo.css
Normal file
@@ -0,0 +1,94 @@
|
||||
/* general styles */
|
||||
html, body {
|
||||
padding:30px 100px;
|
||||
background:#E5E5E5
|
||||
}
|
||||
* {
|
||||
font-family:Verdana, Arial, sans-serif;
|
||||
color:#000
|
||||
}
|
||||
h1 {
|
||||
font-size:33px;
|
||||
color:#99CC00;
|
||||
margin:15px 0
|
||||
}
|
||||
.navigation {
|
||||
margin:10px 0 20px;
|
||||
}
|
||||
.navigation, .navigation a {
|
||||
color:#608000;
|
||||
font-size:12px;
|
||||
}
|
||||
.navigation a {
|
||||
margin-right:4px;
|
||||
}
|
||||
h2 {
|
||||
margin:15px 0 25px;
|
||||
color:#608000;
|
||||
font-size:14px;
|
||||
font-weight:bold
|
||||
}
|
||||
a:link, a:visited {
|
||||
text-decoration:underline
|
||||
}
|
||||
.testbutton {
|
||||
margin-bottom:30px;
|
||||
background:#3399FF;
|
||||
padding:6px 25px;
|
||||
border:#003F81 1px solid;
|
||||
color:#FFF;
|
||||
font-size:22px;
|
||||
border-radius:5px; -webkit-border-radius:5px; -moz-border-radius:5px;
|
||||
box-shadow:inset 0 5px 5px #67B3FF; -webkit-box-shadow:inset 0 5px 5px #67B3FF; -moz-box-shadow:inset 0 5px 5px #67B3FF
|
||||
}
|
||||
.testbutton:hover {
|
||||
background:#198CFF;
|
||||
cursor:pointer
|
||||
}
|
||||
.footer, .footer * {
|
||||
color:#802D00;
|
||||
font-size:15px
|
||||
}
|
||||
|
||||
.jqte-test {
|
||||
display:block;
|
||||
margin:0 0 10px;
|
||||
padding:6px;
|
||||
width:95%;
|
||||
background:#FFF;
|
||||
border:#AAA 1px solid;
|
||||
font-size:13px;
|
||||
}
|
||||
textarea.jqte-test, div.jqte-test, span.jqte-test {
|
||||
min-height:100px;
|
||||
}
|
||||
button {
|
||||
display:block;
|
||||
margin:20px 0;
|
||||
padding:6px 0 4px;
|
||||
width:154px;
|
||||
background:#658700;
|
||||
border:#526E00 1px solid;
|
||||
color:#F3FFCF !important;
|
||||
text-align:center;
|
||||
font-size:13px;
|
||||
font-weight:bold;
|
||||
border-radius:3px; -webkit-border-radius:3px; -moz-border-radius:3px;
|
||||
box-shadow:0 0 2px #000, inset 0 1px 1px #99CC00; -webkit-box-shadow:0 0 2px #000, inset 0 1px 1px #99CC00; -moz-box-shadow:0 0 2px #000, inset 0 1px 1px #99CC00;
|
||||
cursor:pointer;
|
||||
}
|
||||
button:hover {
|
||||
background:#78A000;
|
||||
border-color:#658700;
|
||||
text-decoration:none !important;
|
||||
cursor:pointer
|
||||
}
|
||||
|
||||
button:active {
|
||||
background:#3F5500;
|
||||
border-color:#2C3C00;
|
||||
color:#9CCD00 !important;
|
||||
box-shadow:0 0 3px #000,inset 0 -2px 2px #333;
|
||||
-webkit-box-shadow:0 0 3px #000, inset 0 -2px 2px #333;
|
||||
-moz-box-shadow:0 0 3px #000, inset 0 -2px 2px #333;
|
||||
}
|
||||
64
asset/jQuery-TE/demo/demo.html
Normal file
64
asset/jQuery-TE/demo/demo.html
Normal file
@@ -0,0 +1,64 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>jQuery TE | Downloaded Demo | v.1.4.0</title>
|
||||
|
||||
<link type="text/css" rel="stylesheet" href="demo.css">
|
||||
<link type="text/css" rel="stylesheet" href="../jquery-te-1.4.0.css">
|
||||
|
||||
<script type="text/javascript" src="http://code.jquery.com/jquery.min.js" charset="utf-8"></script>
|
||||
<script type="text/javascript" src="../jquery-te-1.4.0.min.js" charset="utf-8"></script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<h1>jQuery TE</h1>
|
||||
|
||||
<div class="navigation">
|
||||
<a href="http://jqueryte.com" target="_blank">Home</a>
|
||||
<a href="http://jqueryte.com/demos" target="_blank">Demos</a>
|
||||
<a href="http://jqueryte.com/documentation" target="_blank">Documentation</a>
|
||||
<a href="http://jqueryte.com/comments" target="_blank">Comments</a>
|
||||
<a href="http://jqueryte.com/about" target="_blank">About</a>
|
||||
<a href="http://jqueryte.com/license" target="_blank">License</a>
|
||||
</div>
|
||||
|
||||
<h2>Demo | v.1.4.0</h2>
|
||||
|
||||
<!------------------------------------------------------------ Toggle jQTE Button ------------------------------------------------------------>
|
||||
<button class="status">Toggle jQTE</button>
|
||||
|
||||
<!------------------------------------------------------------ jQUERY TEXT EDITOR ------------------------------------------------------------>
|
||||
|
||||
<textarea name="textarea" class="jqte-test"><b>My contents are from <u><span style="color:rgb(0, 148, 133);">TEXTAREA</span></u></b></textarea>
|
||||
|
||||
<input name="input" type="text" value="<b>My contents are from <u><span style="color:rgb(0, 148, 133);">INPUT</span></u></b>" class="jqte-test">
|
||||
|
||||
<span name="span" class="jqte-test"><b>My contents are from <u><span style="color:rgb(0, 148, 133);">SPAN</span></u></b></span>
|
||||
|
||||
<script>
|
||||
$('.jqte-test').jqte();
|
||||
|
||||
// settings of status
|
||||
var jqteStatus = true;
|
||||
$(".status").click(function()
|
||||
{
|
||||
jqteStatus = jqteStatus ? false : true;
|
||||
$('.jqte-test').jqte({"status" : jqteStatus})
|
||||
});
|
||||
</script>
|
||||
|
||||
<!------------------------------------------------------------ jQUERY TEXT EDITOR ------------------------------------------------------------>
|
||||
|
||||
|
||||
<hr>
|
||||
|
||||
<div class="footer">
|
||||
<b>Please <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=U49X5YEFRPMSL" target="_blank">donate</a> us or <a href="http://jqueryte.com" target="_blank">click on advertisements</a> to improve more than.</b>
|
||||
</div>
|
||||
|
||||
<p>Thanks for using!</p>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
457
asset/jQuery-TE/jquery-te-1.4.0.css
Normal file
457
asset/jQuery-TE/jquery-te-1.4.0.css
Normal file
@@ -0,0 +1,457 @@
|
||||
/*!
|
||||
*
|
||||
* jQuery TE 1.4.0 , http://jqueryte.com/
|
||||
* Copyright (C) 2013, Fatih Koca (fattih@fattih.com), (http://jqueryte.com/about)
|
||||
|
||||
* jQuery TE is provided under the MIT LICENSE.
|
||||
*
|
||||
*/
|
||||
|
||||
/* editor's general field */
|
||||
.jqte {
|
||||
margin:30px 0;
|
||||
border:#000 1px solid;
|
||||
border-radius:5px; -webkit-border-radius:5px; -moz-border-radius:5px;
|
||||
box-shadow:0 0 3px #999; -webkit-box-shadow:0 0 3px #999; -moz-box-shadow:0 0 3px #999;
|
||||
overflow:hidden;
|
||||
transition:box-shadow 0.4s, border 0.4s; -webkit-transition:-webkit-box-shadow 0.4s, border 0.4s; -moz-transition:-moz-box-shadow 0.4s, border 0.4s; -o-transition:-o-box-shadow 0.4s, border 0.4s;
|
||||
}
|
||||
.jqte * {
|
||||
color:#333;
|
||||
font-family:Arial, Helvetica, sans-serif;
|
||||
font-size:14px;
|
||||
}
|
||||
.jqte_focused {
|
||||
border-color:#00AAE7;
|
||||
box-shadow:0 0 10px #00BDFF; -webkit-box-shadow:0 0 10px #00BDFF; -moz-box-shadow:0 0 10px #00BDFF;
|
||||
}
|
||||
/* toolbar */
|
||||
.jqte_toolbar {
|
||||
overflow:auto;
|
||||
padding:3px 4px;
|
||||
background:#EEE;
|
||||
border-bottom:#BBB 1px solid;
|
||||
}
|
||||
.jqte_tool {
|
||||
float:left;
|
||||
margin:0;
|
||||
padding:0;
|
||||
cursor:pointer;
|
||||
}
|
||||
.jqte_tool, .jqte_tool_icon, .jqte_tool_label {
|
||||
border:#EEE 1px solid;
|
||||
border-radius:3px; -webkit-border-radius:3px; -moz-border-radius:3px
|
||||
}
|
||||
.jqte_hiddenField {
|
||||
display:none
|
||||
}
|
||||
.jqte_tool_icon {
|
||||
display:block;
|
||||
width:22px;
|
||||
height:22px;
|
||||
background:url(jquery-te.png) no-repeat
|
||||
}
|
||||
.jqte_tool.jqte_tool_1 .jqte_tool_label {
|
||||
position:relative;
|
||||
display:block;
|
||||
padding:3px;
|
||||
width:70px;
|
||||
height:16px;
|
||||
overflow:hidden;
|
||||
}
|
||||
.jqte_tool.jqte_tool_1 .jqte_tool_text {
|
||||
font:bold 13px Arial,sans-serif;
|
||||
color:#222;
|
||||
}
|
||||
.jqte_tool.jqte_tool_1 .jqte_tool_icon {
|
||||
position:absolute;
|
||||
top:10px;
|
||||
right:2px;
|
||||
width:6px;
|
||||
height:4px;
|
||||
background-position:-19px -23px;
|
||||
border:none;
|
||||
border-radius:none; -webkit-border-radius:none; -moz-border-radius:none
|
||||
}
|
||||
.jqte_tool.jqte_tool_2 .jqte_tool_icon {
|
||||
background-position:0 0
|
||||
}
|
||||
.jqte_tool.jqte_tool_3 .jqte_tool_icon {
|
||||
background-position:-22px 0
|
||||
}
|
||||
.jqte_tool.jqte_tool_4 .jqte_tool_icon {
|
||||
background-position:-44px 0
|
||||
}
|
||||
.jqte_tool.jqte_tool_5 .jqte_tool_icon {
|
||||
background-position:-66px 0
|
||||
}
|
||||
.jqte_tool.jqte_tool_6 .jqte_tool_icon {
|
||||
background-position:-88px 0
|
||||
}
|
||||
.jqte_tool.jqte_tool_7 .jqte_tool_icon {
|
||||
background-position:-110px 0
|
||||
}
|
||||
.jqte_tool.jqte_tool_8 .jqte_tool_icon {
|
||||
background-position:-132px 0
|
||||
}
|
||||
.jqte_tool.jqte_tool_9 .jqte_tool_icon {
|
||||
background-position:-154px 0
|
||||
}
|
||||
.jqte_tool.jqte_tool_10 .jqte_tool_icon {
|
||||
background-position:-176px 0
|
||||
}
|
||||
.jqte_tool.jqte_tool_11 .jqte_tool_icon {
|
||||
background-position:-198px 0
|
||||
}
|
||||
.jqte_tool.jqte_tool_12 .jqte_tool_icon {
|
||||
background-position:-220px 0
|
||||
}
|
||||
.jqte_tool.jqte_tool_13 .jqte_tool_icon {
|
||||
background-position:-242px 0
|
||||
}
|
||||
.jqte_tool.jqte_tool_14 .jqte_tool_icon {
|
||||
background-position:-264px 0
|
||||
}
|
||||
.jqte_tool.jqte_tool_15 .jqte_tool_icon {
|
||||
background-position:-286px 0
|
||||
}
|
||||
.jqte_tool.jqte_tool_16 .jqte_tool_icon {
|
||||
background-position:-308px 0
|
||||
}
|
||||
.jqte_tool.jqte_tool_17 .jqte_tool_icon {
|
||||
background-position:-330px 0
|
||||
}
|
||||
.jqte_tool.jqte_tool_18 .jqte_tool_icon {
|
||||
background-position:-352px 0
|
||||
}
|
||||
.jqte_tool.jqte_tool_19 .jqte_tool_icon {
|
||||
background-position:-374px 0
|
||||
}
|
||||
.jqte_tool.jqte_tool_20 .jqte_tool_icon {
|
||||
background-position:-396px 0
|
||||
}
|
||||
.jqte_tool.jqte_tool_21 .jqte_tool_icon {
|
||||
background-position:-418px 0
|
||||
}
|
||||
.jqte_tool:hover {
|
||||
background-color:#FFF;
|
||||
border-color:#FFF
|
||||
}
|
||||
.jqte_tool:hover .jqte_tool_icon, .jqte_tool:hover .jqte_tool_label {
|
||||
border:#AAA 1px solid
|
||||
}
|
||||
.jqte_tool:active .jqte_tool_icon, .jqte_tool:active .jqte_tool_label {
|
||||
border:#777 1px solid
|
||||
}
|
||||
.jqte_tool.jqte_tool_1:hover .jqte_tool_icon, .jqte_tool.jqte_tool_1:active .jqte_tool_icon {
|
||||
border:none
|
||||
}
|
||||
.jqte_tool_depressed {
|
||||
background-color:#DDD;
|
||||
border-color:#CCC
|
||||
}
|
||||
.jqte_tool_depressed .jqte_tool_icon {
|
||||
border-color:#AAA
|
||||
}
|
||||
.jqte_tool_depressed:hover {
|
||||
background-color:#EEE
|
||||
}
|
||||
/* link form area */
|
||||
.jqte_linkform {
|
||||
padding:5px 10px;
|
||||
background:#DDD;
|
||||
border-bottom:#BBB 1px solid;
|
||||
}
|
||||
.jqte_linktypeselect {
|
||||
position:relative;
|
||||
float:left;
|
||||
width:130px;
|
||||
background:#EEE;
|
||||
cursor:pointer
|
||||
}
|
||||
.jqte_linktypeselect:Active {
|
||||
background:#FFF
|
||||
}
|
||||
.jqte_linktypeview {
|
||||
padding:3px 5px;
|
||||
border:#333 1px solid;
|
||||
color:#777;
|
||||
border-radius:3px; -webkit-border-radius:3px; -moz-border-radius:3px;
|
||||
outline:none
|
||||
}
|
||||
.jqte_linktypetext {
|
||||
font-size:12px;
|
||||
}
|
||||
.jqte_linktypearrow {
|
||||
position:absolute;
|
||||
bottom:8px; right:6px;
|
||||
width:7px;
|
||||
height:6px;
|
||||
margin:0 auto;
|
||||
background:url(jquery-te.png) -7px -23px no-repeat;
|
||||
}
|
||||
.jqte_linktypes {
|
||||
display:none;
|
||||
position:absolute;
|
||||
top:22px; left:1px;
|
||||
width:125px;
|
||||
background:#FFF;
|
||||
border:#333 1px solid;
|
||||
box-shadow:0 1px 4px #AAA; -webkit-box-shadow:0 1px 4px #AAA; -moz-box-shadow:0 1px 4px #AAA
|
||||
}
|
||||
.jqte_linktypes a {
|
||||
display:block;
|
||||
padding:4px 5px;
|
||||
font-size:12px;
|
||||
}
|
||||
.jqte_linktypes a:hover {
|
||||
background:#DDD
|
||||
}
|
||||
.jqte_linkinput {
|
||||
float:left;
|
||||
margin:0 5px;
|
||||
padding:3px 5px;
|
||||
width:300px;
|
||||
background:#EEE;
|
||||
border:#333 1px solid;
|
||||
color:#777;
|
||||
font-size:12px;
|
||||
border-radius:3px; -webkit-border-radius:3px; -moz-border-radius:3px;
|
||||
outline:none;
|
||||
}
|
||||
.jqte_linkinput:focus, .jqte_linkinput:hover {
|
||||
background:#FFF;
|
||||
border-color:#000;
|
||||
}
|
||||
.jqte_linkbutton {
|
||||
float:left;
|
||||
padding:3px 12px;
|
||||
background:#AAA;
|
||||
border:#333 1px solid;
|
||||
color:#FFF;
|
||||
font-size:12px;
|
||||
font-weight:bold;
|
||||
cursor:pointer;
|
||||
border-radius:3px; -webkit-border-radius:3px; -moz-border-radius:3px;
|
||||
box-shadow:inset 0 1px #EEE; -webkit-box-shadow:inset 0 1px #EEE; -moz-box-shadow:inset 0 1px #EEE;
|
||||
}
|
||||
.jqte_linkbutton:hover {
|
||||
background:#A1A1A1
|
||||
}
|
||||
.jqte_linkbutton:active {
|
||||
box-shadow:inset 0 1px #CCC; -webkit-box-shadow:inset 0 1px #CCC; -moz-box-shadow:inset 0 1px #CCC;
|
||||
background:#888;
|
||||
}
|
||||
|
||||
/* text format menu */
|
||||
.jqte_formats {
|
||||
display:none;
|
||||
position:absolute;
|
||||
width:180px;
|
||||
oveflow-x:hidden;
|
||||
overflow-y:auto;
|
||||
background:#FFF;
|
||||
border:#AAA 1px solid;
|
||||
box-shadow:0 0 5px #AAA; -webkit-box-shadow:0 0 5px #AAA; -moz-box-shadow:0 0 5px #AAA;
|
||||
z-index:100;
|
||||
}
|
||||
.jqte_format {
|
||||
display:block;
|
||||
padding:4px 7px;
|
||||
font-size:13px
|
||||
}
|
||||
.jqte_format:hover {
|
||||
background:#DDD
|
||||
}
|
||||
.jqte_format_1, .jqte_format_2, .jqte_format_3, .jqte_format_4, .jqte_format_5, .jqte_format_6 {
|
||||
font-weight:bold
|
||||
}
|
||||
.jqte_format_1 {
|
||||
font-size:22px
|
||||
}
|
||||
.jqte_format_2 {
|
||||
font-size:20px
|
||||
}
|
||||
.jqte_format_3 {
|
||||
font-size:18px
|
||||
}
|
||||
.jqte_format_4 {
|
||||
font-size:16px
|
||||
}
|
||||
.jqte_format_5 {
|
||||
font-size:14px
|
||||
}
|
||||
.jqte_format_6 {
|
||||
font-size:12px
|
||||
}
|
||||
.jqte_format_7 {
|
||||
font-family:"Courier New", Courier, monospace
|
||||
}
|
||||
|
||||
/* font size menu */
|
||||
.jqte_fontsizes {
|
||||
display:none;
|
||||
position:absolute;
|
||||
width:180px;
|
||||
height:198px;
|
||||
oveflow-x:hidden;
|
||||
overflow-y:auto;
|
||||
background:#FFF;
|
||||
border:#AAA 1px solid;
|
||||
box-shadow:0 0 5px #AAA; -webkit-box-shadow:0 0 5px #AAA; -moz-box-shadow:0 0 5px #AAA
|
||||
}
|
||||
.jqte_fontsize {
|
||||
display:block;
|
||||
padding:3px 7px;
|
||||
}
|
||||
.jqte_fontsize:hover {
|
||||
background:#DDD
|
||||
}
|
||||
|
||||
/* color pallette */
|
||||
.jqte_cpalette {
|
||||
display:none;
|
||||
position:absolute;
|
||||
padding:6px;
|
||||
width:144px;
|
||||
background:#FFF;
|
||||
border:#AAA 1px solid;
|
||||
box-shadow:0 0 5px #AAA; -webkit-box-shadow:0 0 5px #AAA; -moz-box-shadow:0 0 5px #AAA
|
||||
}
|
||||
.jqte_color {
|
||||
display:block;
|
||||
float:left;
|
||||
width:16px;
|
||||
height:16px;
|
||||
border:#FFF 1px solid;
|
||||
}
|
||||
.jqte_color:hover {
|
||||
border-color:#000
|
||||
}
|
||||
.jqte_colorSeperator {
|
||||
float:none;
|
||||
clear:both;
|
||||
height:7px;
|
||||
}
|
||||
|
||||
/* editor area */
|
||||
.jqte_editor, .jqte_source {
|
||||
padding:10px;
|
||||
background:#FFF;
|
||||
min-height:100px;
|
||||
max-height:900px;
|
||||
overflow:auto;
|
||||
outline:none;
|
||||
word-wrap:break-word; -ms-word-wrap:break-word;
|
||||
resize:vertical
|
||||
}
|
||||
.jqte_editor div, .jqte_editor p {
|
||||
margin:0 0 7px
|
||||
}
|
||||
.jqte_editor a:link, .jqte_editor a:link * {
|
||||
color:#0066FF !important;
|
||||
text-decoration:underline;
|
||||
}
|
||||
.jqte_editor blockquote {
|
||||
margin-top:0;
|
||||
margin-bottom:7px
|
||||
}
|
||||
.jqte_editor img {
|
||||
float:left;
|
||||
margin:0 10px 5px 0
|
||||
}
|
||||
.jqte_editor a[jqte-setlink], .jqte_editor a[jqte-setlink] * {
|
||||
background:#3297FD !important;
|
||||
color:#FFF !important
|
||||
}
|
||||
.jqte_editor h1, .jqte_editor h2, .jqte_editor h3, .jqte_editor h4, .jqte_editor h5, .jqte_editor h6, .jqte_editor pre {
|
||||
display:block;
|
||||
margin:0 0 3px;
|
||||
}
|
||||
.jqte_editor h1, .jqte_editor h1 * {
|
||||
font-size:26px
|
||||
}
|
||||
.jqte_editor h2, .jqte_editor h2 * {
|
||||
font-size:24px
|
||||
}
|
||||
.jqte_editor h3, .jqte_editor h3 * {
|
||||
font-size:22px
|
||||
}
|
||||
.jqte_editor h4, .jqte_editor h4 * {
|
||||
font-size:20px
|
||||
}
|
||||
.jqte_editor h5, .jqte_editor h5 * {
|
||||
font-size:18px
|
||||
}
|
||||
.jqte_editor h6, .jqte_editor h6 * {
|
||||
font-size:15px
|
||||
}
|
||||
.jqte_editor pre, .jqte_editor pre * {
|
||||
font-family:"Courier New", Courier, monospace
|
||||
}
|
||||
|
||||
/* source area */
|
||||
.jqte_source, .jqte_source textarea {
|
||||
background:#FFF1E8
|
||||
}
|
||||
.jqte_source textarea {
|
||||
margin:0 !important;
|
||||
padding:0 !important;
|
||||
display:block !important;
|
||||
width:100% !important;
|
||||
min-height:100px;
|
||||
font-family:Courier, Arial, sans-serif !important;
|
||||
font-weight:normal;
|
||||
font-size:15px;
|
||||
overflow:hidden !important;
|
||||
outline:none;
|
||||
resize:none;
|
||||
}
|
||||
.jqte_source textarea, .jqte_source textarea:focus {
|
||||
css_shadow:none !important;
|
||||
background:none !important;
|
||||
border:none !important;
|
||||
}
|
||||
|
||||
/* title box */
|
||||
.jqte_title {
|
||||
display:none;
|
||||
position:absolute;
|
||||
z-index:9999;
|
||||
}
|
||||
.jqte_titleArrow {
|
||||
position:relative;
|
||||
}
|
||||
.jqte_titleArrowIcon {
|
||||
width:7px;
|
||||
height:6px;
|
||||
margin:0 auto;
|
||||
background:url(jquery-te.png) 0 -23px no-repeat;
|
||||
}
|
||||
.jqte_titleText {
|
||||
padding:5px 7px;
|
||||
margin-top:0;
|
||||
min-width:5px;
|
||||
min-height:1px;
|
||||
max-width:400px;
|
||||
background:#000;
|
||||
border-radius:3px; -webkit-border-radius:3px; -moz-border-radius:3px;
|
||||
word-wrap:break-word; -ms-word-wrap:break-word
|
||||
}
|
||||
.jqte_titleText, .jqte_titleText * {
|
||||
color:#FFF;
|
||||
font-size:11px
|
||||
}
|
||||
|
||||
/* placeholder */
|
||||
.jqte_placeholder {
|
||||
position:relative;
|
||||
display:none;
|
||||
}
|
||||
.jqte_placeholder_text {
|
||||
position:absolute;
|
||||
top:43px;
|
||||
left:10px;
|
||||
font-size:14px;
|
||||
color:#CCC;
|
||||
}
|
||||
9
asset/jQuery-TE/jquery-te-1.4.0.min.js
vendored
Normal file
9
asset/jQuery-TE/jquery-te-1.4.0.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
BIN
asset/jQuery-TE/jquery-te.png
Normal file
BIN
asset/jQuery-TE/jquery-te.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 2.5 KiB |
6
asset/jQuery-TE/license/AUTHOR.txt
Normal file
6
asset/jQuery-TE/license/AUTHOR.txt
Normal file
@@ -0,0 +1,6 @@
|
||||
AUTHOR
|
||||
|
||||
jQuery TE 1.4.0 , http://jqueryte.com/
|
||||
Copyright (C) 2013, Fatih Koca (fattih@fattih.com), (http://jqueryte.com/about)
|
||||
|
||||
jQuery TE is provided under the MIT LICENSE.
|
||||
7
asset/jQuery-TE/license/MIT-LICENSE.txt
Normal file
7
asset/jQuery-TE/license/MIT-LICENSE.txt
Normal file
@@ -0,0 +1,7 @@
|
||||
Copyright (C) 2013 jQueryTE, Fatih Koca (fattih@fattih.com), http://jqueryte.com/license.
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (jQueryTE), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED"AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
1347
asset/jQuery-TE/uncompressed/jquery-te-1.4.0.js
Normal file
1347
asset/jQuery-TE/uncompressed/jquery-te-1.4.0.js
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user