var giftbox = {
  /**
   * Loads the Gigya integration widget for embedding the giftbox on a third-party
   * social network.
   */
  loadGigya: function() {
    if (app.session) {
      $('#divWildfirePost')
        .dialog({
          autoOpen: true,
          title: 'Get Your Widget!',
          buttons: {
            "I'll do it later": function() {
              $(this).dialog('destroy');
            }
          },
          dialogClass: 'ui-dialog gigya-dialog',
          close: function () { $(this).dialog('destroy'); }
        }).css('display', 'block');
    } else {
      session.create('/giftbox');
    }
    return false;
  }
};

$(document).ready(function() {
  $('#viximo-getwidget-button').bind('click' , giftbox.loadGigya);
});
