Skip to content

Commit

Permalink
bump and build v1.8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
samccone committed Apr 24, 2014
1 parent 9cfe7a2 commit f4a5f64
Show file tree
Hide file tree
Showing 12 changed files with 33 additions and 25 deletions.
2 changes: 1 addition & 1 deletion bower.json
Expand Up @@ -6,7 +6,7 @@
"./lib/backbone.marionette.js",
"./lib/core/amd/backbone.marionette.js"
],
"version": "1.8.2",
"version": "1.8.3",
"keywords": [
"backbone",
"framework",
Expand Down
5 changes: 5 additions & 0 deletions changelog.md
@@ -1,3 +1,8 @@
### v1.8.3 [view commit logs](https://github.com/marionettejs/backbone.marionette/compare/v1.8.2...v1.8.3)

* Fixes
* Behaviors now have access to the views options and events during their initialize.

### v1.8.2 [view commit logs](https://github.com/marionettejs/backbone.marionette/compare/v1.8.0...v1.8.2)

* Fixes
Expand Down
2 changes: 1 addition & 1 deletion component.json
@@ -1,7 +1,7 @@
{
"name": "backbone.marionette",
"description": "Make your Backbone.js apps dance!",
"version": "1.8.2",
"version": "1.8.3",
"repo": "marionettejs/backbone.marionette",
"main": "lib/core/amd/backbone.marionette.js",
"keywords": [
Expand Down
11 changes: 6 additions & 5 deletions lib/backbone.marionette.js
@@ -1,6 +1,6 @@
// MarionetteJS (Backbone.Marionette)
// ----------------------------------
// v1.8.2
// v1.8.3
//
// Copyright (c)2014 Derick Bailey, Muted Solutions, LLC.
// Distributed under MIT license
Expand Down Expand Up @@ -1405,10 +1405,6 @@ Marionette.View = Backbone.View.extend({
constructor: function(options){
_.bindAll(this, "render");

if (_.isObject(this.behaviors)) {
new Marionette.Behaviors(this);
}

// this exposes view options to the view initializer
// this is a backfill since backbone removed the assignment
// of this.options
Expand All @@ -1417,6 +1413,11 @@ Marionette.View = Backbone.View.extend({

// parses out the @ui DSL for events
this.events = this.normalizeUIKeys(_.result(this, 'events'));

if (_.isObject(this.behaviors)) {
new Marionette.Behaviors(this);
}

Backbone.View.prototype.constructor.apply(this, arguments);

Marionette.MonitorDOMRefresh(this);
Expand Down
2 changes: 1 addition & 1 deletion lib/backbone.marionette.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions lib/backbone.marionette.min.js

Large diffs are not rendered by default.

11 changes: 6 additions & 5 deletions lib/core/amd/backbone.marionette.js
@@ -1,6 +1,6 @@
// MarionetteJS (Backbone.Marionette)
// ----------------------------------
// v1.8.2
// v1.8.3
//
// Copyright (c)2014 Derick Bailey, Muted Solutions, LLC.
// Distributed under MIT license
Expand Down Expand Up @@ -836,10 +836,6 @@
constructor: function(options){
_.bindAll(this, "render");

if (_.isObject(this.behaviors)) {
new Marionette.Behaviors(this);
}

// this exposes view options to the view initializer
// this is a backfill since backbone removed the assignment
// of this.options
Expand All @@ -848,6 +844,11 @@

// parses out the @ui DSL for events
this.events = this.normalizeUIKeys(_.result(this, 'events'));

if (_.isObject(this.behaviors)) {
new Marionette.Behaviors(this);
}

Backbone.View.prototype.constructor.apply(this, arguments);

Marionette.MonitorDOMRefresh(this);
Expand Down
4 changes: 2 additions & 2 deletions lib/core/amd/backbone.marionette.min.js

Large diffs are not rendered by default.

11 changes: 6 additions & 5 deletions lib/core/backbone.marionette.js
@@ -1,6 +1,6 @@
// MarionetteJS (Backbone.Marionette)
// ----------------------------------
// v1.8.2
// v1.8.3
//
// Copyright (c)2014 Derick Bailey, Muted Solutions, LLC.
// Distributed under MIT license
Expand Down Expand Up @@ -819,10 +819,6 @@ Marionette.View = Backbone.View.extend({
constructor: function(options){
_.bindAll(this, "render");

if (_.isObject(this.behaviors)) {
new Marionette.Behaviors(this);
}

// this exposes view options to the view initializer
// this is a backfill since backbone removed the assignment
// of this.options
Expand All @@ -831,6 +827,11 @@ Marionette.View = Backbone.View.extend({

// parses out the @ui DSL for events
this.events = this.normalizeUIKeys(_.result(this, 'events'));

if (_.isObject(this.behaviors)) {
new Marionette.Behaviors(this);
}

Backbone.View.prototype.constructor.apply(this, arguments);

Marionette.MonitorDOMRefresh(this);
Expand Down
2 changes: 1 addition & 1 deletion lib/core/backbone.marionette.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/core/backbone.marionette.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
@@ -1,7 +1,7 @@
{
"name": "backbone.marionette",
"description": "Make your Backbone.js apps dance!",
"version": "1.8.2",
"version": "1.8.3",
"homepage": "https://github.com/marionettejs/backbone.marionette",
"main": "lib/core/amd/backbone.marionette.js",
"keywords": [
Expand Down

0 comments on commit f4a5f64

Please sign in to comment.