-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
32 changed files
with
45 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#Firebrick JS version: 0.13.4 | ||
#Firebrick JS version: 0.13.6 | ||
|
||
JavaScript MVC Framework built with: | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,7 +19,7 @@ <h1><img src="..\fb_small.png" title="Firebrick JS API"></h1> | |
|
||
</div> | ||
<div class="yui3-u-1-4 version"> | ||
<em>API Docs for: 0.13.4</em> | ||
<em>API Docs for: 0.13.6</em> | ||
</div> | ||
</div> | ||
<div id="bd" class="yui3-g"> | ||
|
@@ -133,7 +133,7 @@ <h1 class="file-heading">File: src\firebrick.js</h1> | |
/*! | ||
* Firebrick JS - JavaScript MVC Framework powered by jQuery and Knockout JS | ||
* @author Steven Masala [[email protected]] | ||
* @version 0.13.4 | ||
* @version 0.13.6 | ||
*/ | ||
|
||
(function (root, factory) { | ||
|
@@ -170,7 +170,7 @@ <h1 class="file-heading">File: src\firebrick.js</h1> | |
* @property version | ||
* @type {String} | ||
*/ | ||
version: "0.13.4", | ||
version: "0.13.6", | ||
|
||
/**2 | ||
* used to store configurations set Firebrick.ready() | ||
|
@@ -2303,7 +2303,7 @@ <h1 class="file-heading">File: src\firebrick.js</h1> | |
|
||
if(match){ | ||
|
||
params = me._getParamsForMatch( match ); | ||
params = me._getParamsForMatch( match ).arr || []; | ||
|
||
//are dependencies required to run this pattern | ||
if($.isPlainObject(match) && match.require){ | ||
|
@@ -2315,7 +2315,7 @@ <h1 class="file-heading">File: src\firebrick.js</h1> | |
|
||
require(deps, function(){ | ||
//check if pattern has a callback and fire | ||
me._routeCallback( match.callback, [params.arr, arguments, args] ); | ||
me._routeCallback( match.callback, [params, arguments, args] ); | ||
}); | ||
}else{ | ||
//no dependencies - just fire the callback | ||
|
@@ -2328,7 +2328,7 @@ <h1 class="file-heading">File: src\firebrick.js</h1> | |
callback = match; | ||
} | ||
|
||
me._routeCallback( callback, [args] ); | ||
me._routeCallback( callback, [params, args] ); | ||
} | ||
|
||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/*! | ||
* Firebrick JS - JavaScript MVC Framework powered by jQuery and Knockout JS | ||
* @author Steven Masala [[email protected]] | ||
* @version 0.13.4 | ||
* @version 0.13.6 | ||
*/ | ||
|
||
(function (root, factory) { | ||
|
@@ -38,7 +38,7 @@ | |
* @property version | ||
* @type {String} | ||
*/ | ||
version: "0.13.4", | ||
version: "0.13.6", | ||
|
||
/**2 | ||
* used to store configurations set Firebrick.ready() | ||
|
@@ -2171,7 +2171,7 @@ | |
|
||
if(match){ | ||
|
||
params = me._getParamsForMatch( match ); | ||
params = me._getParamsForMatch( match ).arr || []; | ||
|
||
//are dependencies required to run this pattern | ||
if($.isPlainObject(match) && match.require){ | ||
|
@@ -2183,7 +2183,7 @@ | |
|
||
require(deps, function(){ | ||
//check if pattern has a callback and fire | ||
me._routeCallback( match.callback, [params.arr, arguments, args] ); | ||
me._routeCallback( match.callback, [params, arguments, args] ); | ||
}); | ||
}else{ | ||
//no dependencies - just fire the callback | ||
|
@@ -2196,7 +2196,7 @@ | |
callback = match; | ||
} | ||
|
||
me._routeCallback( callback, [args] ); | ||
me._routeCallback( callback, [params, args] ); | ||
} | ||
|
||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters