Skip to content

Commit

Permalink
Implemented ICommand, IProxy, IMediator
Browse files Browse the repository at this point in the history
  • Loading branch information
rgr-myrg committed May 12, 2011
1 parent 89160af commit ab2a15e
Show file tree
Hide file tree
Showing 8 changed files with 22 additions and 22 deletions.
2 changes: 1 addition & 1 deletion build/devshop-eventsignal.js
Expand Up @@ -3,4 +3,4 @@
* Released under the MIT license:
* https://github.com/rgr-myrg/DevShop-JS/raw/master/MIT-LICENSE
*/
(function(){window.DevShop=typeof window.DevShop==="object"?window.DevShop:{};window.DevShop.Me=function(a){for(var b in a)a.hasOwnProperty(b)&&(window.DevShop[b]=a[b]);DevShop=devshop=window.DevShop}})();(function(){DevShop.Me({EventSignal:function(){var a=[];this.addListener=function(b){typeof b==="function"&&a.push(b)};this.removeListener=function(b){for(var c=a.length,d=0;d<c;d++)a[d]===b&&a.splice(d)};this.dispatch=function(){for(var b=a.length,c=0;c<b;c++)try{a[c].apply(this,arguments)}catch(d){}}}})})();
(function(){window.DevShop=typeof window.DevShop==="object"?window.DevShop:{};window.DevShop.Me=function(a){for(var b in a)a.hasOwnProperty(b)&&(window.DevShop[b]=a[b])}})();(function(){DevShop.Me({EventSignal:function(){var a=[];this.addListener=function(b){typeof b==="function"&&a.push(b)};this.removeListener=function(b){for(var c=a.length,d=0;d<c;d++)a[d]===b&&a.splice(d)};this.dispatch=function(){for(var b=a.length,c=0;c<b;c++)try{a[c].apply(this,arguments)}catch(d){}}}})})();
10 changes: 5 additions & 5 deletions build/devshop-full.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions build/devshop-mvc.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion build/devshop-observer.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion build/devshop-singletonfactory.js
Expand Up @@ -3,4 +3,4 @@
* Released under the MIT license:
* https://github.com/rgr-myrg/DevShop-JS/raw/master/MIT-LICENSE
*/
(function(){window.DevShop=typeof window.DevShop==="object"?window.DevShop:{};window.DevShop.Me=function(c){for(var a in c)c.hasOwnProperty(a)&&(window.DevShop[a]=c[a]);DevShop=devshop=window.DevShop}})();(function(){DevShop.Me({SingletonFactory:function(c){var a=function(a){if(typeof a==="function")try{return new a}catch(b){}else if(typeof a==="object")return a},d=a(c.implement),e=a(c.extend),a=a(c.instance),b;for(b in e)e.hasOwnProperty(b)&&(a[b]||(a[b]=e[b]));for(b in d)if(d.hasOwnProperty(b)&&!a[b])throw c.instance+" must implement '"+b+"' "+typeof d[b];if(typeof a.initialize==="function")try{a.initialize()}catch(f){}return a}})})();
(function(){window.DevShop=typeof window.DevShop==="object"?window.DevShop:{};window.DevShop.Me=function(c){for(var a in c)c.hasOwnProperty(a)&&(window.DevShop[a]=c[a])}})();(function(){DevShop.Me({SingletonFactory:function(c){var a=function(a){if(typeof a==="function")try{return new a}catch(b){}else if(typeof a==="object")return a},d=a(c.implement),e=a(c.extend),a=a(c.instance),b;for(b in e)e.hasOwnProperty(b)&&(a[b]||(a[b]=e[b]));for(b in d)if(d.hasOwnProperty(b)&&!a[b])throw c.instance+" must implement '"+b+"' "+typeof d[b];if(typeof a.initialize==="function")try{a.initialize()}catch(f){}return a}})})();

0 comments on commit ab2a15e

Please sign in to comment.