Skip to content
This repository has been archived by the owner on Mar 13, 2018. It is now read-only.

Commit

Permalink
WebComponentsReady -> polymer-ready
Browse files Browse the repository at this point in the history
  • Loading branch information
frankiefu committed Jan 22, 2014
1 parent a2968ec commit 37d63c8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion test/html/polymer-selector-activate-event.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

<script>
var assert = chai.assert;
document.addEventListener('WebComponentsReady', function() {
document.addEventListener('polymer-ready', function() {
var s = document.querySelector('#selector');
s.addEventListener("polymer-activate", function(event) {
assert.equal(event.detail.item, s.children[1]);
Expand Down
2 changes: 1 addition & 1 deletion test/html/polymer-selector-basic.html
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
o.observe(node, options);
}

document.addEventListener('WebComponentsReady', function() {
document.addEventListener('polymer-ready', function() {
// selector1
var s = document.querySelector('#selector1');
assert.equal(s.selected, null);
Expand Down
2 changes: 1 addition & 1 deletion test/html/polymer-selector-multi.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
o.observe(node, options);
}

document.addEventListener('WebComponentsReady', function() {
document.addEventListener('polymer-ready', function() {
//
var s = document.querySelector('#selector');
assert.equal(s.selected, null);
Expand Down

0 comments on commit 37d63c8

Please sign in to comment.