OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 var Galore = Galore || {}; | 5 var Galore = Galore || {}; |
6 | 6 |
7 Galore.NOTIFICATIONS = [ | 7 Galore.NOTIFICATIONS = [ |
8 { | 8 { |
9 name: 'Simple Notifications', | 9 name: 'Simple Notifications', |
10 templateType: 'simple', | 10 templateType: 'simple', |
(...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
250 message: 'Ocimum basilicum', | 250 message: 'Ocimum basilicum', |
251 items: [ | 251 items: [ |
252 {title: 'One', message: 'Unus'}, | 252 {title: 'One', message: 'Unus'}, |
253 {title: 'Two', message: 'Duo'}, | 253 {title: 'Two', message: 'Duo'}, |
254 {title: 'Three', message: 'Tres'} | 254 {title: 'Three', message: 'Tres'} |
255 ] | 255 ] |
256 } | 256 } |
257 ] | 257 ] |
258 } | 258 } |
259 ]; | 259 ]; |
OLD | NEW |