Skip to content
Snippets Groups Projects
Unverified Commit 1bdb47d5 authored by Chad Pilkey's avatar Chad Pilkey Committed by GitHub
Browse files

Merge pull request #5352 from riadvice/ios-slides

Use PNG slides for iOS
parents bcf7c8b0 43c756e3
No related branches found
No related tags found
No related merge requests found
package org.bigbluebutton.air.presentation.models {
import flash.system.Capabilities;
import flash.utils.ByteArray;
import mx.controls.SWFLoader;
......@@ -91,7 +92,11 @@ package org.bigbluebutton.air.presentation.models {
}
public function get slideURI():String {
return _slideURI;
if (Capabilities.version.indexOf("IOS") >= 0) {
return _slideURI.replace(/\/slide\//g, "/png/");
} else {
return _slideURI;
}
}
public function get loaded():Boolean {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment