Forked from Michael Bruno
- Download a plugin called Tamper Monkey.
- Navigate to http://oneview.kroger.com/
- Click the Tampermonkey extension icon in your browser, and select "create new script"
- Paste the script into the function body.
Forked from Michael Bruno
javascript: (function() { | |
let repoName; | |
if (document.querySelectorAll('.public .author').length !== 0) { | |
repoName = document.querySelectorAll('.public .author')[0].textContent; | |
} else if (document.querySelectorAll('.private .author').length !== 0) { | |
repoName = document.querySelectorAll('.private .author')[0].textContent; | |
} | |
let repoAuthor = document.querySelectorAll('.gh-header-meta .author')[0].textContent; | |
let issueNumber = document.querySelectorAll('.gh-header-number')[0].textContent; |
RIGHT NOW:
Create a symlinked folder of your local version of fuelux inside of another project (eg: mctheme):
bower link
* This creates a symlink target.bower link fuelux fuelux-local
* This creates a symlink. You now have local fuelux changes in your other project.bower_components/fuelux-local
$(function() { | |
// define the columns in your datasource | |
var columns = [ | |
{ | |
label: 'Name & Description', | |
property: 'name', | |
sortable: true | |
}, | |
{ | |
label: 'Key', |