Skip to content

Commit

Permalink
Merge branch 'feature/constructor-improvement' into development
Browse files Browse the repository at this point in the history
  • Loading branch information
Dirk Lüth committed Aug 5, 2015
2 parents 329312a + d7abfd9 commit 4a04419
Show file tree
Hide file tree
Showing 31 changed files with 432 additions and 52 deletions.
2 changes: 1 addition & 1 deletion demo/codepen/fireworks.html
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ <h3>Pool state</h3>

;(function(require, window, document, undefined) {
require.config({
baseUrl: '../../dist/latest/min'
baseUrl: '../../src'
});

var MATH_PI_TIMES_TWO = 2 * Math.PI,
Expand Down
2 changes: 1 addition & 1 deletion demo/codepen/pixelate.html
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ <h3>Settings</h3>

;(function(require, window, document, undefined) {
require.config({
baseUrl: '../../dist/latest/min'
baseUrl: '../../src'
});

require([ 'base' ], function() {
Expand Down
2 changes: 1 addition & 1 deletion demo/codepen/webcam.html
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ <h3>Settings</h3>

;(function(require, window, document, undefined) {
require.config({
baseUrl: '../../dist/latest/min'
baseUrl: '../../src'
});

require([ 'base' ], function() {
Expand Down
2 changes: 1 addition & 1 deletion demo/component/iterator.html
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ <h3>Iterator state</h3>
<script type="text/javascript">
;(function(require, window, document, undefined) {
require.config({
baseUrl: '../../dist/latest/min'
baseUrl: '../../src'
});

require([ 'base' ], function() {
Expand Down
2 changes: 1 addition & 1 deletion demo/component/remux.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ <h3>REMux state</h3>
<script type="text/javascript">
;(function(require, window, document, undefined) {
require.config({
baseUrl: '../../dist/latest/min'
baseUrl: '../../src'
});

require([ 'base' ], function() {
Expand Down
2 changes: 1 addition & 1 deletion demo/component/sense.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ <h3>Sense state</h3>
<script type="text/javascript">
;(function(require, window, document, undefined) {
require.config({
baseUrl: '../../dist/latest/min'
baseUrl: '../../src'
});

require([ 'base' ], function() {
Expand Down
2 changes: 1 addition & 1 deletion demo/dom/collection.html
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
<script type="text/javascript">
;(function(require, window, document, undefined) {
require.config({
baseUrl: '../../dist/latest/min'
baseUrl: '../../src'
});

require([ 'base' ], function() {
Expand Down
Loading

0 comments on commit 4a04419

Please sign in to comment.