From 2b712de694ae5c92cdff63b9c4fbd622ab82836c Mon Sep 17 00:00:00 2001 From: dsc Date: Tue, 8 May 2012 10:07:09 -0700 Subject: [PATCH] checkpoint --- lib/base/base-model.co | 1 + lib/base/base-view.co | 1 - www/css/graph.styl | 18 ++++++++++-------- 3 files changed, 11 insertions(+), 9 deletions(-) diff --git a/lib/base/base-model.co b/lib/base/base-model.co index 348ea82..9723f78 100644 --- a/lib/base/base-model.co +++ b/lib/base/base-model.co @@ -13,6 +13,7 @@ Backbone = require 'backbone' */ BaseModel = exports.BaseModel = Backbone.Model.extend mixinBase do # {{{ + constructor : function BaseModel @__class__ = @constructor @__superclass__ = @..__super__.constructor diff --git a/lib/base/base-view.co b/lib/base/base-view.co index dce79ce..dc9f0d0 100644 --- a/lib/base/base-view.co +++ b/lib/base/base-view.co @@ -47,7 +47,6 @@ BaseView = exports.BaseView = Backbone.View.extend mixinBase do # {{{ constructor : function BaseView @__class__ = @constructor @__superclass__ = @..__super__.constructor - @__view_type_id__ or= _.str.underscored @getClassName() .replace /_view$/, '' @waitingOn = 0 @subviews = new ViewList @onReturnKeypress = _.debounce @onReturnKeypress.bind(this), 50 diff --git a/www/css/graph.styl b/www/css/graph.styl index 951c05e..64df61d 100644 --- a/www/css/graph.styl +++ b/www/css/graph.styl @@ -59,16 +59,18 @@ section.graph /* * * * Graph Details & Info Pane * * * {{{ */ .graph-name-row - // margin 0 1em 1em - // max-width 900px - font-size 120% - line-height 2em + margin 0 0 1em + min-height 38px input.graph-name - font-size 120% - line-height 1.2 - height 1.2em + display block + absolute top 0 left 0 + right 0 + width auto + font-size 18px + line-height 25px + height 25px + padding 6px border-color $light - width 98% .graph-info-pane .row-fluid .half.control-group -- 1.7.0.4