This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.video.listitem.app; | |
import java.io.BufferedReader; | |
import java.io.IOException; | |
import java.io.InputStream; | |
import java.io.InputStreamReader; | |
import org.apache.http.HttpEntity; | |
import org.apache.http.HttpResponse; | |
import org.apache.http.client.ClientProtocolException; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.contact.form.app.domain; | |
import javax.persistence.Entity; | |
import javax.persistence.Id; | |
import javax.persistence.GeneratedValue; | |
import javax.persistence.Table; | |
import javax.validation.constraints.Pattern; | |
import javax.validation.constraints.Size; | |
import org.hibernate.validator.constraints.Email; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
this.bindCrossfadeButton = function () { | |
// save scope | |
var that = this; | |
// create button and bind click event | |
$('<a/>', { | |
'class': 'btn btn-primary btn-large demo-audio-btn unselectable button-margin-top' | |
}) | |
.text('cross-fade audio') | |
.appendTo('#examples-docs') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// pass 'true' boolean to enable jquery | |
// pass optional jquery easing parameter | |
soundManager.fadeUnmuteAllSounds('1000', 'true', 'easeOutBounce'); | |
// pass 'false' boolean to omit jquery easing parameter | |
soundManager.fadeUnmuteAllSounds('1000', 'true', 'false'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// pass 'false' boolean to disable jquery | |
// pass 'false' boolean to disable easing | |
soundManager.fadeUnmuteAllSounds('1000', 'false', 'false'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// pass 'false' boolean to disable jquery | |
// pass 'false' boolean to disable easing | |
soundManager.fadeMuteAllSounds('1000', 'false', 'false'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// pass 'true' boolean to enable jquery | |
// pass optional jquery easing parameter | |
soundManager.fadeUnmute('WOLVES_DEMO_AUDIO', '1000', 'true', 'easeOutBounce'); | |
// pass 'false' boolean to omit jquery easing parameter | |
soundManager.fadeUnmute('WOLVES_DEMO_AUDIO', '1000', 'true', 'false'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// pass 'false' boolean to disable jquery | |
// pass 'false' boolean to disable easing | |
soundManager.fadeUnmute('WOLVES_DEMO_AUDIO', '1000', 'false', 'false'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// pass 'true' boolean to enable jquery | |
// pass optional jquery easing parameter | |
soundManager.fadeMute('WOLVES_DEMO_AUDIO', '1000', 'true', 'easeOutBounce'); | |
// pass 'false' boolean to omit jquery easing parameter | |
soundManager.fadeMute('WOLVES_DEMO_AUDIO', '1000', 'true', 'false'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// pass 'false' boolean to disable jquery | |
// pass 'false' boolean to disable easing | |
soundManager.fadeMute('WOLVES_DEMO_AUDIO', '1000', 'false', 'false'); |
NewerOlder