Polling

Feature Requests

Suggested Topics


  • Poll widget

    Unsolved Feature Requests
    3
    0 Votes
    3 Posts
    297 Views

    No, this is not possible, as the poll plugin ties individual polls to topics.

  • poll tool

    Feature Requests
    8
    0 Votes
    8 Posts
    2k Views

    @ogerly said:

    So the tool is running.
    following error, I've found.
    the poll will be created.
    when you save the text is not new reloaded.
    Here are the screenshots

    Bildschirmfoto vom 2015-08-06 10:08:53.png

    Bildschirmfoto vom 2015-08-06 10:08:53.png

    Yes.. This is an error with nodeBB 0.7.2.
    On @exodo, we have fixed it, just change the file public/js/poll/main.js with this code:

    (function() { window.Poll = { load: function(data) { $(window).one('action:ajaxify.contentLoaded', function () { Poll.sockets.emit.load(data, function(err, poll) { if (!err) { Poll.view.init(poll, function(pollView) { if (parseInt(poll.info.deleted, 10) === 1 || parseInt(poll.info.ended, 10) === 1) { Poll.view.showMessage({ title: 'Voting unavailable', content: 'This poll has ended or has been marked as deleted. You can still view the results.' }, pollView); } }); } else if (err.message != 'Not logged in') { app.alertError('Something went wrong while getting the poll!'); } }); }); } }; })();

    Really, the change is only in the line:

    Poll.sockets.emit.load(data, function(err, poll) {

    And then, change the file templates/poll/notify.tpl with:

    <script>Poll.load({pollid})</script>

    After that, It should work well 🙂

  • Poll Widget

    Feature Requests
    3
    1 Votes
    3 Posts
    1k Views

    @Scuzz not yet.

  • 0 Votes
    19 Posts
    6k Views

    @Ted said:

    EasyRTC

    News? XD XD.
    Video chat for Nodebb?

  • Polls

    Feature Requests
    2
    0 Votes
    2 Posts
    930 Views

    It's currently in development here: http://community.nodebb.org/topic/790/a-teaser#5661