Issue2356: IE8 fix

git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.3.2@11194 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
nagoon97 2012-09-10 08:09:00 +00:00
parent 912a1810dd
commit cd6383c93c
3 changed files with 20 additions and 12 deletions

View file

@ -605,7 +605,7 @@ _xeModuleSearch = function(){
}
$li = $('<li />').appendTo($siteList);
$('<a href="#" >').html(
$('<a>').attr('href', '#').html(
'<div>' + sDomain + '</div>' +
'<span class="icon-circle-arrow-right" style="display:inline-block;float:right;width:16px;height:16px;"></span>'
).data('site_srl', list[i].site_srl).appendTo($li);
@ -669,7 +669,7 @@ _xeModuleSearch = function(){
for(x in list) {
if(!list.hasOwnProperty(x)) continue;
$li = $('<li />').appendTo($moduleTypeList);
$('<a href="#" >').html(
$('<a>').attr('href', '#').html(
'<div>'+list[x].title+'</div>' +
'<span class="icon-circle-arrow-right" style="display:inline-block;float:right;width:16px;height:16px;"></span>'
).data('moduleInstanceList', list[x].list).appendTo($li);
@ -709,7 +709,7 @@ _xeModuleSearch = function(){
if(!list.hasOwnProperty(x)) continue;
$li = $('<li />').appendTo($moduleInstanceList);
$('<a href="#" >').html(
$('<a>').attr('href', '#').html(
'<div>'+list[x].browser_title+'</div>'
).data('module_srl', list[x].module_srl).appendTo($li);