UNPKG

trello-sprinter

Version:

Provides summarizations of sprint activity in a Trello project

44 lines (37 loc) 876 B
<!DOCTYPE html> <html> <head> <!-- <link rel="shortcut icon" href="../img/favicon.ico" /> --> <meta http-equiv="Content-type" content="text/html; charset=utf-8"/> <title><%= htmlWebpackPlugin.options.title %></title> <style> table { margin: 1em auto; border-collapse: collapse; } table, th, td { border: 1px solid black; padding: 0 5px; } </style> </head> <body> <div id="trello"></div> <script> let trello = new TrelloSprinter({ sel: '#trello', key: "d25bd9e3e273f0dd18c4e8d406b98035", board: 'Brad', views: { 'board': {}, 'sprint': {}, 'sprintTable': {addHeadings: 10} } }); // var view = new TrelloLib.View({persist: false}); // view.attach(new TrelloLib.BoardView()); // view.attach(new TrelloLib.SprintView()); // view.fetch("#trel", "$teamname"); </script> </body> </html>