lint fix.

This commit is contained in:
Steven Orvell
2017-02-21 12:08:48 -08:00
parent f55d94747b
commit 616ed48a8c

View File

@@ -54,14 +54,14 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
if (!scheduled) {
schedule();
}
beforeRenderQueue.push(arguments);
beforeRenderQueue.push([context, callback, args]);
},
afterNextRender: function(context, callback, args) {
if (!scheduled) {
schedule();
}
afterRenderQueue.push(arguments);
afterRenderQueue.push([context, callback, args]);
}
};