Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Spelling #547

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions bin/runSafe.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
# 0 silent
# 1 email
ERROR_HANDLING=0
# Your email address which should recieve the error messages
# Your email address which should receive the error messages
EMAIL_ADDRESS="[email protected]"
# Sets the minimun amount of time betweens the sending of error emails.
# This ensures you not get spamed while a endless reboot loop
# Sets the minimum amount of time betweens the sending of error emails.
# This ensures you not get spammed while a endless reboot loop
# It's the time in seconds
TIME_BETWEEN_EMAILS=600 # 10 minutes

Expand Down
16 changes: 8 additions & 8 deletions player-graph.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions src/player-graph.ls
Original file line number Diff line number Diff line change
Expand Up @@ -698,10 +698,10 @@
selectedbg = '404040'
unselectedbg = '808080'
cursorbg = \A6A6A6
hightLightForegoundColour = \FFF
hightLightForegroundColour = \FFF
if SocialCalc.requestParams[\app]?
cursorbg = \FFF
hightLightForegoundColour = \000
hightLightForegroundColour = \000

scc.SCToolbarbackground = 'background-color:#' + selectedbg + ';'
scc.SCTabbackground = 'background-color:#' + unselectedbg + ';'
Expand All @@ -715,8 +715,8 @@
scc.defaultImagePrefix = 'images/sc_'
SocialCalc.Popup.LocalizeString = SocialCalc.LocalizeString
#row and col header colours
scc.defaultColnameStyle = 'overflow:visible;font-size:small;text-align:center;color:#' + hightLightForegoundColour + ';background-color:#' + unselectedbg
scc.defaultSelectedColnameStyle = 'overflow:visible;font-size:small;text-align:center;color:#' + hightLightForegoundColour + ';background-color:#' + selectedbg
scc.defaultRownameStyle = 'position:relative;overflow:visible;font-size:small;text-align:center;vertical-align:middle;color:#' + hightLightForegoundColour + ';background-color:#' + unselectedbg + ';direction:rtl;'
scc.defaultSelectedRownameStyle = 'position:relative;overflow:visible;font-size:small;text-align:center;vertical-align:middle;color:#' + hightLightForegoundColour + ';background-color:#' + selectedbg + ';'
scc.defaultHighlightTypeCursorStyle = 'color:#' + hightLightForegoundColour + ';backgroundColor:#' + cursorbg + ';'
scc.defaultColnameStyle = 'overflow:visible;font-size:small;text-align:center;color:#' + hightLightForegroundColour + ';background-color:#' + unselectedbg
scc.defaultSelectedColnameStyle = 'overflow:visible;font-size:small;text-align:center;color:#' + hightLightForegroundColour + ';background-color:#' + selectedbg
scc.defaultRownameStyle = 'position:relative;overflow:visible;font-size:small;text-align:center;vertical-align:middle;color:#' + hightLightForegroundColour + ';background-color:#' + unselectedbg + ';direction:rtl;'
scc.defaultSelectedRownameStyle = 'position:relative;overflow:visible;font-size:small;text-align:center;vertical-align:middle;color:#' + hightLightForegroundColour + ';background-color:#' + selectedbg + ';'
scc.defaultHighlightTypeCursorStyle = 'color:#' + hightLightForegroundColour + ';backgroundColor:#' + cursorbg + ';'