Compare commits

..

No commits in common. "1b1442e66480c3dbaaa78370eff4eab0f6b14e65" and "a8aa619217bff2bba65468d75df331f03957d016" have entirely different histories.

2 changed files with 17 additions and 21 deletions

View file

@ -137,26 +137,24 @@ pandora.ui.helpDialog = function() {
that.select = function(id) {
var img, $img;
if ($text) {
$text.html(text[id || 'help']).scrollTop(0);
img = $text.find('img');
if (img) {
$img = $(img);
$img.replaceWith(
$image = Ox.ImageElement(
Ox.extend(getImageSize(), {src: $img.attr('src')})
)
.css({borderRadius: '8px'})
);
}
$text.find('td:first-child')
.css({
height: '16px',
paddingRight: '8px',
textAlign: 'right',
whiteSpace: 'nowrap'
});
$text.html(text[id || 'help']).scrollTop(0);
img = $text.find('img');
if (img) {
$img = $(img);
$img.replaceWith(
$image = Ox.ImageElement(
Ox.extend(getImageSize(), {src: $img.attr('src')})
)
.css({borderRadius: '8px'})
);
}
$text.find('td:first-child')
.css({
height: '16px',
paddingRight: '8px',
textAlign: 'right',
whiteSpace: 'nowrap'
});
return that;
}

View file

@ -322,7 +322,6 @@ if __name__ == "__main__":
current_branch = get_branch(path)
revno = get_version(path)
if repo == 'pandora':
print("Pandora Version pre update: ", revno)
pandora_old_revno = revno
current += revno
if current_branch != branch:
@ -346,7 +345,6 @@ if __name__ == "__main__":
new += '+'
os.chdir(join(base, 'pandora'))
if pandora_old_revno != pandora_new_revno:
print("Pandora Version post update: ", pandora_new_revno)
os.chdir(base)
run('./update.py', 'postupdate', pandora_old_revno, pandora_new_revno)
os.chdir(join(base, 'pandora'))