diff options
| author | Misko Hevery | 2010-03-19 22:18:39 -0700 |
|---|---|---|
| committer | Misko Hevery | 2010-03-19 22:18:39 -0700 |
| commit | f6664ed7f6f6dd1f4f9756f57611a316089149cb (patch) | |
| tree | 7c75e0aa500b35fd69a3115e570afc4902f41bfa /src/Angular.js | |
| parent | c3eac13aa7106d099e8f09c39518051ccf939060 (diff) | |
| download | angular.js-f6664ed7f6f6dd1f4f9756f57611a316089149cb.tar.bz2 | |
tests fixed, still missing widgets
Diffstat (limited to 'src/Angular.js')
| -rw-r--r-- | src/Angular.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Angular.js b/src/Angular.js index 39a6e91d..8793274c 100644 --- a/src/Angular.js +++ b/src/Angular.js @@ -44,6 +44,10 @@ var isVisible = isVisible || function (element) { return jQuery(element).is(":visible"); }; +function isDefined(value){ + return typeof value !== 'undefined'; +} + function log(a, b, c){ var console = window['console']; switch(arguments.length) { |
