Ctrl+KB | toggle side bar |
Ctrl+Shift+P | command palette |
Ctrl+` | python console |
Ctrl+N | new file |
<?php | |
namespace Ormigo\Tests; | |
use Symfony\Component\Templating\EngineInterface; | |
use Symfony\Component\HttpFoundation\Response; | |
class JasmineHandler | |
{ | |
protected $templating; |
var MainView = Backbone.View.extend({ | |
el: 'body', | |
events: { | |
'click #open': 'openModal' | |
}, | |
template: '<a id="open" class="btn">open modal</a>', | |
openModal: function() { | |
var view = new ModalView(); | |
var modal = new Backbone.BootstrapModal({ | |
content: view, |
# Generated by https://github.com/tuxracer/generator-generatorcs | |
path = require 'path' | |
yeoman = require 'yeoman-generator' | |
module.exports = class ChaplinGenerator extends yeoman.generators.Base | |
constructor: (args, options, config) -> | |
yeoman.generators.Base.apply this, arguments | |
@on 'end', -> | |
@installDependencies skipInstall: options['skip-install'] |
THIS GIST WAS MOVED TO TERMSTANDARD/COLORS
REPOSITORY.
PLEASE ASK YOUR QUESTIONS OR ADD ANY SUGGESTIONS AS A REPOSITORY ISSUES OR PULL REQUESTS INSTEAD!
An easy and effective way to implement page transitions into any Backbone.js application. Its been tested with Thorax by extending Thorax.View and tested with Marionette with various ways to implement it. There are also many other various attempts at animations/transitions with marionette that can be found on its issues page.
This originated from an idea and quest for a clean way to create a simple yet reusable animated backbone view. I found an excellent post by Mike Fowler titled Page Transitions in Backbone that provided a large part of the core and concept.
I have moved this over to the Tech Interview Cheat Sheet Repo and has been expanded and even has code challenges you can run and practice against!
\
These rules are adopted from the AngularJS commit conventions.