Code cleansing

This commit is contained in:
Youngkyun 2017-10-29 15:15:18 +09:00
parent 15db7f27de
commit 88fb7bdacc
No known key found for this signature in database
GPG Key ID: 07AB560C7F798018
9 changed files with 21 additions and 37 deletions

View File

@ -4,9 +4,6 @@
//= require turbolinks
//= require bootstrap.min.js
//= require contextmenu.js
//= require flash.js
//= require gentelella/src/js/custom.js
//= require gentelella/vendors/Chart.js/dist/Chart.min.js
//= require gentelella/vendors/Flot/jquery.flot.js
@ -22,5 +19,23 @@
//= require gentelella/vendors/validator/validator.js
$(function() {
console.log("Application js");
$('#flash').delay(500).fadeIn('normal', function() {
$(this).delay(2500).fadeOut();
});
});
function CheckLocation(){
$(document).mousedown(function(e){
// context menu 가 아닌 다른 영역을 클릭한경우 판단
if ($(e.target).parents(".contextmenu").length !== 0)
return;
$(".contextmenu").hide();
$(document).unbind('mousedown');
});
}
function ShowContextMenu(className){
$("."+className).css({
left:event.pageX+"px",
top:event.pageY+"px"
}).show();
}

View File

@ -1,15 +0,0 @@
function CheckLocation(){
$(document).mousedown(function(e){
// context menu 가 아닌 다른 영역을 클릭한경우 판단
if ($(e.target).parents(".contextmenu").length !== 0)
return;
$(".contextmenu").hide();
$(document).unbind('mousedown');
});
}
function ShowContextMenu(className){
$("."+className).css({
left:event.pageX+"px",
top:event.pageY+"px"
}).show();
}

View File

@ -1,6 +0,0 @@
$(function() {
$('#flash').delay(500).fadeIn('normal', function() {
$(this).delay(2500).fadeOut();
});
});

View File

@ -1,9 +1,5 @@
class ApplicationController < ActionController::Base
protect_from_forgery with: :exception
include ApplicationHelper
include HomeHelper
include VolumeHelper
include NodeHelper
def require_login
unless user_signed_in?

View File

@ -1,6 +1,4 @@
class Web::HomeController < WebController
before_action :require_login
def index
@current_dir = "/mnt"
end

View File

@ -1,6 +1,4 @@
class Web::NodeController < WebController
before_action :require_login
def index
end
def detail

View File

@ -1,6 +1,4 @@
class Web::VolumeController < WebController
before_action :require_login
def index
@current_dir = "/mnt"
end

View File

@ -1,2 +1,3 @@
class WebController < ApplicationController
before_action :require_login
end

View File

@ -9,5 +9,4 @@ Rails.application.config.assets.version = '1.0'
# Precompile additional assets.
# application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
# Rails.application.config.assets.precompile += %w( search.js )
Rails.application.config.assets.precompile += %w( footermanifest.js)
# Rails.application.config.assets.precompile += %w( footermanifest.js)