From c7063109ab7afd087cc00c44eb8c8819bdbd9e2e Mon Sep 17 00:00:00 2001 From: =?utf8?q?Aleksander=20=C5=81ukasz?= Date: Mon, 1 Jul 2013 10:40:18 +0200 Subject: [PATCH] Fixing style --- modules/documentHistory/documentHistory.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/modules/documentHistory/documentHistory.js b/modules/documentHistory/documentHistory.js index 8e686e6..c3a2f69 100644 --- a/modules/documentHistory/documentHistory.js +++ b/modules/documentHistory/documentHistory.js @@ -37,7 +37,7 @@ return function(sandbox) { var addHistoryItem = function(item, options) { historyItems.add(item); - var view = new itemView(item); + var view = new ItemView(item); itemViews.push(view); domNodes.itemList.prepend(view.dom); if(options.animate) { @@ -104,13 +104,13 @@ return function(sandbox) { }; historyItems._updateUI(); - var itemView = function(item) { + var ItemView = function(item) { this.item = item; this.dom = $(this.template(item)); this.dom.on('click', _.bind(this.onItemClicked, this)); }; - itemView.prototype.template = _.template(itemTemplateSrc); - itemView.prototype.onItemClicked = function() { + ItemView.prototype.template = _.template(itemTemplateSrc); + ItemView.prototype.onItemClicked = function() { if(historyItems.isSelected(this.item)) { historyItems.unselect(this.item); this.dimItem(); @@ -118,13 +118,13 @@ return function(sandbox) { this.highlightItem(); } }; - itemView.prototype.highlightItem = function() { + ItemView.prototype.highlightItem = function() { this.dom.addClass('highlighted'); }; - itemView.prototype.dimItem = function() { + ItemView.prototype.dimItem = function() { this.dom.removeClass('highlighted'); }; - itemView.prototype.toggle = function(toggle) { + ItemView.prototype.toggle = function(toggle) { this.dom.toggleClass('disabled', !toggle); }; -- 2.20.1