mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-03-28 13:39:44 +07:00
* Remove docs folder. This was a redirect from a GitHub pages site that does not appear to be in use. * Rename api folder to api-samples. * Move examples to functional-samples folder. * Move cookbook sample to functional-samples. * Move tutorials to functional-samples folder. * Move mv2 and apps folders to _archive. * Rename tools folder to .repo. * Move reference folder to functional-samples. * Update README. Update README with new relative links for reorg. * Update README.md Co-authored-by: amysteamdev <37001393+AmySteam@users.noreply.github.com> --------- Co-authored-by: amysteamdev <37001393+AmySteam@users.noreply.github.com>
35 lines
1.0 KiB
HTML
35 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
|
|
<!-- Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
|
for details. All rights reserved. Use of this source code is governed by a
|
|
BSD-style license that can be found in the LICENSE file. -->
|
|
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Clock Demo</title>
|
|
<link rel="stylesheet" href="css/clock.css">
|
|
</head>
|
|
<body>
|
|
<h1>Clock</h1>
|
|
|
|
<p>An html5 clock using absolutely positioned elements.</p>
|
|
|
|
<div id="canvas-content"></div>
|
|
|
|
<footer>
|
|
<p id="summary"> </p>
|
|
<p id="notes"> </p>
|
|
</footer>
|
|
|
|
<script type="application/dart" src="dart/clock.dart"></script>
|
|
|
|
<!-- dart.js detects whether the app is opened in Dartium or Chrome and
|
|
rewites the .dart includes appropriately. Use a derivative of the copy
|
|
in packages/browser/dart.js, as that does not yet handle the CSP
|
|
compliant "precompiled" version. It must come after any dart scripts.
|
|
-->
|
|
<script src="js/browser_dart_csp_safe.js"></script>
|
|
</body>
|
|
</html>
|