compatibility page added and tinyscrollbar drag event fixed..

This commit is contained in:
Harry Bomrah 2013-03-12 15:23:38 +08:00 committed by Matt K. Fu
parent 401c75c0de
commit b8ee2fd559
7 changed files with 33 additions and 3 deletions

View File

@ -217,6 +217,7 @@
oContent.obj.css( sDirection, -iScroll );
oThumb.obj.css( sDirection, iPosition.now );
}
options.onMove.call(this,get_destance_from_end());
}
function end()

View File

@ -604,12 +604,12 @@ var orbitDesktop = function(dom){
// }
// }
// });
o.simple_drop_down();
o.tinyscrollbar_ext({
main: '.tinycanvas'
})
o.simple_drop_down();
// $("div#group_wrapper ul li[data-category=app]").click(function(){
// o.appWindow({
// title : $(this).find("a").attr("href"),
@ -1441,7 +1441,8 @@ var orbitDesktop = function(dom){
}
var settings = {"axis":"x"};
$.map(tinysettings,function(val,i){ settings[i] = val })
if(typeof tinysettings != "undefined")
$.map(tinysettings,function(val,i){ settings[i] = val })
var count,baseWidth,fillArray,pxs;
if( typeof target.fill == 'string' ){

View File

@ -10,6 +10,10 @@ class DesktopController< ApplicationController
@title = "Desktop - " + @currentusername
@section = @desktop.sections.first
end
def compatibility
render :layout => "compatibility"
end
def desktop
render :layout => false

View File

@ -0,0 +1 @@
You have a bad browser ...!!!

View File

@ -0,0 +1,15 @@
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Error</title>
<%= stylesheet_link_tag "desktop" %>
<%= yield :page_specific_css %>
<%= csrf_meta_tag %>
</head>
<body>
<%= render 'layouts/orbit_bar' %>
<%= yield %>
</body>
</html>

View File

@ -1,6 +1,13 @@
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<noscript>
<meta http-equiv="refresh" content="0; URL=/compatibility">
</noscript>
<!--[if lte IE 8]>
<meta http-equiv="refresh" content="0; URL=/compatibility" />
<![endif]-->
<meta charset="utf-8">
<title><%= @title || APP_CONFIG['orbit'] %></title>
<!--[if lt IE 9]>

View File

@ -187,6 +187,7 @@ Orbit::Application.routes.draw do
end
end
match "compatibility" => "desktop#compatibility"
match "desktop" => "desktop#index"
match "/desktop/desktop" => "desktop#desktop"
match '/desktop/desktop'=>'desktop#desktop'