Compare commits
2 commits
a8aa619217
...
1b1442e664
Author | SHA1 | Date | |
---|---|---|---|
1b1442e664 | |||
18cbf0ec9c |
2 changed files with 21 additions and 17 deletions
|
@ -137,6 +137,7 @@ 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) {
|
||||
|
@ -155,6 +156,7 @@ pandora.ui.helpDialog = function() {
|
|||
textAlign: 'right',
|
||||
whiteSpace: 'nowrap'
|
||||
});
|
||||
}
|
||||
return that;
|
||||
}
|
||||
|
||||
|
|
|
@ -322,6 +322,7 @@ 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:
|
||||
|
@ -345,6 +346,7 @@ 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'))
|
||||
|
|
Loading…
Reference in a new issue