Skip to content

Commit

Permalink
Merge pull request #5 from Xenko/beta
Browse files Browse the repository at this point in the history
Patch for Classic Layout
  • Loading branch information
Guizmus committed Mar 20, 2014
2 parents 8aa162a + c106d4d commit 1155c40
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
8 changes: 7 additions & 1 deletion BeachBall.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ BeachBall.resetCaged = 0;


//Version Information
BeachBall.version = '5.1.4.1';
BeachBall.version = '5.1.4.2';
BeachBall.SCBversion = '3.33333'; //Last SandCastle Builder version tested

//BB Audio Alerts Variables
Expand Down Expand Up @@ -805,6 +805,12 @@ BeachBall.LoadToolFactory = function() {
}

BeachBall.CreateMenu = function() {

if ((window.location.pathname == "/classic.html") && (g('sectionOptions') != null)) { // patch for option height in classic
g('sectionOptions').style['height'] = '236px';
g('sectionOptions').style['overflow-y'] = 'scroll';

}
for (var i = Molpy.OptionsById.length-1; i >= 0; i--)
if (EvalMaybeFunction(Molpy.OptionsById[i].visability) > 0) {
Molpy.OptionsById[i].breakafter = true;
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,14 @@
## Changelog

###Version 5.1.4
###Version 5.1.4.1
###Version 5.1.4.2

####Bug Fixes
* Fixed Logicat countdown and clicker not working with Redacted object rewrited in 3.33331
* Fixed option menu rewriten in same update
* .1 : Fixed Logicat bug with audio alert
* .2 : Fixed display problem with classic layout

###Version 5.1.3

Expand Down

0 comments on commit 1155c40

Please sign in to comment.