| Index: lib/browser_resource.dart
|
| diff --git a/lib/resource.dart b/lib/browser_resource.dart
|
| similarity index 73%
|
| copy from lib/resource.dart
|
| copy to lib/browser_resource.dart
|
| index 83c75c695dabd9249317861ec15cbf8691c36cb8..cd3c9d10d78753f9cdd900c8fd86679afd6d5bb2 100644
|
| --- a/lib/resource.dart
|
| +++ b/lib/browser_resource.dart
|
| @@ -21,9 +21,11 @@
|
| /// .first;
|
| ///
|
| ///
|
| -/// Notice: Currently this package requires `dart:io` to do the reading,
|
| -/// so it doesn't work in the browser.
|
| +/// Notice: Currently this library requires `dart:Html` to do the reading,
|
| +/// so it doesn't work outside of a browser.
|
| +/// This library will eventually be mergeded into the `resource.dart` when
|
| +/// features are available to make that possible.
|
| library resource;
|
|
|
| -export "src/resource.dart" show Resource;
|
| -export "src/loader.dart" show ResourceLoader;
|
| +export "src/browser/resource.dart";
|
| +export "src/browser/loader.dart";
|
|
|