Skip to content

Instantly share code, notes, and snippets.

View BorisKozo's full-sized avatar

Boris Kozorovitzky BorisKozo

  • Micro Focus
  • Israel
View GitHub Profile
@BorisKozo
BorisKozo / README-Template.md
Created March 29, 2017 05:56 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

@BorisKozo
BorisKozo / main.js
Last active December 18, 2015 13:19 — forked from smykes/main.js
var AppRouter = Backbone.Router.extend({
routes: {
"" : "list",
"clients/:id" : "clientDetails"
},
initialize: function () {
},
list: function(page) {
$('#header').html(new HeaderView().render().el);