Skip to content

Instantly share code, notes, and snippets.

View thierry-rietsch's full-sized avatar

Thierry Rietsch thierry-rietsch

View GitHub Profile
@thierry-rietsch
thierry-rietsch / gist:3832767
Created October 4, 2012 10:26
Stackoverflow Issue 12706031 - JS
window.App = Ember.Application.create();
App.ApplicationView = Ember.View.extend({ templateName: 'application' });
App.ApplicationController = Ember.Controller.extend();
App.BlocksView = Ember.View.extend({
tagName: 'div',
classNames: ['block'],
templateName: 'blocki'
})
@thierry-rietsch
thierry-rietsch / index.html
Created October 4, 2012 10:25
Stackoverflow Issue 12706031
<html>
<head>
<title>Stackoverflow Issue</title>
<style type="text/css">
.blocks-container {
width: 30em;
height: 30em;
border:2px solid #566789;
box-shadow: 2px 2px 19px #aaa;