Index: chrome/common/extensions/docs/examples/extensions/buildbot/options.js |
diff --git a/chrome/common/extensions/docs/examples/extensions/buildbot/options.js b/chrome/common/extensions/docs/examples/extensions/buildbot/options.js |
index 38eeb64f6630d21508fa2d4703081b1f4b3e1098..0fb7f0497e037dc13a7dc7172cef22a59a6b8682 100644 |
--- a/chrome/common/extensions/docs/examples/extensions/buildbot/options.js |
+++ b/chrome/common/extensions/docs/examples/extensions/buildbot/options.js |
@@ -2,7 +2,9 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
-var prefs = new Prefs; |
+(function() { |
+ |
+window.prefs = new Prefs; |
not at google - send to devlin
2013/07/04 00:37:11
ditto buildbot.prefs.
although having both "prefs
Mike Wittman
2013/07/16 17:53:19
Done.
|
// Initialize the checkbox checked state from the saved preference. |
function main() { |
@@ -24,3 +26,5 @@ function main() { |
} |
main(); |
+ |
+})(); |