Lines Matching refs:aurora

2769 			aurora: true,
2900 …this.aurora = {}; // In _init()'s this.desired code and setmedia(): Accessed via this[solution], w…
2901 this.aurora.formats = [];
2902 this.aurora.properties = [];
2952 $.each(self.aurora.formats, function(index2, value2) { // Check for duplicates
2959 self.aurora.formats.push(format);
3069 this.aurora.canPlay = {};
3073 self.aurora.canPlay[format] = ($.inArray(format, self.aurora.formats) > -1);
3077 this.aurora.desired = false;
3099 this.aurora.support = {};
3103 self.aurora.support[format] = self.aurora.canPlay[format] && self.aurora.desired;
3108 this.aurora.used = false;
3127 if(!(this.html.used || this.aurora.used || this.flash.used)) {
3229 if(this.aurora.used) {
3238 …if((this.html.used || this.aurora.used) && !this.flash.used) { // If only HTML, then emulate flash…
3700 event.jPlayer.aurora = $.extend(true, {}, this.aurora); // Deep copy
3955 this.aurora.gate = false;
3960 this.aurora.active = false;
4046 self.aurora.gate = true;
4048 self.aurora.active = true;
4119 } else if(this.aurora.active) {
4130 } else if(this.aurora.active) {
4143 } else if(this.aurora.active) {
4167 } else if(this.aurora.active) {
4185 } else if(this.aurora.active) {
4226 } else if(this.aurora.active) {
4240 } else if(this.aurora.active) {
4263 if(this.aurora.used) {
4328 if(this.aurora.used) {
5147 if(self.aurora.support[format] && media[format]) {
5156 this.aurora.player = new AV.Player.fromURL(this.status.src);
5157 this._addAuroraEventListeners(this.aurora.player, this.aurora);
5165 if (this.aurora.player) {
5166 this.aurora.player.stop();
5175 this.aurora.player.preload();
5181 this.aurora.player.seek(time);
5184 if (!this.aurora.player.playing) {
5185 this.aurora.player.play();
5196 this.aurora.player.seek(time * 1000);
5198 this.aurora.player.pause();
5209 if(this.aurora.player.duration > 0) {
5211 this.aurora.player.seek(percent * this.aurora.player.duration / 100); // Using seconds
5224 this.aurora.player.volume = v * 100;
5228 this.aurora.properties.lastvolume = this.aurora.player.volume;
5229 this.aurora.player.volume = 0;
5231 this.aurora.player.volume = this.aurora.properties.lastvolume;
5233 this.aurora.properties.muted = m;