jumping menus updated..
This commit is contained in:
parent
6426fb74d9
commit
ee830f148e
|
@ -107,7 +107,9 @@ var orbitDesktop = function(dom){
|
|||
|
||||
$('body').on({
|
||||
click: function(){
|
||||
o.sub_menu_item($(this));
|
||||
if(!$(this).hasClass('active')){
|
||||
o.sub_menu_item($(this));
|
||||
}
|
||||
return false;
|
||||
},
|
||||
mouseenter: function(){
|
||||
|
@ -261,7 +263,6 @@ var orbitDesktop = function(dom){
|
|||
}
|
||||
}
|
||||
this.sub_menu_item = function(dom){
|
||||
if(!dom.hasClass('active')){
|
||||
var sub_data_method = dom.attr('callback-method');
|
||||
if(sub_data_method){
|
||||
$("div[container=true]").load(dom.attr("href"),function(){
|
||||
|
@ -278,7 +279,6 @@ var orbitDesktop = function(dom){
|
|||
}
|
||||
$('*[content-type=menu] a').removeClass('thmc1 thmtxt active');
|
||||
dom.addClass('thmc1 thmtxt active');
|
||||
}
|
||||
}
|
||||
|
||||
this.initializeDesktop = function(target,url,cache){ //this is for initializing main desktops that are sections and tiles
|
||||
|
|
|
@ -54,14 +54,15 @@ class Desktop::JournalPagesController < ApplicationController
|
|||
def update
|
||||
params[:writing_journal][:update_user_id] = current_user.id
|
||||
@writing_journal= WritingJournal.find(params[:id])
|
||||
respond_to do |format|
|
||||
# @writing_journal.update_user_id = current_user.id
|
||||
|
||||
if @writing_journal.update_attributes(params[:writing_journal])
|
||||
render json: {success: true, msg: t('update.success.paper')}.to_json
|
||||
else
|
||||
error_msg = @writing_journal.errors.full_messages.join("<br />")
|
||||
render json: {success: false, msg: error_msg}.to_json
|
||||
end
|
||||
end
|
||||
|
||||
end
|
||||
|
||||
def check_file_type file
|
||||
|
|
Reference in New Issue