Fix doc generation

This commit is contained in:
Joshua Granick
2017-03-21 17:10:38 -07:00
parent a83db6e0a0
commit b0507f43b6

View File

@@ -27,7 +27,9 @@ import lime.utils.ArrayBuffer;
import lime.utils.UInt8Array; import lime.utils.UInt8Array;
#if (js && html5) #if (js && html5)
#if !display
import lime._backend.html5.HTML5HTTPRequest; import lime._backend.html5.HTML5HTTPRequest;
#end
import js.html.CanvasElement; import js.html.CanvasElement;
import js.html.ImageElement; import js.html.ImageElement;
import js.html.Image in JSImage; import js.html.Image in JSImage;
@@ -74,7 +76,7 @@ import lime.graphics.console.TextureData;
@:access(lime.math.Rectangle) @:access(lime.math.Rectangle)
@:access(lime.math.Vector2) @:access(lime.math.Vector2)
#if (js && html5) #if (js && html5 && !display)
@:access(lime._backend.html5.HTML5HTTPRequest) @:access(lime._backend.html5.HTML5HTTPRequest)
#end #end
@@ -749,7 +751,7 @@ class Image {
if (base64 == null || type == null) return Future.withValue (null); if (base64 == null || type == null) return Future.withValue (null);
#if (js && html5) #if (js && html5 && !display)
return HTML5HTTPRequest.loadImage ("data:" + type + ";base64," + base64); return HTML5HTTPRequest.loadImage ("data:" + type + ";base64," + base64);
@@ -831,7 +833,7 @@ class Image {
if (path == null) return Future.withValue (null); if (path == null) return Future.withValue (null);
#if (js && html5) #if (js && html5 && !display)
return HTML5HTTPRequest.loadImage (path); return HTML5HTTPRequest.loadImage (path);