url handling modified.. tinyscrollbar modified… star checkbox fixed..
This commit is contained in:
parent
23c8c28b52
commit
2ead541733
|
@ -159,11 +159,20 @@ var orbitDesktop = function(dom){
|
|||
|
||||
$("body").on("click","*[ajax-remote]",function(){
|
||||
var $e = $(this);
|
||||
var t = $e.attr("ajax-remote");
|
||||
var classes_to_toggle = $e.attr("toggle-onclick");
|
||||
if(classes_to_toggle){
|
||||
$e.toggleClass(classes_to_toggle);
|
||||
}
|
||||
if(t == "false"){
|
||||
return false;
|
||||
}
|
||||
var exe = $e.attr("callback-method"); // (typeof $e.attr("callback-method") == "function"? $e.attr("callback-method") : "");
|
||||
var ca = $e.attr("content-holder");
|
||||
var a = function(){
|
||||
|
||||
$.ajax({
|
||||
type : $e.attr("ajax-remote"),
|
||||
type : t,
|
||||
url : $e.attr("href"),
|
||||
success : function(data){
|
||||
if(typeof data == "string"){
|
||||
|
@ -300,7 +309,7 @@ var orbitDesktop = function(dom){
|
|||
$("div[container=true] div.overview").html(temp_div.html());
|
||||
o.tinyscrollbar_ext({
|
||||
main : ".tinycanvas",
|
||||
fill : base_width * total_columns
|
||||
fill : base_width * (total_columns++) + 250
|
||||
})
|
||||
|
||||
}
|
||||
|
|
|
@ -11,8 +11,8 @@ module Panel::PersonalJournal::Desktop::JournalPagesHelper
|
|||
def marker
|
||||
content_tag :div,
|
||||
:class => "list_item_action"
|
||||
content_tag(:a, "", :class => "icon-check-empty") + \
|
||||
content_tag(:a, "", :class => "icon-star-empty")
|
||||
content_tag(:a, "",:href=>"", :class => "icon-check-empty", "toggle-onclick"=>"icon-check-empty icon-check", "ajax-remote"=>"false") + \
|
||||
content_tag(:a, "",:href=>"", :class => "icon-star-empty", "toggle-onclick"=>"icon-star-empty icon-star", "ajax-remote"=>"false")
|
||||
end
|
||||
|
||||
def content publication, view
|
||||
|
|
Reference in New Issue