OLD | NEW |
1 | 1 |
2 (function() { | 2 (function() { |
3 "use strict"; | 3 "use strict"; |
4 /** | 4 /** |
5 `Polymer.IronJsonpLibraryBehavior` loads a jsonp library. | 5 `Polymer.IronJsonpLibraryBehavior` loads a jsonp library. |
6 Multiple components can request same library, only one copy will load. | 6 Multiple components can request same library, only one copy will load. |
7 | 7 |
8 Some libraries require a specific global function be defined. | 8 Some libraries require a specific global function be defined. |
9 If this is the case, specify the `callbackName` property. | 9 If this is the case, specify the `callbackName` property. |
10 | 10 |
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
218 notifyEvent: String | 218 notifyEvent: String |
219 /** | 219 /** |
220 * event with name specified in 'notifyEvent' attribute | 220 * event with name specified in 'notifyEvent' attribute |
221 * will fire upon successful load | 221 * will fire upon successful load |
222 * @event `notifyEvent` | 222 * @event `notifyEvent` |
223 */ | 223 */ |
224 | 224 |
225 } | 225 } |
226 }); | 226 }); |
227 | 227 |
OLD | NEW |