Skip to content

Instantly share code, notes, and snippets.

@gkatsev
Created May 2, 2013 22:02
Show Gist options
  • Save gkatsev/5505813 to your computer and use it in GitHub Desktop.
Save gkatsev/5505813 to your computer and use it in GitHub Desktop.
if (this.player_.muted()) {
return 0;
} else {
return this.player_.volume();
}
var volume;
if (this.player_.muted()) {
volume = 0;
} else {
volume = this.player_.volume();
}
return volume;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment