260edd95ea
R=jmesserly@google.com Review URL: https://codereview.chromium.org//57423005 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@29870 260f80e4-7a28-3924-810f-c04153c831b5
12 lines
594 B
JavaScript
12 lines
594 B
JavaScript
// Copyright (c) 2013, 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.
|
|
|
|
(function() {
|
|
console.error('"boot.js" is now deprecated. Instead, you can initialize '
|
|
+ 'your polymer application by adding the following tags: \'' +
|
|
+ '<script type="application/dart">export "package:polymer/init.dart";'
|
|
+ '</script><script src="packages/browser/dart.js"></script>\'. '
|
|
+ 'Make sure these script tags come after all HTML imports.');
|
|
})();
|