aboutsummaryrefslogtreecommitdiffstats
path: root/src/Angular.js
diff options
context:
space:
mode:
authorMisko Hevery2010-03-19 22:18:39 -0700
committerMisko Hevery2010-03-19 22:18:39 -0700
commitf6664ed7f6f6dd1f4f9756f57611a316089149cb (patch)
tree7c75e0aa500b35fd69a3115e570afc4902f41bfa /src/Angular.js
parentc3eac13aa7106d099e8f09c39518051ccf939060 (diff)
downloadangular.js-f6664ed7f6f6dd1f4f9756f57611a316089149cb.tar.bz2
tests fixed, still missing widgets
Diffstat (limited to 'src/Angular.js')
-rw-r--r--src/Angular.js4
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) {