Skip to content

Commit

Permalink
fix lint errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
Steven Orvell committed Mar 17, 2016
1 parent 31c785d commit d7a2baa
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/standard/styling.html
Expand Up @@ -63,7 +63,7 @@
// only if no custom properties are used since otherwise
// styles are applied via property shimming.
if (!this._needsStyleProperties() && this._styles.length) {
var style = styleUtil.applyCss(cssText, this.is,
styleUtil.applyCss(cssText, this.is,
nativeShadow ? this._template.content : null, this._scopeStyle);
}
} else {
Expand Down
7 changes: 4 additions & 3 deletions test/unit/base.html
Expand Up @@ -23,14 +23,14 @@
</head>
<body>
<script>
(function() {

var Child;
var instance;

setup(function() {
// Ensure a clean environment for each test.
/* global Base */
window.Child = Object.create(Polymer.Base);
Child = Object.create(Polymer.Base);
Child.is = 'x-child';
Child._registerFeatures = function() {};
Child._initFeatures = function() {};
Expand All @@ -41,7 +41,7 @@
this[name].apply(this, args || []);
}
};
window.instance = Object.create(Child);
instance = Object.create(Child);
});

suite('addFeature', function() {
Expand Down Expand Up @@ -139,6 +139,7 @@

});

})();
</script>
</body>
</html>

0 comments on commit d7a2baa

Please sign in to comment.