From 40f7c916099f934298ce868678491b3234ab6dc2 Mon Sep 17 00:00:00 2001 From: Charles Marion Date: Mon, 28 Mar 2011 10:32:16 +0200 Subject: [PATCH] BUG: fixed translation --- core/views/community/index.phtml | 2 +- public/css/user/user.settings.css | 4 ++-- public/js/layout/main.js | 13 +++++++++---- 3 files changed, 12 insertions(+), 7 deletions(-) diff --git a/core/views/community/index.phtml b/core/views/community/index.phtml index 4ab6e9f34..597514ad8 100644 --- a/core/views/community/index.phtml +++ b/core/views/community/index.phtml @@ -27,7 +27,7 @@ userCommunities)) { - echo "

{$this->t("No communty available")}.{$this->t("Create your own community")}!

"; + echo "

{$this->t("No community available")}. {$this->t("Create your own community")}!

"; } ?> diff --git a/public/css/user/user.settings.css b/public/css/user/user.settings.css index 063c93821..e465e9d12 100644 --- a/public/css/user/user.settings.css +++ b/public/css/user/user.settings.css @@ -53,8 +53,8 @@ div#tabsSettings .ui-state-default{ div#tabsSettings .ui-tabs-panel { position: relative !important; - left: -15px!important; - border-top: 1px solid #F3F1EC; + left: -75px!important; + border: 1px solid grey; width: 99%; } diff --git a/public/js/layout/main.js b/public/js/layout/main.js index acd8dc11f..d4831ca50 100644 --- a/public/js/layout/main.js +++ b/public/js/layout/main.js @@ -267,14 +267,18 @@ function loadDialog(name,url) function showDialog(title,button) { + var x= $('div.HeaderSearch').position().left+150; + console.log(x); + var y= 100; if(button) { $( "div.MainDialog" ).dialog({ resizable: false, width:450, modal: false, - draggable:true, - title: title , + draggable:false, + title: title, + position: [x,y], buttons: { "Ok": function() { $(this).dialog("close"); } } }); @@ -285,8 +289,9 @@ function showDialog(title,button) resizable: false, width:450, modal: false, - draggable:true, - title: title + draggable:false, + title: title , + position: [x,y] }); } }