For this project you will be merging data from various sources into an instructional dashboard.
At Ada instructors get data on students from a variety of sources.
For this project you will be merging data from various sources into an instructional dashboard.
At Ada instructors get data on students from a variety of sources.
| // let target = document.getElementById('js-lecture-target'); | |
| // | |
| // target.innerHTML = '<p>content!</p>'; | |
| $(document).ready(() => { | |
| const pets = [ | |
| { | |
| name: 'kylo', species: 'dog', human: 'kari', mammal: true | |
| }, | |
| { |
| # Make $(document).ready work as expected, despite turbolinks weirdness | |
| gem 'jquery-turbolinks' | |
| # Add Foundation for rails | |
| gem 'foundation-rails', '6.4.1.2' | |
| gem_group :development do | |
| # Improve the error message you get in the browser | |
| gem 'better_errors' | |
| # Use pry for rails console |
/[^b]og/
5 digit number - /(\d){5}/
IP addresses - /((\d){1,3}\.){3}(\d){1,3}/
| `/\$\d+\.\d\d/` |
/[0-9A-Za-z]/
| import _ from 'underscore'; | |
| import $ from 'jquery'; | |
| import 'jquery-colpick'; | |
| import Postit from './models/postit.js'; | |
| import PostitNotes from './collections/postit_notes.js'; | |
| var postitData = [{ | |
| text: "Backbone is a library not a Framework.", |
| import _ from 'underscore'; | |
| import $ from 'jquery'; | |
| import 'jquery-colpick'; | |
| import Postit from './models/postit.js'; | |
| var postitData = [{ | |
| text: "Backbone is a library not a Framework.", | |
| color: "#AC1200" |
| import Backbone from 'backbone'; | |
| import _ from 'underscore'; | |
| import $ from 'jquery'; | |
| import Task from '../models/task.js'; | |
| var TaskView = Backbone.View.extend({ | |
| initialize: function(params) { | |
| this.template = params.template; | |
| }, | |
| render: function() { |