remove incorrect argument

pull/861/head
Rich Harris 8 years ago
parent 3b68d1f5dc
commit 74d84d81e9

@ -251,7 +251,7 @@ export default class Block {
if (!this.builders.hydrate.isEmpty()) {
properties.addBlock(deindent`
hydrate: function(nodes) {
hydrate: function() {
${this.builders.hydrate}
},
`);

@ -220,7 +220,7 @@ function create_main_fragment(state, component) {
this.hydrate();
},
hydrate: function(nodes) {
hydrate: function() {
encapsulateStyles(p);
},

@ -31,7 +31,7 @@ function create_main_fragment(state, component) {
this.hydrate();
},
hydrate: function(nodes) {
hydrate: function() {
encapsulateStyles(p);
},

@ -207,7 +207,7 @@ function create_main_fragment(state, component) {
this.hydrate();
},
hydrate: function(nodes) {
hydrate: function() {
encapsulateStyles(div);
},

@ -22,7 +22,7 @@ function create_main_fragment(state, component) {
this.hydrate();
},
hydrate: function(nodes) {
hydrate: function() {
encapsulateStyles(div);
},

@ -293,7 +293,7 @@ function create_each_block(state, each_block_value, comment, i, component) {
this.hydrate();
},
hydrate: function(nodes) {
hydrate: function() {
div.className = "comment";
span.className = "meta";
},

@ -95,7 +95,7 @@ function create_each_block(state, each_block_value, comment, i, component) {
this.hydrate();
},
hydrate: function(nodes) {
hydrate: function() {
div.className = "comment";
span.className = "meta";
},

@ -212,7 +212,7 @@ function create_main_fragment(state, component) {
this.hydrate();
},
hydrate: function(nodes) {
hydrate: function() {
foo_handler = template.events.foo.call(component, button, function(event) {
var state = component.get();
component.foo( state.bar );

@ -27,7 +27,7 @@ function create_main_fragment(state, component) {
this.hydrate();
},
hydrate: function(nodes) {
hydrate: function() {
foo_handler = template.events.foo.call(component, button, function(event) {
var state = component.get();
component.foo( state.bar );

@ -192,7 +192,7 @@ function create_main_fragment(state, component) {
this.hydrate();
},
hydrate: function(nodes) {
hydrate: function() {
setStyle(div, "color", state.color);
setStyle(div, "transform", "translate(" + state.x + "px," + state.y + "px)");
},

@ -11,7 +11,7 @@ function create_main_fragment(state, component) {
this.hydrate();
},
hydrate: function(nodes) {
hydrate: function() {
setStyle(div, "color", state.color);
setStyle(div, "transform", "translate(" + state.x + "px," + state.y + "px)");
},

@ -192,7 +192,7 @@ function create_main_fragment(state, component) {
this.hydrate();
},
hydrate: function(nodes) {
hydrate: function() {
setStyle(div, "background", "url(data:image/png;base64," + state.data + ")");
},

@ -11,7 +11,7 @@ function create_main_fragment(state, component) {
this.hydrate();
},
hydrate: function(nodes) {
hydrate: function() {
setStyle(div, "background", "url(data:image/png;base64," + state.data + ")");
},

@ -192,7 +192,7 @@ function create_main_fragment(state, component) {
this.hydrate();
},
hydrate: function(nodes) {
hydrate: function() {
setStyle(div, "color", state.color);
},

@ -11,7 +11,7 @@ function create_main_fragment(state, component) {
this.hydrate();
},
hydrate: function(nodes) {
hydrate: function() {
setStyle(div, "color", state.color);
},

@ -194,7 +194,7 @@ function create_main_fragment(state, component) {
this.hydrate();
},
hydrate: function(nodes) {
hydrate: function() {
div.style.cssText = state.style;
div_1.style.cssText = div_1_style_value = "" + state.key + ": " + state.value;
},

@ -13,7 +13,7 @@ function create_main_fragment(state, component) {
this.hydrate();
},
hydrate: function(nodes) {
hydrate: function() {
div.style.cssText = state.style;
div_1.style.cssText = div_1_style_value = "" + state.key + ": " + state.value;
},

@ -200,7 +200,7 @@ function create_main_fragment(state, component) {
this.hydrate();
},
hydrate: function(nodes) {
hydrate: function() {
input.type = "checkbox";
addListener(input, "change", input_change_handler);
},

@ -15,7 +15,7 @@ function create_main_fragment(state, component) {
this.hydrate();
},
hydrate: function(nodes) {
hydrate: function() {
input.type = "checkbox";
addListener(input, "change", input_change_handler);
},

@ -194,7 +194,7 @@ function create_main_fragment(state, component) {
this.hydrate();
},
hydrate: function(nodes) {
hydrate: function() {
setInputType(input, "search");
},

@ -11,7 +11,7 @@ function create_main_fragment(state, component) {
this.hydrate();
},
hydrate: function(nodes) {
hydrate: function() {
setInputType(input, "search");
},

@ -219,7 +219,7 @@ function create_main_fragment(state, component) {
this.hydrate();
},
hydrate: function(nodes) {
hydrate: function() {
div.className = "foo";
},

@ -19,7 +19,7 @@ function create_main_fragment(state, component) {
this.hydrate();
},
hydrate: function(nodes) {
hydrate: function() {
div.className = "foo";
},

@ -243,7 +243,7 @@ function create_main_fragment(state, component) {
this.hydrate();
},
hydrate: function(nodes) {
hydrate: function() {
component._root._beforecreate.push(audio_progress_loadedmetadata_handler);
addListener(audio, "progress", audio_progress_loadedmetadata_handler);

@ -50,7 +50,7 @@ function create_main_fragment(state, component) {
this.hydrate();
},
hydrate: function(nodes) {
hydrate: function() {
component._root._beforecreate.push(audio_progress_loadedmetadata_handler);
addListener(audio, "progress", audio_progress_loadedmetadata_handler);

Loading…
Cancel
Save