Git Product home page Git Product logo

bugzilla-board's People

Stargazers

 avatar

Watchers

 avatar  avatar

bugzilla-board's Issues

Allow columns to be rearranged

Drag to slide columns across or something.

Might need permission to use local storage/fs to save state, to allow page to be reloaded, etc.

Option for viewing in fixed height with scrollbars

An option, either injected into the page or added to the dropdown menu when clicking the extension icon, should give the kanban board a fixed height and scrollbars.

This would prevent having a long way to scroll down to see the standard bugs list.

Column width calculation will return floating point numbers

The current calculation to work out what width the column should be can return fractional numbers when the number of columns does not go evenly into 12.

Bug:

class="col-sm-{{ 12/board_sections.length }} bz-column"

For 5 board sections, 12/5 returns 2.4 so the final class string will be: col-sm-2.4 which doesn't exist in bootstraps grid system. It causes the columns to be full-width.

Rounding this down using an angular number filter would be the easiest way to fix this.

Option to view by assignee

An option to change the columns from status to assignee would be helpful.

A quick way to do this right now is to:
filter: { status: board }"> -> filter: { assignee: board }">
and

if(board_sections.indexOf(b_assignee)  == -1) {
      board_sections.push(b_assignee);
}

to

if(board_sections.indexOf(b_status)  == -1) {
      board_sections.push(b_status);
}

Ideas:

  • Button in dropdown menu when clicking on extension in the toolbar
  • Insert a button into the webpage to change the view

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.