UNPKG

generator-nrs-plugin

Version:

This Yeoman generator helps you get started building a NRS plugin for the NXT network.

21 lines (17 loc) 581 B
/** * @depends {nrs.js} */ var NRS = (function(NRS, $, undefined) { NRS.setup.p_<%= pluginName %> = function() { $('#p_<%= pluginName %>_startup_date_time').html(moment().format('LLL')); }; NRS.pages.p_<%= pluginName %> = function() { $('div#content').show(); $('.data-empty-container').hide(); $('.data-loading-container').hide(); $('span#your_account').html(NRS.accountRS); }; return NRS; }(NRS || {}, jQuery)); //File name for debugging (Chrome/Firefox) //@ sourceURL=nrs.dividends_scanner.js