Advertisement
Guest User

Untitled

a guest
Jun 25th, 2017
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. else
  2. if( child.nodeName == 'title' ) {
  3.     this._feed.title = this._getNodeText(child);
  4. }
  5. else if( child.nodeName == 'description' ) {
  6.     this._feed.description = this._getNodeText(child);
  7. }
  8. else if( child.nodeName == "ttl" ) {
  9.     this._feed.setTTLMinutes( this._getNodeText(child) );
  10. }
  11. if( child.nodeName == 'media:thumbnail' ) {
  12.     var value:String;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement