publication adjustment
This commit is contained in:
parent
2e94c19019
commit
58d162d225
|
@ -1363,7 +1363,20 @@ var orbitDesktop = function(dom){
|
||||||
|
|
||||||
var list = function(){
|
var list = function(){
|
||||||
var bindHandlers = function(){
|
var bindHandlers = function(){
|
||||||
|
o.simple_drop_down();
|
||||||
|
|
||||||
|
// fill width for tiny scroll bar
|
||||||
|
var e = $('.list_t'),
|
||||||
|
count = e.length,
|
||||||
|
baseWidth = e.eq(1).outerWidth(true);
|
||||||
|
|
||||||
|
e.parents('.overview').width( baseWidth * count );
|
||||||
|
|
||||||
|
$('.tinycanvas')
|
||||||
|
.tinyscrollbar({ axis: 'x'})
|
||||||
|
.find('.scrollbar')
|
||||||
|
.delay(1500)
|
||||||
|
.addClass('op00', 500);
|
||||||
}
|
}
|
||||||
|
|
||||||
$("div#books div#panel_r").load("/desktop/books_list",function(){
|
$("div#books div#panel_r").load("/desktop/books_list",function(){
|
||||||
|
@ -1373,6 +1386,20 @@ var orbitDesktop = function(dom){
|
||||||
|
|
||||||
var addbook = function(){
|
var addbook = function(){
|
||||||
var bindHandlers = function(){
|
var bindHandlers = function(){
|
||||||
|
o.simple_drop_down();
|
||||||
|
|
||||||
|
// fill width for tiny scroll bar
|
||||||
|
var e = $('.s_grid_con'),
|
||||||
|
count = e.length,
|
||||||
|
baseWidth = e.eq(1).outerWidth(true);
|
||||||
|
|
||||||
|
e.parents('.overview').width( baseWidth * count );
|
||||||
|
|
||||||
|
$('.tinycanvas')
|
||||||
|
.tinyscrollbar({ axis: 'x'})
|
||||||
|
.find('.scrollbar')
|
||||||
|
.delay(1500)
|
||||||
|
.addClass('op00', 500);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1425,7 +1452,18 @@ var orbitDesktop = function(dom){
|
||||||
|
|
||||||
var list = function(){
|
var list = function(){
|
||||||
var bindHandlers = function(){
|
var bindHandlers = function(){
|
||||||
|
// fill width for tiny scroll bar
|
||||||
|
var e = $('.list_t'),
|
||||||
|
count = e.length,
|
||||||
|
baseWidth = e.eq(1).outerWidth(true);
|
||||||
|
|
||||||
|
e.parents('.overview').width( baseWidth * count );
|
||||||
|
|
||||||
|
$('.tinycanvas')
|
||||||
|
.tinyscrollbar({ axis: 'x'})
|
||||||
|
.find('.scrollbar')
|
||||||
|
.delay(1500)
|
||||||
|
.addClass('op00', 500);
|
||||||
}
|
}
|
||||||
|
|
||||||
$("div#seminar_p div#panel_r").load("/desktop/seminar_p_list",function(){
|
$("div#seminar_p div#panel_r").load("/desktop/seminar_p_list",function(){
|
||||||
|
@ -1435,7 +1473,20 @@ var orbitDesktop = function(dom){
|
||||||
|
|
||||||
var addseminar = function(){
|
var addseminar = function(){
|
||||||
var bindHandlers = function(){
|
var bindHandlers = function(){
|
||||||
|
o.simple_drop_down();
|
||||||
|
|
||||||
|
// fill width for tiny scroll bar
|
||||||
|
var e = $('.s_grid_con'),
|
||||||
|
count = e.length,
|
||||||
|
baseWidth = e.eq(1).outerWidth(true);
|
||||||
|
|
||||||
|
e.parents('.overview').width( baseWidth * count );
|
||||||
|
|
||||||
|
$('.tinycanvas')
|
||||||
|
.tinyscrollbar({ axis: 'x'})
|
||||||
|
.find('.scrollbar')
|
||||||
|
.delay(1500)
|
||||||
|
.addClass('op00', 500);
|
||||||
}
|
}
|
||||||
|
|
||||||
$("div#seminar_p div#panel_r").load("/desktop/seminar_p_add",function(){
|
$("div#seminar_p div#panel_r").load("/desktop/seminar_p_add",function(){
|
||||||
|
|
|
@ -147,3 +147,6 @@
|
||||||
.desktop_toolpopup .context {
|
.desktop_toolpopup .context {
|
||||||
line-height: 1.5em;
|
line-height: 1.5em;
|
||||||
}
|
}
|
||||||
|
.thmc1.hover .icon-chevron-right {
|
||||||
|
display: none;
|
||||||
|
}
|
|
@ -98,8 +98,8 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="s_grid_con s_form">
|
<div class="s_grid_con s_form">
|
||||||
<ul>
|
<ul>
|
||||||
<li class="s_grid_row"><textarea name="" id="" rows="26" class="s_grid s_grid_6">Abstract</textarea></li>
|
<li class="s_grid_row"><textarea name="" id="" rows="20" class="s_grid s_grid_6">Abstract</textarea></li>
|
||||||
<li class="s_grid_row"><textarea name="" id="" rows="16" class="s_grid s_grid_6">Note</textarea></li>
|
<li class="s_grid_row"><textarea name="" id="" rows="6" class="s_grid s_grid_6">Note</textarea></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue