autocompleterichremotedata.js 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. // Copyright 2010 The Closure Library Authors. All Rights Reserved.
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS-IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. /** @nocompile */
  15. [[
  16. 'apple', {name: 'Fuji', url: 'http://www.google.com/images?q=fuji+apple'},
  17. {name: 'Gala', url: 'http://www.google.com/images?q=gala+apple'}, {
  18. name: 'Golden Delicious',
  19. url: 'http://www.google.com/images?q=golden delicious+apple'
  20. }
  21. ],
  22. [
  23. 'citrus', {name: 'Lemon', url: 'http://www.google.com/images?q=lemon+fruit'},
  24. {name: 'Orange', url: 'http://www.google.com/images?q=orange+fruit'}
  25. ],
  26. [
  27. 'berry',
  28. {name: 'Strawberry', url: 'http://www.google.com/images?q=strawberry+fruit'},
  29. {name: 'Blueberry', url: 'http://www.google.com/images?q=blueberry+fruit'}, {
  30. name: 'Blackberry',
  31. url: 'http://www.google.com/images?q=blackberry+fruit'
  32. }
  33. ]]