Skip to content

Commit

Permalink
Format comment and remove deduping mixin
Browse files Browse the repository at this point in the history
  • Loading branch information
Steven Orvell committed Feb 21, 2018
1 parent 1fd5f9c commit b8c66de
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions lib/mixins/disable-upgrade-mixin.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@
* itself implements a `connectedCallback` so that it can control the work
* done in `connectedCallback`. For example,
*
* MyClass = Polymer.DisableUpgradeMixin(class extends BaseClass {...});
* MyClass = Polymer.DisableUpgradeMixin(class extends BaseClass {...});
*
* @mixinFunction
* @polymer
* @memberof Polymer
*/
Polymer.DisableUpgradeMixin = Polymer.dedupingMixin((base) => {
Polymer.DisableUpgradeMixin = (base) => {

return class DisableUpgradeClass extends base {

Expand Down Expand Up @@ -88,7 +88,7 @@

};

});
};

})();

Expand Down
2 changes: 1 addition & 1 deletion types/lib/mixins/disable-upgrade-mixin.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ declare namespace Polymer {
* itself implements a `connectedCallback` so that it can control the work
* done in `connectedCallback`. For example,
*
* MyClass = Polymer.DisableUpgradeMixin(class extends BaseClass {...});
* MyClass = Polymer.DisableUpgradeMixin(class extends BaseClass {...});
*/
function DisableUpgradeMixin<T extends new (...args: any[]) => {}>(base: T): T & DisableUpgradeMixinConstructor;

Expand Down

0 comments on commit b8c66de

Please sign in to comment.