Commit ca52266c authored by Adam Barth's avatar Adam Barth

Replace <link rel="import"> with <import>

This CL is just a search-and-replace.

R=esprehn@chromium.org

Review URL: https://codereview.chromium.org/694423002
parent 956d7b3e
...@@ -3,11 +3,9 @@ ...@@ -3,11 +3,9 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
--> -->
<link rel="import" <import src="../../framework/sky-element/sky-element.sky" as="SkyElement" />
href="../../framework/sky-element/sky-element.sky" <import src="city-data-service.sky" as="CityDataService" />
as="SkyElement" /> <import src="city-sequence.sky" as="CitySequence" />
<link rel="import" href="city-data-service.sky" as="CityDataService" />
<link rel="import" href="city-sequence.sky" as="CitySequence" />
<template> <template>
<style> <style>
......
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
<meta charset="utf-8"> <meta charset="utf-8">
<meta name="viewport" <meta name="viewport"
content="initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=yes, width=device-width"> content="initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=yes, width=device-width">
<link rel="import" href="city-list.sky" /> <import src="city-list.sky" />
<style> <style>
html, body { html, body {
margin: 0; margin: 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment