Lines Matching refs:aurora

724 			aurora: true,
855 …this.aurora = {}; // In _init()'s this.desired code and setmedia(): Accessed via this[solution], w…
856 this.aurora.formats = [];
857 this.aurora.properties = [];
907 $.each(self.aurora.formats, function(index2, value2) { // Check for duplicates
914 self.aurora.formats.push(format);
1024 this.aurora.canPlay = {};
1028 self.aurora.canPlay[format] = ($.inArray(format, self.aurora.formats) > -1);
1032 this.aurora.desired = false;
1054 this.aurora.support = {};
1058 self.aurora.support[format] = self.aurora.canPlay[format] && self.aurora.desired;
1063 this.aurora.used = false;
1082 if(!(this.html.used || this.aurora.used || this.flash.used)) {
1184 if(this.aurora.used) {
1193 …if((this.html.used || this.aurora.used) && !this.flash.used) { // If only HTML, then emulate flash…
1655 event.jPlayer.aurora = $.extend(true, {}, this.aurora); // Deep copy
1910 this.aurora.gate = false;
1915 this.aurora.active = false;
2001 self.aurora.gate = true;
2003 self.aurora.active = true;
2074 } else if(this.aurora.active) {
2085 } else if(this.aurora.active) {
2098 } else if(this.aurora.active) {
2122 } else if(this.aurora.active) {
2140 } else if(this.aurora.active) {
2181 } else if(this.aurora.active) {
2195 } else if(this.aurora.active) {
2218 if(this.aurora.used) {
2283 if(this.aurora.used) {
3102 if(self.aurora.support[format] && media[format]) {
3111 this.aurora.player = new AV.Player.fromURL(this.status.src);
3112 this._addAuroraEventListeners(this.aurora.player, this.aurora);
3120 if (this.aurora.player) {
3121 this.aurora.player.stop();
3130 this.aurora.player.preload();
3136 this.aurora.player.seek(time);
3139 if (!this.aurora.player.playing) {
3140 this.aurora.player.play();
3151 this.aurora.player.seek(time * 1000);
3153 this.aurora.player.pause();
3164 if(this.aurora.player.duration > 0) {
3166 this.aurora.player.seek(percent * this.aurora.player.duration / 100); // Using seconds
3179 this.aurora.player.volume = v * 100;
3183 this.aurora.properties.lastvolume = this.aurora.player.volume;
3184 this.aurora.player.volume = 0;
3186 this.aurora.player.volume = this.aurora.properties.lastvolume;
3188 this.aurora.properties.muted = m;