| Index: third_party/polymer/v0_8/components-chromium/polymer/src/mini/template-extracted.js
|
| diff --git a/third_party/polymer/v0_8/components-chromium/polymer/src/mini/template-extracted.js b/third_party/polymer/v0_8/components-chromium/polymer/src/mini/template-extracted.js
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..75d4c3dc69e535d8527e5c2556ac161c7cafbc81
|
| --- /dev/null
|
| +++ b/third_party/polymer/v0_8/components-chromium/polymer/src/mini/template-extracted.js
|
| @@ -0,0 +1,46 @@
|
| +
|
| +
|
| + /**
|
| + * Automatic template management.
|
| + *
|
| + * The `template` feature locates and instances a `<template>` element
|
| + * corresponding to the current Polymer prototype.
|
| + *
|
| + * The `<template>` element may be immediately preceeding the script that
|
| + * invokes `Polymer()`.
|
| + *
|
| + * @class standard feature: template
|
| + */
|
| +
|
| + Polymer.Base._addFeature({
|
| +
|
| + _prepTemplate: function() {
|
| + // locate template using dom-module
|
| + this._template =
|
| + this._template || Polymer.DomModule.import(this.is, 'template');
|
| + // fallback to look at the node previous to the currentScript.
|
| + if (!this._template) {
|
| + var script = document._currentScript || document.currentScript;
|
| + var prev = script && script.previousElementSibling;
|
| + if (prev && prev.localName === 'template') {
|
| + this._template = prev;
|
| + }
|
| + }
|
| + },
|
| +
|
| + _stampTemplate: function() {
|
| + if (this._template) {
|
| + // note: root is now a fragment which can be manipulated
|
| + // while not attached to the element.
|
| + this.root = this.instanceTemplate(this._template);
|
| + }
|
| + },
|
| +
|
| + instanceTemplate: function(template) {
|
| + var dom =
|
| + document.importNode(template._content || template.content, true);
|
| + return dom;
|
| + }
|
| +
|
| + });
|
| +
|
|
|