| Index: mojo/public/tools/bindings/generators/js_templates/module.sky.tmpl
|
| diff --git a/mojo/public/tools/bindings/generators/js_templates/module.html.tmpl b/mojo/public/tools/bindings/generators/js_templates/module.sky.tmpl
|
| similarity index 51%
|
| rename from mojo/public/tools/bindings/generators/js_templates/module.html.tmpl
|
| rename to mojo/public/tools/bindings/generators/js_templates/module.sky.tmpl
|
| index f0a223688d3c292c47f9329a46dd926ccd0e60c9..14b0d678382a177872d2f887e6acbec7c63daf3a 100644
|
| --- a/mojo/public/tools/bindings/generators/js_templates/module.html.tmpl
|
| +++ b/mojo/public/tools/bindings/generators/js_templates/module.sky.tmpl
|
| @@ -2,12 +2,12 @@
|
| Use of this source code is governed by a BSD-style license that can be
|
| found in the LICENSE file. -->
|
|
|
| -<link rel="import" href="/mojo/public/html/codec.html" as="codec" />
|
| -<link rel="import" href="/mojo/public/html/validator.html" as="validator" />
|
| +<import src="/mojo/public/sky/codec.sky" as="codec" />
|
| +<import src="/mojo/public/sky/validator.sky" as="validator" />
|
| {%- for import in imports %}
|
| -<link rel="import" href="/{{import.module.path}}.html" as="{{import.unique_name}}" />
|
| +<import src="/{{import.module.path}}.sky" as="{{import.unique_name}}" />
|
| {%- endfor %}
|
| <script>
|
| {%- include "module_definition.tmpl" %}
|
| - this.exports = exports;
|
| + module.exports = exports;
|
| </script>
|
|
|