Skip to content

Commit

Permalink
Merge branch 'release/1.0.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
mikaelkaron committed Aug 3, 2012
2 parents bf35e5b + 7b16a08 commit e034827
Show file tree
Hide file tree
Showing 18 changed files with 8 additions and 1,220 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.3
1.0.4
2 changes: 1 addition & 1 deletion src/component/gadget.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
*/
/*jshint strict:false, smarttabs:true, newcap:false, forin:false, loopfunc:true */
/*global define:true */
define([ "compose", "./base", "../util/deferred", "../pubsub/hub" ], function GadgetModule(Compose, Component, Deferred, hub) {
define([ "compose", "./base", "troopjs-utils/deferred", "../pubsub/hub" ], function GadgetModule(Compose, Component, Deferred, hub) {
var UNDEFINED;
var NULL = null;
var FUNCTION = Function;
Expand Down
2 changes: 1 addition & 1 deletion src/component/widget.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
*/
/*jshint strict:false, smarttabs:true, newcap:false */
/*global define:true */
define([ "./gadget", "jquery", "../util/deferred" ], function WidgetModule(Gadget, $, Deferred) {
define([ "./gadget", "jquery", "troopjs-utils/deferred" ], function WidgetModule(Gadget, $, Deferred) {
var UNDEFINED;
var NULL = null;
var FUNCTION = Function;
Expand Down
2 changes: 1 addition & 1 deletion src/pubsub/topic.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
*/
/*jshint strict:false, smarttabs:true, laxbreak:true */
/*global define:true */
define([ "../component/base", "../util/unique" ], function TopicModule(Component, unique) {
define([ "../component/base", "troopjs-utils/unique" ], function TopicModule(Component, unique) {
var TOSTRING = Object.prototype.toString;
var TOSTRING_ARRAY = TOSTRING.call(Array.prototype);

Expand Down
2 changes: 1 addition & 1 deletion src/remote/ajax.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @license TroopJS Copyright 2012, Mikael Karon <[email protected]>
* Released under the MIT license.
*/
define([ "../component/service", "../pubsub/topic", "jquery", "../util/merge" ], function AjaxModule(Service, Topic, $, merge) {
define([ "../component/service", "../pubsub/topic", "jquery", "troopjs-utils/merge" ], function AjaxModule(Service, Topic, $, merge) {
return Service.extend({
displayName : "core/remote/ajax",

Expand Down
2 changes: 1 addition & 1 deletion src/route/router.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @license TroopJS Copyright 2012, Mikael Karon <[email protected]>
* Released under the MIT license.
*/
define([ "../component/service", "../util/uri" ], function RouterModule(Service, URI) {
define([ "../component/service", "troopjs-utils/uri" ], function RouterModule(Service, URI) {
var HASHCHANGE = "hashchange";
var $ELEMENT = "$element";
var ROUTE = "route";
Expand Down
8 changes: 0 additions & 8 deletions src/util/callbacks.js

This file was deleted.

8 changes: 0 additions & 8 deletions src/util/deferred.js

This file was deleted.

8 changes: 0 additions & 8 deletions src/util/each.js

This file was deleted.

8 changes: 0 additions & 8 deletions src/util/grep.js

This file was deleted.

42 changes: 0 additions & 42 deletions src/util/merge.js

This file was deleted.

30 changes: 0 additions & 30 deletions src/util/tr.js

This file was deleted.

30 changes: 0 additions & 30 deletions src/util/unique.js

This file was deleted.

Loading

0 comments on commit e034827

Please sign in to comment.