| Index: chrome/common/extensions/docs/examples/tutorials/getstarted/popup.js
|
| diff --git a/chrome/common/extensions/docs/examples/tutorials/getstarted/popup.js b/chrome/common/extensions/docs/examples/tutorials/getstarted/popup.js
|
| index 15cca2b0f5aa1267628ebafb6d786114e7dafcb8..bdbe548d457cf40f2945c1af0ab8ae61a6b4e2cf 100644
|
| --- a/chrome/common/extensions/docs/examples/tutorials/getstarted/popup.js
|
| +++ b/chrome/common/extensions/docs/examples/tutorials/getstarted/popup.js
|
| @@ -37,7 +37,7 @@ var kittenGenerator = {
|
| */
|
| requestKittens: function() {
|
| var req = new XMLHttpRequest();
|
| - req.open("GET", this.kittensOnFlickr_, true);
|
| + req.open("GET", this.searchOnFlickr_, true);
|
| req.onload = this.showPhotos_.bind(this);
|
| req.send(null);
|
| },
|
|
|