Skip to content
Snippets Groups Projects
Select Git revision
  • ff85e8734cd3f1451139f29e23f9d4d5eb840a01
  • main default
  • 7.2.0
3 results

current_page_update.js

Blame
  • current_page_update.js 273 B
    const MessageExecutable = require("./message_executable");
    
    module.exports = class CurrentPageUpdate extends MessageExecutable {
    
        handleMessage(plugin, message) {
            plugin.currentProject.updateCurrentPage(message.newPage);
            plugin.checkFeedbacks();
        }
    }