Skip to content

Commit

Permalink
remove module name
Browse files Browse the repository at this point in the history
  • Loading branch information
yaoazhen committed Nov 27, 2013
1 parent 8f8c9b5 commit 09ab91d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/Flow.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
;
(function (define) {

define('Flow', function (require, exports) {
define(function (require, exports) {

//If have dependencies, get them here
var _ = require('underscore');
Expand Down Expand Up @@ -398,7 +398,7 @@
)
;

})(typeof define === 'function' && define.amd ? define : function (id, factory) {
})(typeof define === 'function' && define.amd ? define : function (factory) {
if (typeof exports !== 'undefined') {
//commonjs
factory(require, exports);
Expand Down
4 changes: 2 additions & 2 deletions src/Flow_underscore.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
;
(function (define) {

define('Flow', function (require, exports) {
define(function (require, exports) {

//If have dependencies, get them here
var _ = require('underscore');
Expand Down Expand Up @@ -321,7 +321,7 @@
)
;

})(typeof define === 'function' && define.amd ? define : function (id, factory) {
})(typeof define === 'function' && define.amd ? define : function (factory) {
if (typeof exports !== 'undefined') {
//commonjs
factory(require, exports);
Expand Down

0 comments on commit 09ab91d

Please sign in to comment.