Merge branch 'desktop_harry' into desktop_devin
This commit is contained in:
commit
3415c3b17f
|
@ -384,14 +384,12 @@ modalWindow : function(settings,callbackFn){
|
|||
if(tempheight>maxheight)
|
||||
tempheight=maxheight;
|
||||
}else{tempheight="auto";}
|
||||
|
||||
if(typeof tempwidth!="undefined"){
|
||||
if(tempwidth.charAt(tempwidth.length-1)=='%')
|
||||
tempwidth=(rgmaskWidth*parseInt(tempwidth.substr(0,tempwidth.length)))/100;
|
||||
if(tempwidth>maxwidth)
|
||||
tempwidth=maxwidth;
|
||||
}else{tempwidth="auto";}
|
||||
|
||||
$rss("body").append('<div class="rgmask" id="rgsheath" style="height:'+rgmaskHeight+'px"></div>');
|
||||
$rss("#rgsheath").css({background: "#000", width: "100%", position: "fixed", top: 0, left: 0,opacity:0.5,'z-index':199});
|
||||
$rss("body").append('<div id="rgWindow"></div>');
|
||||
|
@ -400,7 +398,7 @@ modalWindow : function(settings,callbackFn){
|
|||
var rgWLeft = (rgmaskWidth-20)/2;
|
||||
$rss("#rgWindow").css({top:rgWTop+"px", left:rgWLeft+"px"});
|
||||
if(typeof settings.loadDiv!="undefined"){
|
||||
dhtml = $rss("#"+settings.loadDiv).html();
|
||||
dhtml = $rss(settings.loadDiv).html();
|
||||
$rss("#rgWindow").html(dhtml).hide();
|
||||
prepareWindow();
|
||||
}
|
||||
|
@ -416,7 +414,7 @@ modalWindow : function(settings,callbackFn){
|
|||
if(tempheight!="auto")
|
||||
rgWTop = (rgmaskHeight-tempheight)/2;
|
||||
else{
|
||||
tempheight=$rss("#rgWindow").height();
|
||||
tempheight=$rss("#rgWindow").height()+30;
|
||||
if(tempheight>maxheight)
|
||||
tempheight=maxheight;
|
||||
rgWTop=(rgmaskHeight-tempheight)/2;
|
||||
|
@ -451,7 +449,7 @@ modalWindow : function(settings,callbackFn){
|
|||
$rss("#rgWindow").animate({top:x+"px", left:y+"px","width":"50px","height":"50px"},300,function(){$rss(this).fadeOut(100).remove();$rss("#rgsheath").fadeOut(500).remove();});})
|
||||
|
||||
if(typeof callbackFn=="function")
|
||||
callbackFn.call(this,dhtml);
|
||||
callbackFn.call(this,$rss("#rgWindow"));
|
||||
});
|
||||
}
|
||||
},
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
class DesktopController< ApplicationController
|
||||
layout 'desktop'
|
||||
before_filter :authenticate_user!
|
||||
|
|
|
@ -75,3 +75,4 @@
|
|||
<%#= content_tag :li, link_to(t('admin.tags'), admin_asset_tags_path), :class => active_for_action('/admin/asset_tags', 'index') %>
|
||||
<%# end -%>
|
||||
<%# end -%>
|
||||
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
//= require galleryAPI
|
|
@ -0,0 +1,27 @@
|
|||
var galleryAPI = function(){
|
||||
g = this;
|
||||
|
||||
this.initialize = function(){
|
||||
$(document).ready(function(){
|
||||
bindHandlers()
|
||||
})
|
||||
var bindHandlers = function(){
|
||||
$("#gallery_panel a.btn").click(function(){
|
||||
rcom.modalWindow({loadDiv:"#"+$(this).attr("href"),width:"400"},function(dom){
|
||||
console.log(dom)
|
||||
dom.find("#category_save_btn").click(function(){
|
||||
var lang = {
|
||||
"en" : dom.find("#category_name_en").val(),
|
||||
"zh_tw" : dom.find("#category_name_zh_tw").val()
|
||||
}
|
||||
$.post("gallery_category_save",{"category":lang},function(){
|
||||
|
||||
})
|
||||
return false;
|
||||
})
|
||||
});
|
||||
return false;
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,11 @@
|
|||
class Panel::Gallery::BackEnd::OrbitGalleriesController < OrbitBackendController
|
||||
|
||||
def index
|
||||
end
|
||||
|
||||
def new_category
|
||||
GalleryCategory.create(language_value: params["category"])
|
||||
render :json=>{"success"=>"true"}.to_json
|
||||
end
|
||||
|
||||
end
|
|
@ -0,0 +1,6 @@
|
|||
class GalleryCategory
|
||||
include Mongoid::Document
|
||||
include Mongoid::Timestamps
|
||||
|
||||
has_one :i18n_variable, :as => :language_value, :autosave => true, :dependent => :destroy
|
||||
end
|
29
vendor/built_in_modules/gallery/app/views/panel/gallery/back_end/orbit_galleries/index.html.erb
vendored
Normal file
29
vendor/built_in_modules/gallery/app/views/panel/gallery/back_end/orbit_galleries/index.html.erb
vendored
Normal file
|
@ -0,0 +1,29 @@
|
|||
<% content_for :page_specific_javascript do %>
|
||||
<%= javascript_include_tag "galleryAPI" %>
|
||||
<% end %>
|
||||
|
||||
<div id="orbit_gallery">
|
||||
|
||||
</div>
|
||||
<div id="gallery_panel">
|
||||
<a class="btn" href="categories" >Manage Categories</a>
|
||||
<a class="btn" href="albums">Manage Albums</a>
|
||||
</div>
|
||||
<div class="modal hide fade" id="categories">
|
||||
<div class="modal-header">
|
||||
<h3>Categories</h3>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<p>All Categories</p>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
New Category[English] : <input type="text" id="category_name_en"></text><br />
|
||||
New Category[Chinese] : <input type="text" id="category_name_zh_tw"></text><br />
|
||||
<a href="#" class="btn" data-dismiss="modal">Close</a>
|
||||
<a href="#" class="btn btn-primary" id="category_save_btn">Save changes</a>
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
var gallery = new galleryAPI();
|
||||
gallery.initialize();
|
||||
</script>
|
|
@ -1,2 +1,11 @@
|
|||
Rails.application.routes.draw do
|
||||
namespace :panel do
|
||||
namespace :gallery do
|
||||
namespace :back_end do
|
||||
match "orbit_gallery" => "orbit_galleries#index"
|
||||
match "gallery_category_save" => "orbit_galleries#new_category"
|
||||
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue