tchatel / angular-treeRepeat

Recursive repeater for AngularJS
Do What The F*ck You Want To Public License
115 stars 16 forks source link

Version is not defined #10

Open jrett opened 10 years ago

jrett commented 10 years ago

I get ReferenceError: version is not defined at http://localhost:8081/app/lib/frangTree.js:125:72

Line 125 message = message + '\nhttp://errors.angularjs.org/' + version.full + '/' +

And clearly version is not defined in your document. Where is it expecting this to be defined from?

couzic commented 10 years ago

I ran into this bug a while ago Just replace

version.full

with

angular.version.full

Then you'll see the actual error

jrett commented 10 years ago

Great. Now check in your fix. Thanks.