- Move assets to /src
- Fix rails_admin custom stylesheets (app/assets/stylesheets/rails_admin)
- Copy package.json
- Copy gulpfile.js
- Controllers
- Copy calcentral_config_controller.rb (app/controllers/calcentral_config_controller.rb)
- Bootstrapcontroller
- update index method
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 1. Go to https://github.com/evcohen/eslint-plugin-jsx-a11y/tree/master/docs/rules | |
| // 2. Run the following script: | |
| (() => { | |
| let output = {}; | |
| [...document.querySelectorAll('.files .js-navigation-item .content a[title]')] | |
| .forEach(file => output[`jsx-a11y/${file.getAttribute('title').replace('.md', '')}`] = 2) | |
| console.log(JSON.stringify(output, null, 4)); | |
| })() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "terms": [ | |
| { | |
| "startTerm": "Fall", | |
| "startTermYear": "2014", | |
| "endTerm": "Spring", | |
| "endTermYear": "2015", | |
| "totalOffered": 60000, | |
| "totalAccepted": 43500, | |
| "categories": [ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .uc-prototype { | |
| color: #474747; | |
| margin: 0; | |
| font-family: Arial,sans-serif; | |
| font-size: 13px; | |
| font-weight: 400; | |
| line-height: 1.5; | |
| padding: 20px; | |
| } | |
| /* Hide Hacks */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "standups": { | |
| "20140317": { | |
| "time": "22" | |
| }, | |
| "20140318": { | |
| "time": "20" | |
| }, | |
| "20140319": { | |
| "time": "32" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var inputs = document.querySelectorAll('input'); | |
| for (var i = 0; i < inputs.length; i++) { inputs[i].setAttribute('autocomplete', 'on') }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "quotes": [ | |
| { | |
| "author": "Abraham Lincoln", | |
| "quote": "Things may come to those who wait, but only the things left by those who hustle.", | |
| "image": "http://upload.wikimedia.org/wikipedia/commons/1/1b/Abraham_Lincoln_November_1863.jpg" | |
| }, | |
| { | |
| "author": "Adam Smith", | |
| "quote": "The great secret of education is to direct vanity to proper objects.", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| FILES=app/assets/images/*.* | |
| for f in $FILES | |
| do | |
| filename=`basename $f` | |
| echo $filename | |
| ack --ignore-dir=log --ignore-dir=.idea --nobinary $filename | |
| #grep -Ir --exclude=".idea\*" --exclude="*.log" "$filename" ./ | |
| done |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var forEach = Array.prototype.forEach; | |
| var div = document.createElement('div'); | |
| div.setAttribute('data-ng-bind', 'link.description') | |
| var cssDescription = 'font-size: 80%;margin: 0 0 3px 16px;line-height: 126%;clear:both;border-bottom: 1px solid #CCC;padding-bottom: 3px;'; | |
| var cssButtons = 'font-size: 80%; margin-left: 16px; line-height: 126%; font-weight: bold'; | |
| var cssButton = 'float:left; padding: 0 5px; border: 1px solid _border_; background-color: _background_; border-radius: 3px; margin-right: 1px'; | |
| var cssButtonColors = { |