Advertisement
Guest User

view

a guest
May 27th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.50 KB | None | 0 0
  1. <link rel="stylesheet" href="<?=$this->basepath('asset/astra/issue/view.css')?>" />
  2.  
  3. (...)
  4.  
  5. <script type="module">
  6. import { bindEvents } from '<?=$this->basepath('asset/astra/issue/view.js');?>';
  7.  
  8. const phpData = {
  9.     issueId: '<?=$this->issue->ID;?>',
  10.     titleUrl: '<?=$this->url('issue', ['controller' => 'issue', 'action' => 'title']);?>',
  11.     delegateUrl: '<?=$this->url('issue', ['controller' => 'issue', 'action' => 'assign', 'id' => $this->issue->ID]);?>'
  12. }
  13.  
  14. bindEvents(phpData);
  15. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement