Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| import Ember from 'ember'; | |
| // Ember 1.10 | |
| export default Ember.Route.extend({ | |
| //---fire in order on route enter--- | |
| beforeModel(transition) { | |
| //empty by default |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| # IMPORTANT: This file is generated by cucumber-rails - edit at your own peril. | |
| # It is recommended to regenerate this file in the future when you upgrade to a | |
| # newer version of cucumber-rails. Consider adding your own code to a new file | |
| # instead of editing this one. Cucumber will automatically load all features/**/*.rb | |
| # files. | |
| require 'uri' | |
| require File.expand_path(File.join(File.dirname(__FILE__), "..", "support", "paths")) |
| // An Unobtrusive Javascript (UJS) driver based on explicit behavior definitions. Just | |
| // put a "data-behaviors" attribute on your view elements, and then assign callbacks | |
| // for those named behaviors via Behaviors.add. | |
| var Behaviors = { | |
| add: function(trigger, behavior, handler) { | |
| document.observe(trigger, function(event) { | |
| var element = event.findElement("*[data-behaviors~=" + behavior + "]"); | |
| if (element) handler(element, event); | |
| }); |
| @mixin grid_container { | |
| margin: auto; | |
| width: 960px; | |
| // Tablet Layout: 768px. | |
| @media only screen and (min-width: 768px) and (max-width: 991px) { | |
| width: 764px; | |
| } | |
| // Mobile Layout: 320px. | |
| @media only screen and (max-width: 767px) { |