[00:00:02] <Soxad> i am trying to write a service that does an $http call and populates an object with info from the call then returns the object, but promises and async are tripping me up
[00:00:37] *** prbc has quit IRC
[00:00:40] <tschundeee> is there any official styleguide?
[00:00:44] *** jkli has quit IRC
[00:01:45] *** mary5030 has quit IRC
[00:01:57] <jaawerth> there's the google one (which ironically is not the top google result)
[00:02:21] *** mary5030 has joined #angularjs
[00:02:31] <jaawerth> much of it is specific to Closure users but there's some good angular stuff in there, particularly when it comes to modules and app structure
[00:02:56] <icfantv> Soxad: that's not going to work. $http does AJAX, it's asychronous
[00:03:00] *** Grokling_ has joined #angularjs
[00:03:06] *** tinyfly has quit IRC
[00:03:40] <Soxad> icfantv: how would you approach this?
[00:03:40] <icfantv> Soxad: your call will return immediately and the return object may or may not be what you want….but most likely not.
[00:03:54] <tschundeee> jaawerth: I guess I'll go with the one that has more stars on github...
[00:03:56] *** ProLoser has quit IRC
[00:03:56] *** nycdevgirl has quit IRC
[00:04:12] <tschundeee> the google styleguide is not really helpful for certain situations
[00:04:21] <jaawerth> or read both and do what makes sense to you?
[00:04:24] *** juanpablo_ has quit IRC
[00:04:46] *** AlexZ has quit IRC
[00:04:46] <icfantv> Soxad: $http returns a promise so you do $http.get(…).then(function (data_from_server) { /* do something with the data */ });
[00:04:47] <moogey> tschundeee 6 of one half dozen of the other
[00:04:52] *** juanpablo_ has joined #angularjs
[00:04:53] *** juampy_backlater is now known as juampy
[00:05:21] *** mtho11 has quit IRC
[00:05:23] <icfantv> Soxad: OR, you can do the .success(…).error(…)
[00:05:24] <tschundeee> moogey: sry?
[00:05:27] *** nemothekid has quit IRC
[00:05:31] *** Cronoh has joined #angularjs
[00:05:50] *** pzuraq has quit IRC
[00:06:21] <moogey> tschundeee to mean "a little of both"
[00:06:30] *** ocx_ has joined #angularjs
[00:06:33] <jaawerth> ooh, I like the bit in the toddmotto one about sticking a .resolve property on the controller object rather than putting the resolve logic in the route/sate setup
[00:06:33] *** startupality has quit IRC
[00:06:37] <jaawerth> why didn't I think of that?
[00:06:40] <tschundeee> moogey: :D
[00:06:51] <ocx_> whats a good book to start llearning angular
[00:06:56] <Soxad> icfantv: but if I do it that way won't it still run after mehObj = scrapeMeh(mehData);?
[00:07:08] *** mary5030 has quit IRC
[00:07:11] <tschundeee> i'll go with it
[00:07:13] <tschundeee> o_O
[00:07:49] <ocx_> ?
[00:07:56] <icfantv> Soxad: if you;re making a service that you expect to be called from more than one point in your code, i would write it in one of two ways: 1) have your service return the promise, or 2) you pass in a callback that the service executes when finished.
[00:08:18] <jaydubya> icfantv: no go on the plunker
[00:08:46] <jaydubya> using the same code that I can see ON MY SITE and on plunker it won't show
[00:08:47] <icfantv> jaydubya: ?
[00:08:52] *** Hestil has quit IRC
[00:08:56] <jaawerth> tschundeee: having galnced at both, they both have good content, though todd moto gets extra points for that resolve trick
[00:09:10] <icfantv> jaawerth: where's that SO link on $q you sent me ages ago?
[00:09:15] <ocx_> tschundeee: I LIKE BOOKS
[00:09:16] <tschundeee> ocx_: then work your way through the videos
[00:09:17] <icfantv> jaawerth: i thought i bookmarked it
[00:09:18] *** juanpablo_ has quit IRC
[00:09:27] <tschundeee> ocx_: go and print the webpages out
[00:09:32] <jaawerth> I dunno, I probably just sent you whatever I found googling that answered your question in a satisfactory way
[00:09:36] <ocx_> lol
[00:09:46] <jaawerth> to save me the typing ;-)
[00:09:52] <jaawerth> I do taht sometimes
[00:09:53] <ocx_> tschundeee: is the mvc model important in angular?
[00:10:49] *** ceephax has joined #angularjs
[00:11:01] *** hell_razer has quit IRC
[00:11:10] <tschundeee> ocx_: kind of. you have views. you have controllers and you can define your own model layers
[00:11:41] <jaydubya> not exactly my issue but I can seem to get dropdown to work on plunker
[00:12:08] *** zwacky has joined #angularjs
[00:12:16] *** mspier is now known as mspier|away
[00:12:30] *** dman777_alter has quit IRC
[00:12:34] <icfantv> Soxad: you will need to inject $q into your service
[00:13:00] <ocx_> tschundeee: is ionic a good platform?
[00:13:08] <ocx_> do you recommend it
[00:13:40] *** SargoDarya has quit IRC
[00:13:56] *** akrikos has quit IRC
[00:14:28] *** seriema has joined #angularjs
[00:14:38] <Foxandxss> yes
[00:14:40] <Foxandxss> definitely
[00:15:18] <moogey> jaydubya is you disable z-index on .ngTopPanel it fixes it in that plunker
[00:15:30] *** caitp- has quit IRC
[00:15:33] <moogey> interesting because it remains broken if you change the value of z-index to anything else
[00:15:48] *** joshontheweb has joined #angularjs
[00:15:58] <ocx_> Foxandxss: is that addressed to me?
[00:16:01] <Soxad> icfantv: It would be a lot easier if i had a complete example to look at, surely this is something that has been done before
[00:16:12] <Foxandxss> yes
[00:17:03] <icfantv> Soxad: it sure would. but then you wouldn't learn anything. :-)
[00:17:10] <Soxad> fair enough
[00:17:17] <icfantv> Soxad: lemme gist something, one sec
[00:17:39] <tschundeee> ocx_: puuh not sure about ionic.
[00:17:54] <ocx_> whats ebttewr tschundeee
[00:17:56] <ocx_> better
[00:18:24] <tschundeee> ocx_: really depends on what you're trying to achieve
[00:18:25] *** juampy has quit IRC
[00:18:33] <ocx_> tschundeee: mobile hybrid app
[00:18:47] <jaydubya> moogey: how do "disable" a css rule -- inherit?
[00:18:53] *** seriema has quit IRC
[00:18:58] *** alpha080 has joined #angularjs
[00:19:23] <tschundeee> ocx_: ionic is focussed on mobile apps
[00:19:26] <moogey> jaydubya: I think that should work
[00:19:35] <ocx_> tschundeee: is it good?
[00:19:36] <moogey> I just unchecked the checkbox, haha
[00:19:54]
<jaawerth> Soxad: I have this plunk I wrote a while back to help someone - it demonstrates both the "old" (pre-1.3.x) and "new", better (1.3.x+, though 1.3.x is also backwards compatible with the old way) syntax for doing it http://plnkr.co/edit/2tLpG9cqxyJQb9Ims6Xr?p=info
[00:20:03] <jaawerth> Soxad: can't answer questions about it though, because it's time for me to go home!
[00:20:06] *** BobbieBarker has joined #angularjs
[00:20:08] <jaawerth> others likely can, though
[00:20:23] <tschundeee> ocx_: if I would target mobile I'd go with swift for apple and java for android
[00:20:28] *** eago has quit IRC
[00:20:39] <ocx_> tschundeee: native u mean?
[00:20:55] *** Michael__ has joined #angularjs
[00:20:58] *** ivor has quit IRC
[00:21:06] <tschundeee> ocx_: yup.
[00:21:14] <Michael__> Merry Xmas y'all
[00:21:20] *** Michael__ is now known as Guest6737
[00:21:21] <jaydubya> OMG! OMG! .ngTopPanel{ z-index: inherit;} fixed my app as well
[00:21:32] <moogey> WOOHOO
[00:21:42] <BobbieBarker> what did we win for xmas?
[00:21:43] <ocx_> tschundeee: why?
[00:21:44] <tschundeee> ocx_: but if your app is simple enough you could try out ionic
[00:21:59] <ocx_> tschundeee: its like an uber app
[00:21:59] <Guest6737> I am stumped by the controller breaking change
[00:22:12] *** code-ninja{io} has joined #angularjs
[00:22:19] *** ytsejam has quit IRC
[00:22:21] *** terakilobyte has quit IRC
[00:22:46] <Guest6737> I am coding my ctrl as per the recommendations verbatim, and rendering breaks in my div when I invoke the ng-controller directive
[00:22:47] <jaydubya> That was a close-call! I almost had to call a crisis-line because I had actually loaded the Getting Started page for emberjs
[00:23:01] *** Z3R0 has quit IRC
[00:23:02] <tschundeee> ocx_: try it out and let me know of your results
[00:23:03] *** s00pcan_ has quit IRC
[00:23:10] *** cakirke has quit IRC
[00:23:24] <moogey> jaawerth, ooh I need to move over to the new style, you can resolve with more than one argument. That's nice
[00:23:44] *** startupality has joined #angularjs
[00:24:42] *** nahoskins1 has joined #angularjs
[00:24:58] *** pell0 has joined #angularjs
[00:25:04] <icfantv> jaydubya: make sure you bill your client for the full 6 hours
[00:25:22] *** bmac has quit IRC
[00:25:23] <jaydubya> icfantv: I can't do that
[00:25:35] <icfantv> hehehe
[00:25:37] *** caitp- has joined #angularjs
[00:25:43] <jaydubya> that is "cost of doing business" because it was my stupidity
[00:25:56] *** MistahKurtz has joined #angularjs
[00:25:56] <Guest6737> what does ng-controller want that renderring suddenly falls over?
[00:26:00] <icfantv> Guest6737: a plunker would assist us in helping you greatly
[00:26:07] <Guest6737> I am running with angular 1.3.4
[00:26:09] *** soee has joined #angularjs
[00:26:09] <Soxad> ok im gonna try to wrap my head around this stuff, thx everyone
[00:26:12] *** pelll0 has quit IRC
[00:26:13] <icfantv> Guest6737: check the chrome console for red
[00:26:22] <moogey> Soxad it takes a while, give it time
[00:26:34] <icfantv> Guest6737: that should be your first stop
[00:26:46] <Guest6737> icfantv: ok
[00:26:46] <icfantv> Soxad: it's really simple once you see it in action once.
[00:26:56] *** nahoskins has quit IRC
[00:27:11] <icfantv> Soxad: just remember that $q lets you execute stuff asynchronously so you're not blocking the browser
[00:28:40] <ocx_> tschundeee: notdejs works only on server side?
[00:29:09] *** ceephax has quit IRC
[00:29:15] <tschundeee> ocx_: yes
[00:29:25] *** Aerospark has joined #angularjs
[00:29:28] *** jaredwilli has quit IRC
[00:29:32] <tschundeee> ocx_: in the context of ionic it is used as a build tool
[00:29:48] <ocx_> to provide the websimultaor maybe?
[00:29:56] <Guest6737> icfantv: angular is not defined
[00:29:57] <ocx_> webserver
[00:30:13] *** wololo has joined #angularjs
[00:30:18] <icfantv> Guest6737: heh. did you add it to your <script> block?
[00:30:21] *** wololo has quit IRC
[00:30:26] <tschundeee> you build your rest endpoints in whatever you like and make your ionic app speak to it. it can be a node backend but doesn't have to
[00:31:01] <icfantv> Guest6737: or you're importing something that requires angular before angular has loaded.
[00:31:05] *** xxMatiasFCxx is now known as xxMatiasxx
[00:31:23] <icfantv> Guest6737: again, a plunkr or gist would help immensely
[00:31:31] *** joshontheweb has quit IRC
[00:31:35] *** annlewis has joined #angularjs
[00:31:36] *** mary5030 has joined #angularjs
[00:31:40] <ocx_> tschundeee: ok so nodejs cannot run in the brwoser
[00:31:49] *** freeman42 has quit IRC
[00:31:50] <icfantv> Soxad: hey, fork that gist or copy the code off b/c i'm going to delete it
[00:32:03] <Soxad> okay
[00:32:08] <icfantv> lemme know when you're done
[00:32:09] <icfantv> please
[00:32:17] <Guest6737> icfantv: not sure what you mean add it to my script block? is it something I can do from ASP.NET MVC BundleConfig?
[00:32:29] <icfantv> Guest6737: oh.my.god
[00:32:36] <moogey> heh
[00:32:49] <Soxad> i downloaded the gist you can delete it icfantv
[00:32:53] <icfantv> cool, thanks
[00:33:31] <icfantv> Guest6737: this may shock you, but i don't think there's a ton of .NET devs in here
[00:33:37] *** dessazioeajziazd has quit IRC
[00:33:44] *** jkli has joined #angularjs
[00:33:50] <Guest6737> icfantv: nothing much shocks me any more ... :)
[00:33:59] *** Aerospark has quit IRC
[00:34:04] <Guest6737> icfantv: but I get you, 'angular is angular' ...
[00:34:09] *** renlo has quit IRC
[00:34:31] <icfantv> Guest6737: ok. i don't know asp.net either. does your top level .asp page define any script includes?
[00:34:44] <icfantv> Guest6737: or are they injected through your bundleconfig object?
[00:34:55] *** nuizzy has quit IRC
[00:35:10] <Guest6737> icfantv: it does: <script src="~/Scripts/angular.min.js"></script>
[00:35:13] *** danecando has quit IRC
[00:35:30] *** ytsejam has joined #angularjs
[00:35:31] *** CodeFriar has joined #angularjs
[00:35:31] <icfantv> Guest6737: is that the first script block?
[00:35:57] <icfantv> and does that file exist? check the network tab to make sure you're not getting a 404
[00:36:04] *** annlewis has quit IRC
[00:36:05] *** g33k5z_ has quit IRC
[00:36:06] *** drag0nius has quit IRC
[00:36:11] *** joroc has joined #angularjs
[00:36:31] *** g33k5z has joined #angularjs
[00:36:50] *** sahbeewah_ has quit IRC
[00:36:57] <Guest6737> icfantv: that was a clue. I move it up above RenderBody, and voila, whaddaya know
[00:37:12] *** joshontheweb has joined #angularjs
[00:37:28] *** cantyjeffrey has quit IRC
[00:37:29] *** TheAceOfHearts has joined #angularjs
[00:37:31] <icfantv> cool
[00:37:46] <Guest6737> icfantv: thank ye so much
[00:37:46] <icfantv> ok, i've done enough mitzvahs for today
[00:37:49] <icfantv> yep
[00:37:54] *** g33k5z has quit IRC
[00:38:01] *** g33k5z has joined #angularjs
[00:38:27] *** japhar81 has joined #angularjs
[00:38:30] *** g33k5z has quit IRC
[00:38:31] <moogey> bless you icfantv
[00:38:36] <icfantv> heh
[00:38:39] <moogey> icfantv++
[00:39:44] *** aven1 has quit IRC
[00:39:54] *** ximenean__ has joined #angularjs
[00:40:33] *** ocx_ has left #angularjs
[00:40:45] *** adamsilver has quit IRC
[00:40:51] *** icfantv has quit IRC
[00:41:03] *** edy has quit IRC
[00:41:19] *** disorder20 has quit IRC
[00:41:30] *** edy has joined #angularjs
[00:42:52] *** ChadStrat has joined #angularjs
[00:43:07] *** Guest6737 has quit IRC
[00:43:21] *** FunnyLookinHat has quit IRC
[00:43:26] <jkli> is there any really good reason to learn mongodb?
[00:44:01] <quan__> well if someone asks you 'bro, do you even webscale?' you can answer 'yes'
[00:44:02] *** ximenean__ has quit IRC
[00:44:30] *** tripu has joined #angularjs
[00:44:57] <Foxandxss> maybe not the right channel
[00:45:07] *** Oceed has joined #angularjs
[00:45:19] *** Grokling_ has quit IRC
[00:45:37] *** s00pcan_ has joined #angularjs
[00:46:10] *** edy has quit IRC
[00:46:55] *** hell_razer has joined #angularjs
[00:48:16] *** terakilobyte has joined #angularjs
[00:48:26] *** loverajoel has joined #angularjs
[00:49:42] *** sacosta has quit IRC
[00:50:30] *** joshontheweb has quit IRC
[00:51:17] *** eago has joined #angularjs
[00:52:29] *** Reskp has joined #angularjs
[00:52:51] *** ytsejam has quit IRC
[00:54:56] *** AngularUI has joined #angularjs
[00:54:57]
<AngularUI> [ng-grid] PaulL1 opened pull request #2431: Fix #2334, #2418 (selection): select all removed when row unselected, fi... (master...2334_select_all) http://git.io/zQ0a8A
[00:54:57] *** AngularUI has left #angularjs
[00:55:19] *** bmac has joined #angularjs
[00:55:29] *** zumba_addict has quit IRC
[00:56:10] *** prbc has joined #angularjs
[00:56:31] *** Nurbs has quit IRC
[00:56:32] *** Reskp has quit IRC
[00:57:00] *** huahaha has joined #angularjs
[00:57:36] *** loverajoel has quit IRC
[00:59:10] *** sahbeewah_ has joined #angularjs
[00:59:23] *** elrabin_ has joined #angularjs
[00:59:24] *** tschundeee has quit IRC
[00:59:26] *** Fire-Dragon-DoL has quit IRC
[00:59:34] *** AngularUI has joined #angularjs
[00:59:34]
<AngularUI> [ng-grid] PaulL1 closed pull request #2431: Fix #2334, #2418 (selection): select all removed when row unselected, fi... (master...2334_select_all) http://git.io/zQ0a8A
[00:59:34] *** AngularUI has left #angularjs
[01:00:49] *** prbc has quit IRC
[01:01:25] *** huahaha has quit IRC
[01:01:58] *** ProLoser has joined #angularjs
[01:02:22] *** apparition168 has quit IRC
[01:02:22] *** elrabin has quit IRC
[01:02:43] *** apertoire has joined #angularjs
[01:03:03] *** apparition168 has joined #angularjs
[01:03:43] *** elrabin_ has quit IRC
[01:05:21] *** jkli has quit IRC
[01:06:07] *** aven1 has joined #angularjs
[01:06:07] *** Sadin has joined #angularjs
[01:06:45] *** mikerrrrrr has joined #angularjs
[01:06:57] *** maikowblue has joined #angularjs
[01:07:02] *** eburcat has joined #angularjs
[01:07:27] <nahoskins1> how many of you are using requirejs
[01:07:42] *** Cronoh has quit IRC
[01:07:45] <nahoskins1> just gone back over the debates on it from a couple years ago
[01:08:21] *** rickibilboa has joined #angularjs
[01:08:56] *** rickhanl_ has joined #angularjs
[01:09:17] *** joroc has quit IRC
[01:09:17] <burzum2> what do i wrong when my content of my custome directive disappears? I've set transclude to true, the directive is not using any template.
[01:09:36] *** marr has quit IRC
[01:09:56] *** katsh has quit IRC
[01:10:08] *** AlexZ has joined #angularjs
[01:10:46] *** SargoDarya has joined #angularjs
[01:10:55] *** ries has quit IRC
[01:11:05] *** ytsejam has joined #angularjs
[01:11:10] *** paypaul__ has joined #angularjs
[01:11:50] *** dylan9o4 has quit IRC
[01:11:52] *** eburcat has quit IRC
[01:12:08] *** UniBot-test has joined #angularjs
[01:12:17] *** rickhanlonii has quit IRC
[01:12:29] *** UniBot-test has joined #angularjs
[01:13:08] *** proteneer has quit IRC
[01:13:27] *** UniBot-test has quit IRC
[01:13:33] *** alt_qq has joined #angularjs
[01:13:44] *** UniBot-test has joined #angularjs
[01:15:11] *** RobinBAwesome has quit IRC
[01:15:28] *** seriema has joined #angularjs
[01:15:32] *** SargoDarya has quit IRC
[01:15:49] *** yelvert has joined #angularjs
[01:16:29] *** UniBot-test has quit IRC
[01:16:33] *** rikko has quit IRC
[01:16:38] *** cantyjeffrey has joined #angularjs
[01:16:50] *** Carlangueitor has joined #angularjs
[01:18:04] *** alt_qq has quit IRC
[01:18:08] *** newb` has joined #angularjs
[01:18:49] <newb`> In an ng-repeat, is it legal to do: 'Object.keys(some object)' ?
[01:19:48] *** Menorah has quit IRC
[01:19:48] *** paul_ has quit IRC
[01:20:13] *** staxomati has joined #angularjs
[01:20:20] *** jonatas_oliveira has joined #angularjs
[01:20:22] *** yelvert has quit IRC
[01:20:22] *** seriema has quit IRC
[01:20:24] *** staxomati has quit IRC
[01:20:26] *** cantyjeffrey has quit IRC
[01:20:33]
<dllama> guys, i'm sorry to ask but i'm stuck again… using ng-signature-pad and this is my directive: https://gist.github.com/mvoloz/b5d50b4a875c635a4c5d … i'm trying to inject a serivce into the directive in the hopes of returning the signature into the actual srevice, but so far failing miserably… getting undefined for DocumentService
[01:22:29] <dllama> I'd also very much like to know how i can access some values of the directive from outside it, for example, signatrePad.isEmpty().
[01:22:39] *** tripu has quit IRC
[01:22:47] *** alpha080 has quit IRC
[01:24:10] *** tschundeee has joined #angularjs
[01:25:05] *** johnstorey has joined #angularjs
[01:25:17] *** hell_razer has quit IRC
[01:27:34] *** wookiehangover has quit IRC
[01:28:10] *** CodeFriar has quit IRC
[01:28:56] <snurfery> sup yall
[01:29:04] *** michaelSharpe has joined #angularjs
[01:29:04] <dllama> sup snurfery
[01:29:16] <snurfery> hope errbody's having a good tuesday-that-feels-like-friday
[01:29:19] * snurfery waves
[01:29:41] <dllama> i hope everyone is havinga better tuesday-that-feels-like-a-friday than i am :D
[01:29:48] <newb`> In an ng-repeat, is it legal to do: 'Object.keys(some object)' ?
[01:29:58] <snurfery> aww, what's goin on?
[01:29:59] *** sgen__ has joined #angularjs
[01:30:00] *** earthquake has joined #angularjs
[01:30:14] <dllama> trying to inject a service into a directive, with little to no luck
[01:30:19] <snurfery> newb`: only if 'Object' is attached to scope somehow
[01:30:22] *** rmcdaniel has joined #angularjs
[01:30:53] <newb`> snurfery: Object is a function in modern javascript (ECMAScript 5)
[01:30:56] <snurfery> yeah I'm checking it out
[01:31:13] <dllama> i'm trying to bind the "signature" to a service value so i can upload it :/
[01:31:20] *** dsdeiz has joined #angularjs
[01:31:27] <burzum2> what do i wrong when my content of my custome directive disappears? I've set transclude to true, the directive is not using any template.
[01:31:34] *** annlewis has joined #angularjs
[01:31:40] *** wookiehangover has joined #angularjs
[01:31:54] <snurfery> newb`: I'm aware of that, but angular views resolve variables against the $scope, not the global namespace
[01:32:26] <snurfery> so you might be able to do some hackery like $scope.Object = Object; in your controller, no promises what'll happen though :)
[01:32:40] <moogey> dllama: line 55
[01:32:40] <newb`> snurfery: What is a resolve variable?
[01:33:01] <dllama> SOB
[01:33:11] <snurfery> ahhhhhhh
[01:33:14] <snurfery> good find
[01:33:15] <dllama> i'm stikcing it everywhere i could think of but obviously missed that
[01:33:38] <moogey> dllama that's why I don't use that syntax when I'm developing
[01:33:50] <dllama> what do u mean?
[01:34:30] *** noisewaterphd has quit IRC
[01:34:35] *** rickhanl_ has quit IRC
[01:34:35] <dllama> dont use what syntax?
[01:34:46] <newb`> snurfery: I did the 'scope.Object = Object' trickery, and I got an error saying that referencing Object in Angular is disallowed.
[01:34:52] <snurfery> heh
[01:34:59] <snurfery> well, they gotcha
[01:35:04] <christo_m> okay so im using the Yeoman Angular fullstack generator, and i just installed jquery-ui with bower install jquery-ui, but grunt is not automatically linking it into my index file? how do i add new components with bower?
[01:35:06] <snurfery> anyway just wrap the functionality in your own method
[01:35:08] <moogey> the controller: ['dep', function(deep){})] is so manification doesn't break
[01:35:20] <moogey> dllama ^
[01:35:35] <snurfery> newb`: $scope.keys = function(obj) { return Object.keys(obj); }
[01:35:41] <snurfery> simple enough
[01:35:56] <newb`> snurfery: Yeah, I've been filtering in the ng-repeat attribute, I guess I'll try doing it straight from javascript? That's what you mean right?
[01:36:00] *** annlewis has quit IRC
[01:36:08] *** joroc has joined #angularjs
[01:36:11] <dllama> ahh
[01:36:15] <dllama> ok makes sense :)
[01:36:17] <dllama> thank you!
[01:36:20] <moogey> yupyup
[01:36:21] *** ChadStrat has quit IRC
[01:36:27] *** AngularUI has joined #angularjs
[01:36:28]
<AngularUI> [ng-grid] PaulL1 opened pull request #2432: Fix #2380 (cellNav): ScrollTo was scrolling all grids on page (master...2380_scrollTo_twoGrids) http://git.io/VwXLjQ
[01:36:28] *** AngularUI has left #angularjs
[01:36:29] <dllama> 2.5hrs of my life gone on that
[01:36:29] <dllama> lol
[01:36:32] *** kreosNoel has joined #angularjs
[01:36:34] *** rickhanlonii has joined #angularjs
[01:36:37] <snurfery> that's good XP though
[01:36:41] <moogey> dllama the struggle is real
[01:36:42] *** rikko has joined #angularjs
[01:36:48] <snurfery> the struggle IS real.
[01:37:04] <dllama> well next step wa soging to be to use ngModel.$setView()
[01:37:15] <dllama> but i was trying to avoid doing that in hopes of pushing directly to the serve,
[01:37:17] <dllama> service*
[01:37:32] <dllama> next step is figuring out how to trigger the accept/clear methods from outside of the directive :)
[01:37:53] <dllama> though for that i think i'll stick to scope.watch
[01:38:00] <moogey> dllama use services
[01:38:02] <kreosNoel> ok since I assume we're mostly front end down here, here's my question
[01:38:08] <kreosNoel> favourite front end music :D
[01:38:15] <snurfery> oh snap
[01:38:16] <kreosNoel> or playlist or album or whatever
[01:38:37] <dllama> kreosNoel: deep house helps :)
[01:38:47] <snurfery> I listen to the Eric Prydz 2013 Essential Mix pretty much constantly
[01:38:59] <snurfery> but +1 to dllama on that, deep house is fantastic
[01:39:03] <dllama> snurfery: thats a good one,
[01:39:11] <dllama> i been slamming seleenmusik lately
[01:39:22] <dllama> Seelenmusik*
[01:39:23] <moogey> I like me some copeland
[01:39:31] * snurfery google's all of this
[01:39:47] <moogey> starbomb and ninja sex party
[01:39:50] <moogey> you can thank me later
[01:39:54] <kreosNoel> i'll have a check on what you suggested
[01:39:55] <moogey> not an internet troll
[01:39:58] <snurfery> heh
[01:40:03] <dllama> housetrap is awesome, and they're pretty consistent with new 2hr sets every 2 weeks
[01:40:07] <kreosNoel> if some of you is into old school HH
[01:40:13] *** rickhanlonii has quit IRC
[01:40:17] <snurfery> issok, I'll still proudly google "ninja sex party" from work
[01:40:22] <kreosNoel> try to listen to the Afro Ninja soundtrack while working
[01:40:23] *** aven1 has quit IRC
[01:40:33] <kreosNoel> man it helps! :D
[01:40:36] *** cotko has quit IRC
[01:40:41] *** ximenean__ has joined #angularjs
[01:40:48] <dllama> i can't do vocals while coding
[01:40:56] <dllama> it distracts me
[01:41:06] <snurfery> cartoon network uses a lot of awesome dj krush/nujabes-style stuff, it's fantastic
[01:41:09] <snurfery> dllama: exactly
[01:41:16] *** scythe__ has quit IRC
[01:41:23] *** asher^ has joined #angularjs
[01:41:23] *** toastynerd has joined #angularjs
[01:41:25] <kreosNoel> interesting
[01:41:33] <dllama> mess around and end up with a function named handUp() lol
[01:41:35] <dllama> hands*
[01:41:36] <snurfery> can't do lyrics
[01:41:39] <snurfery> hahahhaha
[01:41:42] <kreosNoel> lol hahaha
[01:41:59] *** TommyO has joined #angularjs
[01:42:02] <dllama> Schneeweiss IV is really good too,
[01:42:12] *** abram has quit IRC
[01:42:27] <kreosNoel> not working now, but this one is also good chilling instrumental music with few lyrics
[01:42:34] *** renlo has joined #angularjs
[01:42:59] <snurfery> damn, how are you guys talking about this right now, right when I'm about to leave
[01:43:23] <moogey> snurfery RIGHT!?
[01:43:40] <dllama> haha
[01:43:45] <snurfery> I'll get a recap when I log back on... someone take notes!
[01:43:48] <snurfery> heh
[01:43:52] <christo_m> okay so im using the Yeoman Angular fullstack generator, and i just installed jquery-ui with bower install jquery-ui, but grunt is not automatically linking it into my index file? how do i add new components with bower?
[01:43:54] <dllama> w0000 signature capture works :D
[01:44:13] *** nahoskins1 has quit IRC
[01:44:45] *** scythe__ has joined #angularjs
[01:44:50] <moogey> dllama yay
[01:45:12] *** CrashHD has joined #angularjs
[01:45:12] *** Aerospark has joined #angularjs
[01:45:28] *** ximenean__ has quit IRC
[01:45:38] <dllama> last question actually on that topic, the link creates a new signaturePad object, which has a method of isEmpty(), how would i access that from outside?
[01:45:52] <newb`> snurfery: for some reason, your scope.keys solution does not work.
[01:46:02] <ProLoser> any node gurus?
[01:46:06] <newb`> snurfery: It seems to return an empty set
[01:46:46] *** nahoskins1 has joined #angularjs
[01:46:48] *** Carlangueitor has quit IRC
[01:47:09] <moogey> dllama you could put the signaturePad object on the scope as $scope.$signaturePad
[01:47:20] <moogey> then in the view do $signaturePad.isEmpty()
[01:47:36] *** CanyonMan has joined #angularjs
[01:48:12] *** snurfery has quit IRC
[01:48:18] *** zwacky has quit IRC
[01:48:44] <dllama> ok, will try that now
[01:49:48] *** Aerospark has quit IRC
[01:49:49] *** Odceed has joined #angularjs
[01:50:01] *** whiteboo_ has joined #angularjs
[01:50:33] <newb`> snurfery: writing $scope.keys automatically makes my variable visible in HTML right?
[01:50:59] <newb`> makes the 'keys' function visible inside an HTML attribute I mean.
[01:51:16] *** terakilobyte has quit IRC
[01:51:17] *** mary5030 has quit IRC
[01:51:51] *** mary5030 has joined #angularjs
[01:52:10] <moogey> later everyone
[01:52:21] *** t_p has quit IRC
[01:52:41] *** moogey has quit IRC
[01:53:00] *** Oceed has quit IRC
[01:53:09] *** cthrax has quit IRC
[01:53:34] *** Oceed has joined #angularjs
[01:53:35] *** Reskp has joined #angularjs
[01:53:50] *** startupality has quit IRC
[01:53:59] *** Suman has joined #angularjs
[01:54:11] <Suman> Hello
[01:54:28] <Suman> where can I download beta version of angularjs2.0?
[01:54:37] *** Odceed has quit IRC
[01:55:34] *** Odceed has joined #angularjs
[01:56:32] *** mary5030 has quit IRC
[01:57:04] <Sickness[]> Anyone any experience with restangular? I'm trying to do basic authentication using setDefaultHeaders but those headers are never sent
[01:57:06] *** paypaul__ has quit IRC
[01:57:20] *** Weezey has quit IRC
[01:57:29] <newb`> what are some workaround to filtering a hash table?
[01:57:37] *** pzuraq has joined #angularjs
[01:57:39] <newb`> where you filter by key.
[01:57:44] *** code-ninja{io} has quit IRC
[01:57:48] *** shinnya has quit IRC
[01:57:50] *** joshontheweb has joined #angularjs
[01:58:11] *** Weezey has joined #angularjs
[01:58:22] *** Oceed has quit IRC
[01:58:26] *** Reskp has quit IRC
[01:58:50] *** Foxandxss has quit IRC
[01:58:58] *** ctanga has quit IRC
[02:00:02] *** thomasvs has quit IRC
[02:00:11] *** 1JTABIEIZ has joined #angularjs
[02:00:11] <1JTABIEIZ> ng-grid/master bafdfc9 Paul Lambert: Fix #2380 (cellNav): ScrollTo was scrolling all grids on page...
[02:00:11] <1JTABIEIZ> ng-grid/master d6b8ff9 Paul: Merge pull request #2432 from PaulL1/2380_scrollTo_twoGrids...
[02:00:11] *** 1JTABIEIZ has left #angularjs
[02:00:12] *** 6A4AAUTVP has joined #angularjs
[02:00:12]
<6A4AAUTVP> [ng-grid] PaulL1 closed pull request #2432: Fix #2380 (cellNav): ScrollTo was scrolling all grids on page (master...2380_scrollTo_twoGrids) http://git.io/VwXLjQ
[02:00:12] *** 6A4AAUTVP has left #angularjs
[02:00:16] *** zwacky has joined #angularjs
[02:00:17] *** ron_frown has joined #angularjs
[02:00:27] *** GiantEnemyCrab has joined #angularjs
[02:00:43] *** thomasvs has joined #angularjs
[02:00:44] *** AimerPaddle has quit IRC
[02:00:46] *** AlexZ has quit IRC
[02:00:48] <kreosNoel> write
[02:00:57] *** {DV8} has joined #angularjs
[02:01:14] *** newb` has quit IRC
[02:01:16] *** mzabriskie has joined #angularjs
[02:01:25] <kreosNoel> sorry, it was meant to be a test.
[02:01:34] *** cotko has joined #angularjs
[02:01:34] <kreosNoel> he quitted
[02:02:06] *** et09 has joined #angularjs
[02:02:15] <et09> how do i rig up an error message to appear in DOM after ng-include 404s?
[02:02:25] *** rmcdaniel has quit IRC
[02:02:28] *** Oceed has joined #angularjs
[02:02:57] *** ctanga has joined #angularjs
[02:03:16] *** bmac has quit IRC
[02:03:25] *** opiates has joined #angularjs
[02:03:50] <stormbytes> how do you get angular to work inside of a lightbox or other javascript modal
[02:03:51] *** kavita has quit IRC
[02:03:52] *** fedenunez has joined #angularjs
[02:04:07] <et09> stormbytes: is your app inside or outside of the modal?
[02:04:19] <et09> or i should say, does your app encapsulate the modal
[02:04:22] <stormbytes> inside the modal
[02:04:26] <stormbytes> but.. i tried everything
[02:04:35] <et09> your app should be creating the modals really
[02:04:36] <stormbytes> tried loading the script inside the modal, etc..nothing works
[02:04:37] <et09> just in general
[02:04:55] <et09> load the scripts on page load. use ng-app="yourapp" inside the moal.
[02:04:56] <et09> modal
[02:05:03] <stormbytes> i know but this is an old app and i'd rather just add angular, the app needs to be re-written
[02:05:12] <stormbytes> hmm
[02:05:14] *** Odceed has quit IRC
[02:05:28] <stormbytes> defining the module + controllers in the modal?
[02:05:53] *** motionman has joined #angularjs
[02:06:01] <et09> i would not recommend that design pattern, but sure
[02:06:09] <et09> if you're set on jamming an entire app into a modal ;)
[02:06:16] *** aven1 has joined #angularjs
[02:06:20] *** michaelSharpe has quit IRC
[02:06:41] *** hell_razer has joined #angularjs
[02:06:42] <stormbytes> that's what i need to do here
[02:06:43] *** patrickarlt has quit IRC
[02:06:57] <stormbytes> it blows but its old
[02:07:05] <stormbytes> and no commitment to a re-write at the moment
[02:07:07] *** noisewaterphd has joined #angularjs
[02:07:17] *** ctanga has quit IRC
[02:07:34] <stormbytes> its not picking up the {{ }}
[02:07:38] <et09> (gasp)
[02:07:44] *** jonatas_oliveira has quit IRC
[02:07:49] *** bzitzow has quit IRC
[02:07:54] *** earthquake has quit IRC
[02:07:59] <et09> maybe you should just wrap the modal in the app and use ui-bootstrap, angular lightbox, or w/e
[02:08:18] *** Odceed has joined #angularjs
[02:08:35] *** AciD`` has quit IRC
[02:08:37] *** bbankes has quit IRC
[02:08:39] <stormbytes> hmm
[02:08:42] <stormbytes> that's a thought
[02:08:43] *** Iravan has joined #angularjs
[02:08:44] <stormbytes> will look into that
[02:08:48] <stormbytes> this doesn't seem to be working
[02:09:16] <et09> it could work. maybe....
[02:09:30] <et09> maybe not if angular needs the ng-app element to be present in dom when it runs
[02:09:37] <et09> that's not something i know
[02:09:52] <stormbytes> hm
[02:10:03] <stormbytes> well thanks regardless
[02:10:10] <stormbytes> i'm gonna have to play with it
[02:10:15] *** soee has quit IRC
[02:10:17] *** dsdeiz has quit IRC
[02:10:18] *** evilaliv3 has quit IRC
[02:10:23] *** joroc has quit IRC
[02:10:32] <et09> i mean
[02:10:38] <et09> angular's not gonna interfere that much with anything else
[02:10:39] *** startupality has joined #angularjs
[02:10:45] <et09> might as well make the whole <html> have ng-app
[02:11:18] <stormbytes> i tried that too
[02:11:19] <stormbytes> didn't work
[02:11:32] *** Oceed has quit IRC
[02:11:39] *** terakilobyte has joined #angularjs
[02:11:41] <stormbytes> the modal popping up needs to trigger a digest cycle... that's my huntch
[02:11:55] <stormbytes> well didn't try te whole html.. just the body
[02:12:05] *** Iravan has quit IRC
[02:12:19] *** SargoDarya has joined #angularjs
[02:12:19] *** s00pcan_ has quit IRC
[02:12:52] *** brwr has joined #angularjs
[02:13:06] *** ProLoser has quit IRC
[02:13:23] *** rtpg has joined #angularjs
[02:13:25] *** fedenunez has quit IRC
[02:14:07] *** rtpg has quit IRC
[02:14:15] *** rtpg has joined #angularjs
[02:14:38] *** agrajag42 has quit IRC
[02:14:54] *** mikerrrrrr has quit IRC
[02:15:06] *** mikerrrrrr has joined #angularjs
[02:16:27] *** Iravan has joined #angularjs
[02:16:29] *** seriema has joined #angularjs
[02:17:15] *** mikeyeee has joined #angularjs
[02:17:45] *** mikerrrrrr has quit IRC
[02:20:14] *** johnstorey has quit IRC
[02:20:18] *** pelll0 has joined #angularjs
[02:20:32] *** nahoskins1 has quit IRC
[02:20:33] *** JacobJohansen has quit IRC
[02:21:17] *** pell0 has quit IRC
[02:21:18] *** motionman has quit IRC
[02:21:26] *** snurfery has joined #angularjs
[02:21:34] *** seriema has quit IRC
[02:21:39] *** hell_razer has quit IRC
[02:21:51] <snurfery> sup yall
[02:22:00] *** cthrax has joined #angularjs
[02:22:19] *** whiteboo_ has quit IRC
[02:24:08] *** pehlert has joined #angularjs
[02:24:15] *** ron_frown has quit IRC
[02:24:22] *** ome has joined #angularjs
[02:25:15] *** Odceed has quit IRC
[02:25:21] *** despai has quit IRC
[02:25:51] *** morenoh149 has quit IRC
[02:27:44] *** Oceed has joined #angularjs
[02:30:20] <dllama> snurfery: cant seem to stay away can u? lol
[02:30:31] <snurfery> no way, love this place
[02:30:35] <dllama> ha
[02:30:41] *** whitebook has joined #angularjs
[02:30:44] <snurfery> even though I'm in the back of a bus right now
[02:30:45] <dllama> well u came back just in time :D
[02:30:56] <dllama> ah
[02:31:05] <dllama> i'm still battling this stupid sig pad
[02:31:38] *** annlewis has joined #angularjs
[02:31:45] <dllama> was trying to follow what moogey suggested and exposing the signature object into view, but not dice
[02:32:50] <burzum2> what do i wrong when my content of my custome directive disappears? I've set transclude to true, the directive is not using any template but the html inside my <directive><h2>test</h2></directive> for example doesnt show up
[02:32:58] *** Oceed has quit IRC
[02:33:21] *** nycdevgirl has joined #angularjs
[02:33:23] *** SargoDarya has quit IRC
[02:33:35] *** startupality has quit IRC
[02:34:15] *** drag0nius has joined #angularjs
[02:34:32] *** nycdevgirl has quit IRC
[02:35:26] *** ytsejam has quit IRC
[02:35:46] *** freeAir__ has joined #angularjs
[02:35:53] *** annlewis has quit IRC
[02:36:14] *** joroc has joined #angularjs
[02:37:31] *** hell_razer has joined #angularjs
[02:37:45] *** ash___ has quit IRC
[02:38:16] *** motionman has joined #angularjs
[02:39:16] *** hell_razer has quit IRC
[02:39:20] *** et09 has quit IRC
[02:39:36] *** psi has joined #angularjs
[02:39:42] *** hell_razer has joined #angularjs
[02:40:21] *** freeAir__ has quit IRC
[02:40:23] *** aven1 has quit IRC
[02:41:08] *** CodeFriar has joined #angularjs
[02:41:26] *** ximenean__ has joined #angularjs
[02:41:33] *** zwacky has quit IRC
[02:41:46] <cthrax> burzum2, does your directive have a template with an ng-transclude?
[02:41:49] *** doginal has quit IRC
[02:42:08] <burzum2> cthrax, no
[02:42:14] <cthrax> then that's what
[02:42:29] <burzum2> So I can't simply put html inside the custom element and it gets rendered?
[02:42:36] <cthrax> try adding "template: "<div ng-transclude></div>" to your directive definition
[02:43:08] *** freeAir__ has joined #angularjs
[02:43:08] *** Psi|4ward has quit IRC
[02:43:28] <burzum2> cthrax <cms-page page-id="829" ng-transclude> doing this did it, thank you! I must have missed that in the documentation
[02:43:41] *** hell_razer has quit IRC
[02:44:02] *** rhp has quit IRC
[02:44:07] *** rchavik has joined #angularjs
[02:44:07] *** fedenunez has joined #angularjs
[02:44:22] *** rhp has joined #angularjs
[02:44:55] *** prbc has joined #angularjs
[02:45:21] <burzum2> is there something else missing? the html gets rendered but the scope seems to be not available now inside
[02:45:34] <burzum2> {{data | json}} doesnt output anything
[02:45:41] *** ximenean__ has quit IRC
[02:46:56] *** Suman has quit IRC
[02:47:09] *** nahoskins1 has joined #angularjs
[02:47:53] *** patrick99e99 has quit IRC
[02:48:24] *** Soxad has quit IRC
[02:48:59] *** bbankes has joined #angularjs
[02:49:02] *** terakilobyte has quit IRC
[02:49:36] *** prbc has quit IRC
[02:49:56] *** stevieg has joined #angularjs
[02:50:14] *** metasansana has joined #angularjs
[02:51:19] *** rikko has quit IRC
[02:52:17] *** Shai_Tan has quit IRC
[02:53:24] *** stevieg has quit IRC
[02:54:19] *** Reskp has joined #angularjs
[02:54:33] *** cthrax has quit IRC
[02:55:53] *** eburcat has joined #angularjs
[02:56:41] *** doug64k has left #angularjs
[02:58:46] *** PeterMetz has quit IRC
[02:59:12] *** Reskp has quit IRC
[03:00:28] *** eburcat has quit IRC
[03:00:57] *** Aerospark has joined #angularjs
[03:01:46] *** alt_qq has joined #angularjs
[03:01:52] *** cakirke has joined #angularjs
[03:02:17] *** alt_qq has quit IRC
[03:02:37] *** alt_qq has joined #angularjs
[03:04:46] *** kavita has joined #angularjs
[03:05:58] *** Aerospark has quit IRC
[03:06:18] *** aven1 has joined #angularjs
[03:06:54] *** cthrax has joined #angularjs
[03:07:37] <kakashiA1> a factory and a service are both singletons but the main difference is that the function that you pass to the factory will only return the result (return value) of that function
[03:07:56] *** tschunde_ has joined #angularjs
[03:07:57] <kakashiA1> the service will return a new instance of that function that you passed to the service
[03:08:12] <kakashiA1> but I dont know when and why I should use what?
[03:08:42] *** joroc has quit IRC
[03:09:27] *** kavita has quit IRC
[03:09:49] *** ChadStrat has joined #angularjs
[03:11:51] *** boxmein has quit IRC
[03:11:54] *** tschundeee has quit IRC
[03:11:57] *** pehlert has quit IRC
[03:15:10] *** maikowblue has quit IRC
[03:15:14] *** TeddyMurray has quit IRC
[03:15:42] <toastynerd> I guess I should better explain that. It looks like the docs used to contain information on passing data from an isolate scope to the parent scope but I can no longer find the information.
[03:16:55] *** Oceed has joined #angularjs
[03:17:27] *** Ansikt has joined #angularjs
[03:17:32] *** seriema has joined #angularjs
[03:17:52] *** richardbkr has quit IRC
[03:18:12] *** snurfery has quit IRC
[03:18:42] *** g33k5z has joined #angularjs
[03:19:54] *** jaredwilli has joined #angularjs
[03:20:19] *** cthrax has quit IRC
[03:20:20] *** eburcat has joined #angularjs
[03:21:32] *** nahoskins1 has quit IRC
[03:22:24] *** seriema has quit IRC
[03:24:52] *** Oceed has quit IRC
[03:24:55] *** eburcat has quit IRC
[03:25:13] *** raibutera has joined #angularjs
[03:25:29] *** earthquake has joined #angularjs
[03:25:45] *** ChadStrat has quit IRC
[03:25:45] *** raibutera has quit IRC
[03:27:12] *** frkout has joined #angularjs
[03:27:52] *** dc_ has quit IRC
[03:29:14] *** TheAceOfHearts has quit IRC
[03:30:06] *** frkout has quit IRC
[03:30:33] *** frkout has joined #angularjs
[03:30:34] *** BahamutWC|Laptop has joined #angularjs
[03:30:55] *** SargoDarya has joined #angularjs
[03:31:33] *** annlewis has joined #angularjs
[03:31:34] *** freeAir__ has quit IRC
[03:31:57] *** nahoskins1 has joined #angularjs
[03:32:31] *** BobbieBarker_ has joined #angularjs
[03:32:47] *** TheAceOfHearts has joined #angularjs
[03:33:21] *** cotko has quit IRC
[03:33:23] *** dc_ has joined #angularjs
[03:34:26] *** whitebook has quit IRC
[03:35:06] *** whitebook has joined #angularjs
[03:35:53] *** freeAir__ has joined #angularjs
[03:36:16] *** joroc has joined #angularjs
[03:36:24] *** nemothekid has joined #angularjs
[03:36:32] *** annlewis has quit IRC
[03:36:44] *** Ansikt has quit IRC
[03:37:14] *** mzabriskie has quit IRC
[03:37:20] <dllama> need some feedback guys, in my app, during the signup process i'm capturing about 50% of the data thats needed for an active account. then when a user logs in, they can add services to their account, however, those services require data thats missing from the initial signup. i have a boolean flag on the user scope "registration_complete". do u guys think its a good/bad idea to do an if check against it everytime i load services/new for
[03:37:49] *** Iravan has quit IRC
[03:37:59] *** Iravan has joined #angularjs
[03:39:02] *** aven1 has quit IRC
[03:40:11] *** shinnya has joined #angularjs
[03:40:48] *** CodeFriar has quit IRC
[03:41:17] *** asher^ has quit IRC
[03:41:33] *** tschunde_ has quit IRC
[03:42:01] *** asher^ has joined #angularjs
[03:42:09] *** tschundeee has joined #angularjs
[03:42:11] *** ximenean__ has joined #angularjs
[03:43:48] *** sgen__ has quit IRC
[03:43:59] *** Milkweed has quit IRC
[03:44:05] *** asher^ has quit IRC
[03:44:56] *** scythe__ has quit IRC
[03:44:57] *** sgen__ has joined #angularjs
[03:45:15] *** Cronoh has joined #angularjs
[03:45:16] *** earthquake has quit IRC
[03:45:32] *** AlSquire has quit IRC
[03:45:41] *** prbc has joined #angularjs
[03:45:52] *** jaredwilli has quit IRC
[03:46:00] *** freeAir__ has quit IRC
[03:46:28] <christo_m> okay so im using the Yeoman Angular fullstack generator, and i just installed jquery-ui with bower install jquery-ui, but grunt is not automatically linking it into my index file? how do i add new components with bower?
[03:46:29] *** ximenean__ has quit IRC
[03:46:34] *** tschundeee has quit IRC
[03:47:27] *** kapil__ has joined #angularjs
[03:48:15] <christo_m> ohi guess i had to do --save
[03:48:52] *** kavita has joined #angularjs
[03:50:17] *** prbc has quit IRC
[03:50:18] *** dsdeiz has joined #angularjs
[03:50:28] <christo_m> not installing the css though
[03:50:40] *** shredjs has joined #angularjs
[03:50:54] <shredjs> hey you guys got any tip on using socket.io with angular ?
[03:50:58] *** Saltuk has joined #angularjs
[03:51:07] *** SargoDarya has quit IRC
[03:52:07] *** TheAceOfHearts1 has joined #angularjs
[03:54:20] *** yoonchee has joined #angularjs
[03:54:53] <yoonchee> Is there a way to limit list of retrieved items at the ReST api level instead of using filter?
[03:54:57] *** TheAceOfHearts has quit IRC
[03:55:08] *** dsdeiz has quit IRC
[03:55:14] *** Reskp has joined #angularjs
[03:56:32] *** Oceed has joined #angularjs
[03:57:27] *** TheAceOfHearts1 has quit IRC
[03:57:39] *** ProLoser has joined #angularjs
[03:57:54] *** tschundeee has joined #angularjs
[03:58:29] *** loverajoel has joined #angularjs
[03:59:00] *** Aerospark has joined #angularjs
[03:59:36] *** PeterMetz has joined #angularjs
[03:59:45] *** lemur has joined #angularjs
[03:59:54] *** uris77 has joined #angularjs
[04:00:02] *** Reskp has quit IRC
[04:00:29] *** TommyO has quit IRC
[04:01:16] *** raibutera has joined #angularjs
[04:01:38] *** RedOrangeZ has quit IRC
[04:01:54] *** renlo has quit IRC
[04:02:52] *** loverajoel has quit IRC
[04:04:28] *** PeterMetz has quit IRC
[04:05:31] *** Aerospark has quit IRC
[04:06:21] *** aven1 has joined #angularjs
[04:06:24] *** cakirke has quit IRC
[04:06:57] *** nemothekid has quit IRC
[04:07:19] *** BobbieBarker_ has quit IRC
[04:08:20] *** pehlert has joined #angularjs
[04:08:54] *** joroc has quit IRC
[04:09:08] *** drag0nius has quit IRC
[04:09:12] *** Aerospark has joined #angularjs
[04:09:32] *** xdissent has quit IRC
[04:10:39] *** adamsilver has joined #angularjs
[04:11:11] <adamsilver> how can i send the auth token with each request header?
[04:11:14] *** BahamutWC|Laptop has quit IRC
[04:11:41] <dllama> adamsilver: httpintercept should do that
[04:12:14] *** torartc has quit IRC
[04:12:40] *** torartc has joined #angularjs
[04:12:53] *** terakilobyte has joined #angularjs
[04:12:59] <dllama> i guess it depends on what kind of backend and authentication system you're using, but i use ng-token-auth
[04:13:01] *** pehlert has quit IRC
[04:13:05] <dllama> its build to work with rails/devise
[04:13:48] <adamsilver> dllama: thanks i'll try the method mentioned in the link
[04:15:36] *** Seus has quit IRC
[04:16:10] <adamsilver> I wonder if it's safe to store the token in cookie to not force the user to login if he restarts or refreshes his browser?
[04:16:14] *** Hackwar1 has joined #angularjs
[04:18:06] *** ree_ is now known as ree
[04:18:30] *** seriema has joined #angularjs
[04:18:42] *** Hackwar has quit IRC
[04:19:11] *** torartc has quit IRC
[04:19:12] *** camnora has joined #angularjs
[04:19:26] *** tandy_ has quit IRC
[04:19:37] *** torartc has joined #angularjs
[04:20:02] *** nemothekid has joined #angularjs
[04:20:03] *** iribarne has joined #angularjs
[04:20:21] *** yoonchee has quit IRC
[04:20:27] *** TeddyMurray has joined #angularjs
[04:21:13] *** tandy has joined #angularjs
[04:23:18] *** nahoskins1 has quit IRC
[04:23:31] *** seriema has quit IRC
[04:23:41] *** michaelSharpe has joined #angularjs
[04:24:17] *** torartc has quit IRC
[04:25:22] *** sgen__ has quit IRC
[04:26:24] *** Aerospark has quit IRC
[04:27:07] *** MuffinMan` has quit IRC
[04:27:30] *** Aerospark has joined #angularjs
[04:28:29] *** rmcdaniel has joined #angularjs
[04:28:37] *** kavita has quit IRC
[04:28:39] *** it0a has joined #angularjs
[04:29:34] *** pzuraq has quit IRC
[04:31:15] *** whiteboo_ has joined #angularjs
[04:31:46] *** annlewis has joined #angularjs
[04:33:09] *** whitebook has quit IRC
[04:33:15] *** camnora has quit IRC
[04:33:42] *** tschundeee has quit IRC
[04:34:14] *** tschundeee has joined #angularjs
[04:34:57] *** nemothekid has quit IRC
[04:34:57] *** eago has quit IRC
[04:35:06] *** camnora has joined #angularjs
[04:35:08] *** nemothekid has joined #angularjs
[04:35:40] *** AlexZ has joined #angularjs
[04:35:56] *** Aerospark has quit IRC
[04:36:04] *** Left_Turn has quit IRC
[04:36:20] *** joroc has joined #angularjs
[04:36:42] *** gunn has joined #angularjs
[04:36:46] *** annlewis has quit IRC
[04:37:58] *** freeAir__ has joined #angularjs
[04:37:58] *** JacobJohansen has joined #angularjs
[04:38:18] *** aven1 has quit IRC
[04:38:23] *** jrist has quit IRC
[04:39:15] *** tschundeee has quit IRC
[04:39:25] *** Aerospark has joined #angularjs
[04:39:42] *** Zeioth has quit IRC
[04:39:52] *** harish has joined #angularjs
[04:40:57] *** rickhanlonii has joined #angularjs
[04:40:57] *** cthrax has joined #angularjs
[04:41:13] *** alexa has joined #angularjs
[04:41:29] *** dbvc has joined #angularjs
[04:41:34] *** alexa is now known as Guest81501
[04:41:40] *** KushS has joined #angularjs
[04:42:16] *** michaelSharpe has quit IRC
[04:42:37] *** uris77 has quit IRC
[04:42:51] *** ximenean__ has joined #angularjs
[04:44:28] *** patrick99e99 has joined #angularjs
[04:44:32] *** kavita has joined #angularjs
[04:44:51] *** kreosNoel is now known as kreos
[04:45:17] *** rickhanlonii has quit IRC
[04:45:24] *** michaelSharpe has joined #angularjs
[04:45:28] *** rmcdaniel has quit IRC
[04:45:41] *** gunn has quit IRC
[04:46:58] *** gunn has joined #angularjs
[04:47:22] *** ximenean__ has quit IRC
[04:48:44] *** SargoDarya has joined #angularjs
[04:49:20] *** cthrax has quit IRC
[04:49:24] *** patrick99e99 has quit IRC
[04:49:49] <freeAir__> i want to make my check unique directive resuable. how to do that?
[04:50:16] *** atomi has joined #angularjs
[04:51:50] *** MistahKurtz has quit IRC
[04:52:26] *** chrisshattuck has joined #angularjs
[04:52:45] *** kavita has quit IRC
[04:52:53] *** SargoDarya has quit IRC
[04:54:11] *** cthrax has joined #angularjs
[04:54:26] *** dbvc has quit IRC
[04:55:37] *** Browser has quit IRC
[04:56:01] *** Reskp has joined #angularjs
[04:56:22] *** nemothekid has quit IRC
[04:59:12] *** Laserbeak has quit IRC
[04:59:43] *** frkout_ has joined #angularjs
[05:00:37] *** PeterMetz has joined #angularjs
[05:00:50] *** Reskp has quit IRC
[05:01:12] *** bmac has joined #angularjs
[05:01:57] *** nemothekid has joined #angularjs
[05:02:14] *** prbc has joined #angularjs
[05:02:44] *** theotherguy has joined #angularjs
[05:02:47] *** frkout has quit IRC
[05:04:09] *** theother_ has joined #angularjs
[05:04:47] *** tschundeee has joined #angularjs
[05:04:50] *** prbc has quit IRC
[05:05:17] *** PeterMetz has quit IRC
[05:05:56] *** ctanga has joined #angularjs
[05:06:20] *** aven1 has joined #angularjs
[05:06:32] *** nemothekid has quit IRC
[05:07:44] *** theotherguy has quit IRC
[05:08:44] *** mliq has joined #angularjs
[05:09:20] *** tschundeee has quit IRC
[05:09:25] *** joroc has quit IRC
[05:10:14] *** ctanga has quit IRC
[05:11:38] *** tandy has quit IRC
[05:11:59] *** mliqu has quit IRC
[05:14:07] *** TeddyMurray has quit IRC
[05:15:28] <shredjs> toastynerd: i understand well apply
[05:16:12] <dllama> adamsilver: pretty sure most auth systems do that
[05:16:27] <dllama> ng-token-auth sets a cookie called auth_headers
[05:16:32] *** sahbeewah_ has quit IRC
[05:16:37] <dllama> and thats where it gets the access-token from
[05:19:32] *** seriema has joined #angularjs
[05:19:48] *** Bade has joined #angularjs
[05:19:51] *** AlexZ has quit IRC
[05:20:12] *** g33k5z has quit IRC
[05:20:23] *** terakilobyte has quit IRC
[05:21:25] *** rchavik has quit IRC
[05:21:29] *** terakilobyte has joined #angularjs
[05:21:35] *** davek has joined #angularjs
[05:21:50] *** ome has quit IRC
[05:22:19] *** kirfu has joined #angularjs
[05:22:55] *** aurumzx has quit IRC
[05:23:14] *** evok_ has joined #angularjs
[05:23:24] *** aurumzx has joined #angularjs
[05:24:11] *** Behnam has joined #angularjs
[05:24:21] <Behnam> wuz up
[05:24:28] *** seriema has quit IRC
[05:24:51] *** pehlert has joined #angularjs
[05:25:02] *** Behnam has quit IRC
[05:25:21] *** nycdevgirl has joined #angularjs
[05:26:29] *** IvanoffC_ has quit IRC
[05:26:31] *** kirfu has quit IRC
[05:26:33] *** KushS has quit IRC
[05:26:57] *** IvanoffCSI has joined #angularjs
[05:27:59] *** chrisshattuck has quit IRC
[05:28:14] *** z3n has quit IRC
[05:28:15] *** chrisshattuck has joined #angularjs
[05:28:22] *** sahbeewah_ has joined #angularjs
[05:28:33] *** tschundeee has joined #angularjs
[05:29:29] *** pehlert has quit IRC
[05:30:57] *** gunn has quit IRC
[05:31:25] *** chrisbirk has joined #angularjs
[05:32:29] *** rikko has joined #angularjs
[05:32:39] *** angelathewebdev has joined #angularjs
[05:32:59] *** angelathewebdev is now known as angelazou_
[05:33:32] *** tschundeee has quit IRC
[05:33:34] *** angelazou has joined #angularjs
[05:34:20] <angelazou> I am using e.preventDefault() in $locationChangeStart event, but the page is still rendered for the new route
[05:35:58] *** toastynerd has quit IRC
[05:36:15] *** joroc has joined #angularjs
[05:39:24] *** boneskull has quit IRC
[05:39:49] *** aven1 has quit IRC
[05:39:54] *** boneskull has joined #angularjs
[05:41:13] *** ProLoser|Mac has joined #angularjs
[05:41:14] *** terakilobyte has quit IRC
[05:41:14] *** bbankes_ has joined #angularjs
[05:41:15] *** scythe__ has joined #angularjs
[05:42:49] *** michaelSharpe has quit IRC
[05:42:49] *** tandy has joined #angularjs
[05:43:06] *** rikko has quit IRC
[05:43:37] *** bbankes has quit IRC
[05:43:37] *** ximenean__ has joined #angularjs
[05:43:42] *** gunn has joined #angularjs
[05:46:17] *** camnora has quit IRC
[05:47:19] *** boneskull has quit IRC
[05:47:57] *** boneskull has joined #angularjs
[05:48:14] *** ximenean__ has quit IRC
[05:48:27] *** burzum has joined #angularjs
[05:48:48] *** angelazou has quit IRC
[05:48:56] *** terakilobyte has joined #angularjs
[05:49:50] *** burzum2 has quit IRC
[05:50:15] *** SargoDarya has joined #angularjs
[05:50:34] *** dsdeiz has joined #angularjs
[05:50:53] *** proteneer has joined #angularjs
[05:51:43] *** asher^ has joined #angularjs
[05:53:24] *** blackkbot has joined #angularjs
[05:55:06] *** kcm has quit IRC
[05:55:08] *** dsdeiz has quit IRC
[05:56:14] *** kcm has joined #angularjs
[05:56:53] *** Reskp has joined #angularjs
[05:58:05] *** ron_frown has joined #angularjs
[05:59:05] *** Sadin has quit IRC
[05:59:11] *** Aerospark has quit IRC
[05:59:44] *** doug64k has joined #angularjs
[06:01:00] *** Reskp has quit IRC
[06:01:27] *** PeterMetz has joined #angularjs
[06:03:12] *** it0a has quit IRC
[06:05:06] *** jMyles has joined #angularjs
[06:05:57] *** PeterMetz has quit IRC
[06:06:29] *** chrisshattuck has quit IRC
[06:06:45] *** aven1 has joined #angularjs
[06:07:16] *** jaydubya has quit IRC
[06:08:01] *** jaydubya has joined #angularjs
[06:09:36] *** camnora has joined #angularjs
[06:09:49] *** joroc has quit IRC
[06:10:19] *** iribarne has quit IRC
[06:11:12] *** Aerospark has joined #angularjs
[06:11:17] *** SargoDarya has quit IRC
[06:11:58] *** ProLoser|Mac has quit IRC
[06:12:46] *** jaydubya has quit IRC
[06:13:18] *** ProLoser|Mac has joined #angularjs
[06:13:59] *** oniijin has quit IRC
[06:16:35] *** raibutera has quit IRC
[06:17:19] *** Aerospark has quit IRC
[06:17:23] *** frem has quit IRC
[06:17:44] *** shinnya has quit IRC
[06:18:46] *** Aliks has quit IRC
[06:19:23] *** Aliks has joined #angularjs
[06:20:07] *** JacobJohansen has quit IRC
[06:20:35] *** seriema has joined #angularjs
[06:23:00] *** scythe__ has quit IRC
[06:23:44] *** Aliks has quit IRC
[06:24:13] *** nahoskins has joined #angularjs
[06:24:17] *** pzuraq has joined #angularjs
[06:24:34] *** Aerospark has joined #angularjs
[06:25:14] *** seriema has quit IRC
[06:25:51] *** pehlert has joined #angularjs
[06:25:55] *** camnora has quit IRC
[06:26:20] *** kroogs has quit IRC
[06:28:38] *** tschundeee has joined #angularjs
[06:28:51] *** proteneer has quit IRC
[06:29:15] *** mikeyeee has quit IRC
[06:29:29] *** daviesgeek has quit IRC
[06:30:39] *** pehlert has quit IRC
[06:31:23] *** whitebook has joined #angularjs
[06:31:38] *** kreos has quit IRC
[06:31:59] *** proteneer has joined #angularjs
[06:33:09] *** cthrax has quit IRC
[06:33:19] *** tschundeee has quit IRC
[06:33:40] *** whiteboo_ has quit IRC
[06:34:06] *** paul_ has joined #angularjs
[06:36:23] *** joroc has joined #angularjs
[06:38:26] *** Aerospark has quit IRC
[06:39:15] *** aven1 has quit IRC
[06:39:28] *** theother_ has quit IRC
[06:39:48] *** kroogs has joined #angularjs
[06:40:19] *** cilkay has quit IRC
[06:40:31] *** proteneer has quit IRC
[06:42:16] *** Guest15840 has joined #angularjs
[06:42:37] *** blackkbot has quit IRC
[06:42:51] *** Guest15840 is now known as blackkbot
[06:43:05] *** daviesgeek has joined #angularjs
[06:43:14] *** hawa has joined #angularjs
[06:43:46] <hawa> what would be the best approach to do server side call only when the form is valid?
[06:44:03] *** knownasilya has quit IRC
[06:44:08] *** Iravan has quit IRC
[06:44:28] *** ximenean__ has joined #angularjs
[06:45:51] *** jMyles has quit IRC
[06:46:00] *** Iravan_ has joined #angularjs
[06:47:20] *** Aliks has joined #angularjs
[06:48:37] *** Camnora has joined #angularjs
[06:48:50] *** ximenean__ has quit IRC
[06:49:19] *** Aliks has quit IRC
[06:49:38] *** jMyles has joined #angularjs
[06:49:41] *** Iravan_ has quit IRC
[06:50:42] *** shane has joined #angularjs
[06:50:57] <shane> из русских есть кто?
[06:51:05] *** shane is now known as Guest76681
[06:51:25] <Guest76681> ?
[06:51:41] <Guest76681> .
[06:51:46] *** jMyles has quit IRC
[06:51:50] <blackkbot> hawa the best approach would be to setup the client to only submit the form when the form is valid
[06:52:08] *** Guest76681 has quit IRC
[06:52:27] <hawa> blackbot, how do i do that???
[06:52:43] *** lemur_ has joined #angularjs
[06:53:02] <hawa> I dont want to do ng-disable. I want to give feedback to the user which field is wrong
[06:53:13] *** rchavik has joined #angularjs
[06:53:39] *** jMyles has joined #angularjs
[06:53:41] <blackkbot> its not really angular its more of a general javascript/html/web dev question fwiw
[06:53:43] *** Kesarr__ has quit IRC
[06:53:54] *** Kesarr__ has joined #angularjs
[06:54:18] *** lemur has quit IRC
[06:54:31] *** Kesarr__ is now known as Kesarr
[06:55:05] *** charlenopires has joined #angularjs
[06:56:24] *** jMyles has quit IRC
[06:57:36] *** Reskp has joined #angularjs
[06:58:06] *** jMyles has joined #angularjs
[06:59:32] *** eago has joined #angularjs
[07:00:07] *** advy has joined #angularjs
[07:02:13] *** Reskp has quit IRC
[07:02:23] *** VeeWee has joined #angularjs
[07:02:54] *** cilkay has joined #angularjs
[07:03:30] *** lemur_ has quit IRC
[07:04:13] *** lemur has joined #angularjs
[07:05:39] *** nemothekid has joined #angularjs
[07:05:53] *** Shrooms has quit IRC
[07:06:14] *** jMyles has quit IRC
[07:06:23] *** aven1 has joined #angularjs
[07:06:59] *** doginal has joined #angularjs
[07:07:32] *** mmun has joined #angularjs
[07:08:03] *** mmun has left #angularjs
[07:08:34] *** lemur has quit IRC
[07:08:58] *** SargoDarya has joined #angularjs
[07:09:24] *** joroc has quit IRC
[07:10:58] *** IvailoStoianov has joined #angularjs
[07:11:36] <Sickness[]> arg
[07:11:47] <Sickness[]> no matter what I try I can't set custom headers
[07:12:12] <Sickness[]> I've tried restangulars setDefaultHeaders and $http.defaults.headers.common.Authorization
[07:12:19] <Sickness[]> its not sending the headers
[07:12:34] *** bmac has quit IRC
[07:13:26] *** ProLoser|Mac has quit IRC
[07:13:42] *** GutaFish has joined #angularjs
[07:14:31] *** ProLoser|Mac has joined #angularjs
[07:15:22] *** Ix-xitan has quit IRC
[07:16:03] *** charlenopires has quit IRC
[07:20:33] *** alex_zhou has joined #angularjs
[07:21:12] *** snurfery has joined #angularjs
[07:21:36] *** seriema has joined #angularjs
[07:23:16] *** gladely has quit IRC
[07:23:34] *** bmac has joined #angularjs
[07:24:35] *** asher^ has quit IRC
[07:24:56] *** rchavik has quit IRC
[07:25:28] *** Shrooms has joined #angularjs
[07:25:29] *** Shrooms has joined #angularjs
[07:25:57] *** Reskp has joined #angularjs
[07:26:22] *** seriema has quit IRC
[07:26:38] *** pehlert has joined #angularjs
[07:27:04] *** GiantEnemyCrab has quit IRC
[07:27:04] *** fedenunez has quit IRC
[07:27:10] *** fedenunez1 has joined #angularjs
[07:27:40] *** fedenunez has joined #angularjs
[07:27:49] *** snurfery has quit IRC
[07:28:12] *** noisewaterphd has quit IRC
[07:28:23] *** fedenunez1 has joined #angularjs
[07:28:33] *** tschundeee has joined #angularjs
[07:29:21] *** SargoDarya has quit IRC
[07:29:35] *** ron_frown has quit IRC
[07:29:50] *** kp666 has joined #angularjs
[07:29:50] *** UniBot-test has joined #angularjs
[07:29:54] *** BahamutWC|Laptop has joined #angularjs
[07:30:25] *** ximenean__ has joined #angularjs
[07:30:38] *** UniBot-test has quit IRC
[07:30:42] *** lemur has joined #angularjs
[07:31:33] *** pehlert has quit IRC
[07:32:08] *** UniBot-test has joined #angularjs
[07:32:20] *** fedenunez has quit IRC
[07:32:56] *** fedenunez1 has quit IRC
[07:33:02] *** Reskp has quit IRC
[07:33:03] *** UniBot-test has joined #angularjs
[07:33:28] *** tschundeee has quit IRC
[07:33:31] *** UniBot-test has quit IRC
[07:35:44] *** iamaregee2 has joined #angularjs
[07:35:57] *** dantheta has joined #angularjs
[07:36:18] *** joroc has joined #angularjs
[07:37:18] *** bmac has quit IRC
[07:37:33] *** cacts has quit IRC
[07:37:41] *** UniBot-test has joined #angularjs
[07:38:23] *** UniBot-test has quit IRC
[07:38:36] <sabrehagen> i'm having real trouble with mongoose's populate functionality. i have a document with fields that i have populated on the server. i then make some changes to the document in my angular app, and want to save it back to the database.
[07:38:37] *** aven1 has quit IRC
[07:38:37] <sabrehagen> whenever i save the document, the _ids of the referenced documents that were populated all change, i.e. the originals aren't kept, even though angular sends back the correct _ids to the server. how do i maintain my references?
[07:38:52] *** UniBot-test has joined #angularjs
[07:39:46] *** UniBot-test has quit IRC
[07:40:12] *** davek has quit IRC
[07:40:19] *** UniBot-test has joined #angularjs
[07:41:09] *** bmac has joined #angularjs
[07:42:17] *** sgen has joined #angularjs
[07:43:40] *** UniBot-test has quit IRC
[07:44:20] *** bmac has quit IRC
[07:44:53] *** UniBot-test has joined #angularjs
[07:46:01] *** e0ipso|away is now known as e0ipso
[07:47:06] *** hawa has quit IRC
[07:48:25] *** e0ipso is now known as e0ipso|away
[07:48:39] *** e0ipso|away is now known as e0ipso
[07:51:17] *** UniBot-test has quit IRC
[07:53:33] <dllama> anyone awake here thats familiar with restangular?
[07:53:57] <dllama> i'm doing a customPUT to a member route, and it seems to be sending the duplicating the data in the payload
[07:54:04] *** TheAceOfHearts has joined #angularjs
[07:54:27] *** {DV8} has quit IRC
[07:55:51] *** jaydubya has joined #angularjs
[07:56:05] *** ahmetkapikiran has quit IRC
[07:56:17] *** UniBot-test has joined #angularjs
[07:56:22] *** davek has joined #angularjs
[07:56:23] *** davek has joined #angularjs
[07:59:18] *** GiantEnemyCrab has joined #angularjs
[08:01:15] *** jaydubya has quit IRC
[08:02:53] *** UniBot-test has quit IRC
[08:03:28] *** UniBot-test has joined #angularjs
[08:04:36] *** UniBot-test has joined #angularjs
[08:05:21] *** jtimon has joined #angularjs
[08:05:24] *** UniBot-test has joined #angularjs
[08:06:01] *** frkout_ has quit IRC
[08:06:19] *** aven1 has joined #angularjs
[08:06:28] *** frkout has joined #angularjs
[08:07:22] *** caitp- has quit IRC
[08:09:20] *** joroc has quit IRC
[08:10:06] *** chrisbirk has quit IRC
[08:10:47] *** UniBot-test has quit IRC
[08:11:03] *** UniBot-test has joined #angularjs
[08:12:30] *** UniBot-test has quit IRC
[08:12:46] *** UniBot-test has joined #angularjs
[08:13:15] *** UniBot-test has joined #angularjs
[08:14:57] *** sgen has quit IRC
[08:18:28] *** iamaregee2 has quit IRC
[08:18:59] *** mylord has joined #angularjs
[08:19:08] *** b1rkh0ff has quit IRC
[08:21:57] *** xdissent has joined #angularjs
[08:22:38] *** seriema has joined #angularjs
[08:23:00] *** UniBot-test has quit IRC
[08:23:18] *** UniBot-test has joined #angularjs
[08:24:08] *** gladely has joined #angularjs
[08:24:41] *** freeAir__ has quit IRC
[08:24:46] *** UniBot has joined #angularjs
[08:24:48] *** b1rkh0ff has joined #angularjs
[08:25:21] *** thomasvs has quit IRC
[08:26:18] *** theotherguy has joined #angularjs
[08:26:40] *** sahbeewah_ has quit IRC
[08:26:42] *** SargoDarya has joined #angularjs
[08:26:53] *** seriema has quit IRC
[08:27:23] *** pehlert has joined #angularjs
[08:28:34] *** gladely has quit IRC
[08:28:35] *** tschundeee has joined #angularjs
[08:30:20] *** tschunde_ has joined #angularjs
[08:30:40] *** charuru has quit IRC
[08:31:04] *** SargoDarya has quit IRC
[08:32:20] *** pehlert has quit IRC
[08:32:29] *** whiteboo_ has joined #angularjs
[08:33:38] *** tschundeee has quit IRC
[08:34:08] *** whitebook has quit IRC
[08:34:30] *** one_zero has quit IRC
[08:34:52] *** boneskull has quit IRC
[08:34:57] *** eburcat has joined #angularjs
[08:34:59] *** tschunde_ has quit IRC
[08:35:54] *** terakilobyte has quit IRC
[08:36:18] *** thomasvs has joined #angularjs
[08:36:20] *** joroc has joined #angularjs
[08:36:26] *** thomasvs has quit IRC
[08:36:26] *** thomasvs has joined #angularjs
[08:36:40] *** doginal has quit IRC
[08:37:51] *** sahbeewah_ has joined #angularjs
[08:39:19] *** aven1 has quit IRC
[08:39:29] *** Aerospark has joined #angularjs
[08:40:36] *** verbgarden has quit IRC
[08:41:11] *** boneskull has joined #angularjs
[08:42:16] *** cswelin has quit IRC
[08:43:08] *** thomasvs has quit IRC
[08:44:31] *** Aerospark has quit IRC
[08:44:39] *** thomasvs has joined #angularjs
[08:44:39] *** thomasvs has joined #angularjs
[08:46:02] *** Aerospark has joined #angularjs
[08:47:10] *** nycdevgirl has quit IRC
[08:48:50] *** cswelin has joined #angularjs
[08:49:59] *** soee has joined #angularjs
[08:50:15] *** IvailoStoianov_ has joined #angularjs
[08:50:31] *** sss2500 has joined #angularjs
[08:50:51] *** IvailoStoianov has quit IRC
[08:51:14] *** IvailoStoianov_ is now known as IvailoStoianov
[08:51:38] *** Aerospark has quit IRC
[08:52:00] *** thomasvs has quit IRC
[08:52:08] *** jtimon has quit IRC
[08:52:42] *** Ajans has joined #angularjs
[08:53:34] *** kolyaflash has quit IRC
[08:54:04] *** Aerospark has joined #angularjs
[08:54:12] *** larsam has quit IRC
[08:54:16] *** kolyaflash has joined #angularjs
[08:54:58] *** paul_ has quit IRC
[08:54:58] *** tarnus has quit IRC
[08:55:25] *** metasansana has quit IRC
[08:55:54] *** Aerospark has quit IRC
[08:56:43] *** thomasvs has joined #angularjs
[08:56:45] *** thomasvs has joined #angularjs
[08:57:39] *** paul_ has joined #angularjs
[09:00:57] *** Guest15840 has joined #angularjs
[09:01:04] *** blackkbot is now known as Guest25511
[09:01:04] *** Guest15840 is now known as blackkbot
[09:01:31] *** nahoskins has quit IRC
[09:03:29] *** UniBot-test has quit IRC
[09:04:22] <ProLoser> ProLoser++
[09:04:22] *** UniBot-test has joined #angularjs
[09:04:25] *** adrianto has joined #angularjs
[09:04:26] <ProLoser> ProLoser++
[09:04:38] *** cristatus has joined #angularjs
[09:06:02] *** sressot has quit IRC
[09:06:20] *** aven1 has joined #angularjs
[09:06:45] *** pspfolio has joined #angularjs
[09:07:24] *** gbanis has joined #angularjs
[09:08:24] *** larsam has joined #angularjs
[09:08:58] *** jacuqesdancona has joined #angularjs
[09:09:43] *** joroc has quit IRC
[09:09:54] *** adrianto has quit IRC
[09:10:14] *** PeterMetz has joined #angularjs
[09:10:52] *** sressot has joined #angularjs
[09:12:04] *** UniBot-test has quit IRC
[09:12:08] *** thomasreggi has quit IRC
[09:12:16] *** thomasvs has quit IRC
[09:12:31] *** UniBot-test has joined #angularjs
[09:12:36] <ProLoser> ProLoser++
[09:14:45] *** shinnya has joined #angularjs
[09:15:43] <ProLoser|Mac> hallo
[09:15:45] <ProLoser|Mac> need some js help
[09:15:57] *** pell0 has joined #angularjs
[09:16:49] *** lolmaus has quit IRC
[09:17:20] *** UniBot-test has quit IRC
[09:17:32] *** pelll0 has quit IRC
[09:18:42] *** paul_ has quit IRC
[09:21:21] *** alexa has joined #angularjs
[09:21:27] *** tangorri has joined #angularjs
[09:21:32] *** Guest81501 has quit IRC
[09:21:44] *** alexa is now known as Guest2961
[09:22:01] *** _45kb has joined #angularjs
[09:22:08] *** Saltuk has quit IRC
[09:23:44] *** seriema has joined #angularjs
[09:23:56] *** enaqx has quit IRC
[09:24:00] *** thomasvs has joined #angularjs
[09:24:00] *** thomasvs has joined #angularjs
[09:25:19] *** gladely has joined #angularjs
[09:28:11] *** pehlert has joined #angularjs
[09:28:18] *** SargoDarya has joined #angularjs
[09:28:37] *** tschundeee has joined #angularjs
[09:28:39] *** seriema has quit IRC
[09:29:17] *** Nivag has quit IRC
[09:30:18] *** Nivag has joined #angularjs
[09:30:28] *** AciD`` has joined #angularjs
[09:30:38] *** thomasvs has quit IRC
[09:31:06] <tangorri> jour
[09:31:16] *** ycodr has quit IRC
[09:31:20] *** gladely has quit IRC
[09:31:35] *** cotko has joined #angularjs
[09:32:50] *** tschundeee has quit IRC
[09:33:07] *** pehlert has quit IRC
[09:33:39] *** UniBot-test has joined #angularjs
[09:34:07] *** ycodr has joined #angularjs
[09:34:10] <ProLoser|Mac> prolloos++
[09:34:11] *** UniBot-test has quit IRC
[09:34:11] <UniBot> prolloos Karma: 1
[09:34:13] <ProLoser|Mac> fuck
[09:34:16] <ProLoser|Mac> wait
[09:35:16] *** UniBot-test has joined #angularjs
[09:35:23] <ProLoser|Mac> proolloasdfasdf++
[09:35:23] <UniBot> ProLoser|Mac: you must wait an hour between giving karma
[09:35:36] *** pelll0 has joined #angularjs
[09:35:41] *** guilbep has joined #angularjs
[09:35:43] *** UniBot-test has quit IRC
[09:36:10] *** UniBot-test has joined #angularjs
[09:36:16] <ProLoser|Mac> proolloasdfasdf++
[09:36:16] <UniBot> ProLoser|Mac: you must wait an hour between giving karma
[09:36:16] <UniBot-test> ProLoser|Mac: no nick matching that was found
[09:36:23] <ProLoser|Mac> ProLoser++
[09:36:23] <UniBot> ProLoser|Mac: you must wait an hour between giving karma
[09:36:24] <UniBot-test> ProLoser|Mac: no nick matching that was found
[09:36:31] *** joroc has joined #angularjs
[09:36:32] <ProLoser|Mac> ProLoser++
[09:36:32] <UniBot> ProLoser|Mac: you must wait an hour between giving karma
[09:36:33] <UniBot-test> ProLoser|Mac: no nick matching that was found
[09:36:58] *** pell0 has quit IRC
[09:37:40] *** aven1 has quit IRC
[09:38:07] *** UniBot-test has quit IRC
[09:38:13] *** Aerospark has joined #angularjs
[09:38:23] *** UniBot-test has joined #angularjs
[09:38:39] *** Aerospark has quit IRC
[09:38:51] <ProLoser|Mac> ProLoser++
[09:38:51] <UniBot> ProLoser|Mac: you must wait an hour between giving karma
[09:38:52] <UniBot-test> proloser Karma: 2
[09:39:46] *** titanomachy has quit IRC
[09:40:26] *** UniBot-test has quit IRC
[09:43:56] *** bradleyprice has quit IRC
[09:44:46] *** jaydubya has joined #angularjs
[09:45:11] *** ycodr has quit IRC
[09:45:20] *** illume has joined #angularjs
[09:46:50] *** terakilobyte has joined #angularjs
[09:47:10] *** Guest2961 has quit IRC
[09:47:48] *** Guest2961 has joined #angularjs
[09:48:49] *** illume has quit IRC
[09:49:32] *** SargoDarya has quit IRC
[09:49:44] *** Bade has quit IRC
[09:50:06] *** paul__ has joined #angularjs
[09:50:08] *** evilaliv3 has joined #angularjs
[09:50:30] *** jaydubya has quit IRC
[09:51:02] *** ycodr has joined #angularjs
[09:51:57] *** edzez has joined #angularjs
[09:52:49] *** pen has joined #angularjs
[09:53:55] *** ximenean__ has quit IRC
[09:54:05] *** jonasliljestrand has joined #angularjs
[09:55:32] *** titanomachy has joined #angularjs
[09:56:47] *** nemothekid has quit IRC
[09:59:50] *** pell0 has joined #angularjs
[10:00:37] *** pelll0 has quit IRC
[10:01:26] *** jonasliljestrand has quit IRC
[10:02:06] *** pzuraq has quit IRC
[10:02:17] *** ximenean__ has joined #angularjs
[10:03:19] *** DannyCallaghan has joined #angularjs
[10:03:59] *** ludwik has joined #angularjs
[10:04:05] *** DannyCallaghan has joined #angularjs
[10:04:37] *** theotherguy has quit IRC
[10:04:51] *** DannyCallaghan has quit IRC
[10:05:08] *** AlSquire has joined #angularjs
[10:05:19] *** illume has joined #angularjs
[10:05:32] <ProLoser|Mac> !help
[10:05:36] <ProLoser|Mac> !about
[10:06:28] *** aven1 has joined #angularjs
[10:07:53] *** nemothekid has joined #angularjs
[10:08:00] *** Aliks has joined #angularjs
[10:08:04] *** pelll0 has joined #angularjs
[10:08:15] *** leolrrj has joined #angularjs
[10:08:26] *** bayousoft has quit IRC
[10:08:29] *** pell0 has quit IRC
[10:08:29] *** gbanis has quit IRC
[10:08:39] *** macobo has joined #angularjs
[10:09:52] *** joroc has quit IRC
[10:11:28] *** night-owl is now known as zz_night-owl
[10:11:29] *** rikko has joined #angularjs
[10:12:24] *** pspfolio has quit IRC
[10:13:18] *** NormySan has joined #angularjs
[10:14:00] *** pell0 has joined #angularjs
[10:14:56] *** pelll0 has quit IRC
[10:16:16] *** jaydubya has joined #angularjs
[10:16:20] *** nemothekid has quit IRC
[10:16:36] *** Spockz_ is now known as Spockz
[10:16:46] *** lemur has quit IRC
[10:16:49] *** dc_ has quit IRC
[10:17:03] *** theotherguy has joined #angularjs
[10:17:10] *** evilaliv3 has quit IRC
[10:17:31] *** lemur has joined #angularjs
[10:18:01] *** UniBot has quit IRC
[10:18:54] *** electronic has joined #angularjs
[10:18:59] *** startupality has joined #angularjs
[10:19:09] *** Aliks has quit IRC
[10:19:45] *** UniBot has joined #angularjs
[10:19:46] *** electronic has quit IRC
[10:19:50] *** Aliks has joined #angularjs
[10:21:15] *** davi has joined #angularjs
[10:21:15] *** davi has joined #angularjs
[10:21:43] *** lemur has quit IRC
[10:21:47] *** alpha080 has joined #angularjs
[10:24:08] *** UniBot has quit IRC
[10:28:03] *** alex_zhou has quit IRC
[10:28:04] *** shinnya has quit IRC
[10:28:05] *** Guest33 has joined #angularjs
[10:28:05] *** kkthxbye has joined #angularjs
[10:28:05] *** UniBot has joined #angularjs
[10:28:06] *** Aliks has quit IRC
[10:28:06] *** Rebirth has quit IRC
[10:28:07] *** theanxy has quit IRC
[10:28:07] *** matthew_r has quit IRC
[10:28:08] *** devhoag has joined #angularjs
[10:28:08] *** seriema has joined #angularjs
[10:28:25] *** devhoag has quit IRC
[10:28:41] *** Guest2961 has quit IRC
[10:28:41] *** jegade has quit IRC
[10:28:41] *** Zzk_ has joined #angularjs
[10:28:42] *** matthew_r_ has joined #angularjs
[10:28:42] *** matthew_r_ is now known as matthew_r
[10:29:43] *** Left_Turn has joined #angularjs
[10:29:45] *** UniBot has quit IRC
[10:29:45] *** UniBot has joined #angularjs
[10:29:47] *** IvailoStoianov has quit IRC
[10:29:47] *** sinclair_ has quit IRC
[10:29:47] *** DoubleAW has quit IRC
[10:30:23] *** aarellano has quit IRC
[10:30:30] *** jegade has joined #angularjs
[10:30:31] *** tschundeee has joined #angularjs
[10:30:33] *** pehlert has joined #angularjs
[10:30:36] *** alex_zho_ has joined #angularjs
[10:30:37] *** ali_ has joined #angularjs
[10:30:54] *** kkthxbye has quit IRC
[10:31:05] *** gladely has joined #angularjs
[10:31:10] *** sinclair has joined #angularjs
[10:31:10] *** shinnya has joined #angularjs
[10:31:10] *** seriema has quit IRC
[10:32:05] *** fataldecrease has joined #angularjs
[10:35:16] *** aarellano has joined #angularjs
[10:35:17] *** illume has quit IRC
[10:35:20] *** tschundeee has quit IRC
[10:35:21] *** pehlert has quit IRC
[10:35:42] *** whiteboo_ has quit IRC
[10:36:18] *** DoubleAW has joined #angularjs
[10:36:24] *** joroc has joined #angularjs
[10:36:27] *** IvailoStoianov_ has joined #angularjs
[10:36:28] *** tschundeee has joined #angularjs
[10:36:28] *** whitebook has joined #angularjs
[10:36:29] *** IvailoStoianov_ is now known as IvailoStoianov
[10:36:29] *** tschundeee is now known as 1JTABII2G
[10:37:57] *** gladely has quit IRC
[10:38:12] *** alex_zho_ has quit IRC
[10:38:26] *** joroc has quit IRC
[10:38:26] *** balaji has joined #angularjs
[10:38:26] <balaji> hi
[10:38:27] <balaji> I want to know how to show list in pop over
[10:39:16] *** blomman has joined #angularjs
[10:39:48] *** joroc has joined #angularjs
[10:39:49] *** aven1 has quit IRC
[10:40:01] *** theanxy has joined #angularjs
[10:40:35] *** e0ipso is now known as e0ipso|away
[10:41:01] *** ries has joined #angularjs
[10:41:06] *** e0ipso|away is now known as e0ipso
[10:41:16] *** juampy has joined #angularjs
[10:42:04] *** aven1 has joined #angularjs
[10:43:05] *** Aerospark has joined #angularjs
[10:43:06] *** motionman has quit IRC
[10:43:31] *** opiates has quit IRC
[10:43:52] *** tarnus has joined #angularjs
[10:44:33] *** lolmaus has joined #angularjs
[10:45:04] *** whiteboo_ has joined #angularjs
[10:46:48] *** SargoDarya has joined #angularjs
[10:47:07] *** laurensvanpoucke has joined #angularjs
[10:47:11] <laurensvanpoucke> hello
[10:47:14] *** whitebook has quit IRC
[10:48:27] <laurensvanpoucke> I want to use a mongoose method in an angular controller, is it a good idea / possible? Or not?
[10:48:47] *** tarnus has quit IRC
[10:49:07] *** rtpg has quit IRC
[10:49:17] *** theotherguy has quit IRC
[10:53:21] *** kp666 has quit IRC
[10:54:02] <laurensvanpoucke> anyone ?
[10:54:03] <laurensvanpoucke> I want to use a mongoose method in an angular controller, is it a good idea / possible? Or not?
[10:54:48] *** Grokling_ has joined #angularjs
[10:54:55] *** rikko has quit IRC
[10:55:36] *** Caroga_afk is now known as Caroga
[10:55:44] *** sabrehagen has left #angularjs
[10:55:47] *** startupality has quit IRC
[10:56:20] *** ximenean__ has quit IRC
[10:57:03] *** blush12 has joined #angularjs
[10:57:05] <blush12> hello
[10:57:14] <blush12> can ng manipulate yaml like json?
[10:57:32] <blush12> using $http
[10:58:04] *** paul__ has quit IRC
[10:58:40] *** UniBot has quit IRC
[10:59:00] *** UniBot has joined #angularjs
[11:00:39] *** morenoh149 has joined #angularjs
[11:00:48] *** ProLoser|Mac has quit IRC
[11:01:05] *** thomasreggi has joined #angularjs
[11:01:26] *** NormySan has quit IRC
[11:01:51] *** StryKaizer has joined #angularjs
[11:01:51] *** laurensclaessen has joined #angularjs
[11:02:37] *** mrded has joined #angularjs
[11:02:48] *** nemothekid has joined #angularjs
[11:02:56] *** mrded has quit IRC
[11:03:32] *** theotherguy has joined #angularjs
[11:03:34] *** 1JTABII2G has quit IRC
[11:03:49] *** dspe has joined #angularjs
[11:03:57] *** ximenean__ has joined #angularjs
[11:04:05] *** tschundeee has joined #angularjs
[11:05:14] *** morenoh149 has quit IRC
[11:05:25] *** Aerospark has quit IRC
[11:05:32] *** nemothekid has quit IRC
[11:05:34] *** cristatus has quit IRC
[11:05:39] *** thomasreggi has quit IRC
[11:05:56] *** balaji has left #angularjs
[11:06:22] *** edy has joined #angularjs
[11:06:33] *** joroc has joined #angularjs
[11:07:06] *** SargoDarya has quit IRC
[11:08:24] *** tschundeee has quit IRC
[11:08:42] *** sbellina has joined #angularjs
[11:08:56] *** startupality has joined #angularjs
[11:08:58] *** aven1 has quit IRC
[11:10:44] *** PeterMetz has quit IRC
[11:11:14] *** pspfolio has joined #angularjs
[11:11:37] *** morenoh149 has joined #angularjs
[11:11:42] *** adben- has joined #angularjs
[11:11:43] *** Grokling_ has quit IRC
[11:11:44] *** gulli has joined #angularjs
[11:11:57] <gulli> Hi!
[11:12:20] <gulli> I am creatinga form builder, I'm new to Angular but somenoe told me it might help
[11:12:33] <gulli> after looking more into angular, the only thing I might use is it's template engine
[11:13:14] *** e0ipso is now known as e0ipso|away
[11:13:20] <gulli> the form builder is kinda like this: Right pane has all elements you can insert into the form. If I push a text box button, a text box button is inserted into the form.
[11:13:24] <gulli> Middle pane is the form itself
[11:14:14] <gulli> right pane: has forms that you use to manipulate all the elements you are putting into the form
[11:14:49] <gulli> if I press text box on the left pane, text box is put itno the form in the middle. Also a form is created on the right side that helps me manipulate the newly created element in the form
[11:14:56] <gulli> i.e. set its id, name and so forth
[11:15:07] <gulli> so I was wondering, doing this, is angular an overkill?
[11:15:23] <gulli> I'm not really pulling any stuff from the server or anything
[11:16:08] *** laurensvanpoucke has quit IRC
[11:16:52] *** laurensclaessen has quit IRC
[11:16:57] *** rchavik has joined #angularjs
[11:17:34] *** e0ipso|away is now known as e0ipso
[11:18:18] *** ome has joined #angularjs
[11:19:04] *** disorder20 has joined #angularjs
[11:19:16] *** ximenean__ has quit IRC
[11:20:40] *** cornerma1 has joined #angularjs
[11:20:48] *** verbgarden has joined #angularjs
[11:20:54] *** sbellina has quit IRC
[11:23:25] *** ximenean__ has joined #angularjs
[11:23:49] *** cornerman has quit IRC
[11:23:56] *** cornerma1 is now known as cornerman
[11:25:40] *** seriema has joined #angularjs
[11:25:43] *** pen has quit IRC
[11:26:19] *** pelll0 has joined #angularjs
[11:26:43] *** pell0 has quit IRC
[11:28:05] <bealtine> angularr is just a handy way to organize your logic + other bits
[11:28:28] *** hawa has joined #angularjs
[11:29:07] *** gladely has joined #angularjs
[11:29:08] *** ludwik has quit IRC
[11:29:24] *** dsdeiz has joined #angularjs
[11:29:27] *** cuong_ has quit IRC
[11:29:44] *** pehlert has joined #angularjs
[11:30:24] *** prbc has joined #angularjs
[11:30:42] *** seriema has quit IRC
[11:30:59] <hawa> can somebody clear my confusion on ng-invalid? how is ng-invalid set? is it set when there is an error for predefined condition like ng-required, ng-pattern, etc or do we have to manually set it using the ng-invalid directive?
[11:31:24] *** eago has quit IRC
[11:31:35] *** Sebastien-L has joined #angularjs
[11:32:35] *** prbc has quit IRC
[11:32:45] *** sbellina has joined #angularjs
[11:32:50] *** numenor has joined #angularjs
[11:34:08] *** gladely has quit IRC
[11:34:18] *** prbc has joined #angularjs
[11:34:23] *** pehlert has quit IRC
[11:35:24] *** tschunde_ has joined #angularjs
[11:36:25] *** aven1 has joined #angularjs
[11:36:30] *** djam90 has joined #angularjs
[11:38:19] *** pell0 has joined #angularjs
[11:38:52] *** zwacky has joined #angularjs
[11:40:01] *** pelll0 has quit IRC
[11:40:28] *** joroc has quit IRC
[11:41:56] *** drag0nius has joined #angularjs
[11:42:28] *** hartwig has joined #angularjs
[11:48:32] *** pelll0 has joined #angularjs
[11:49:28] *** pell0 has quit IRC
[11:50:30] *** Seus has joined #angularjs
[11:50:55] *** gunn has quit IRC
[11:51:49] *** ries has quit IRC
[11:54:07] *** gunn has joined #angularjs
[11:54:40] *** StryKaizer has quit IRC
[11:57:17] *** waverider has joined #angularjs
[11:57:17] *** waverider has joined #angularjs
[11:59:49] *** davek has quit IRC
[12:00:24] *** psi is now known as Psi|4ward
[12:00:44] *** dspe has quit IRC
[12:00:46] <leolrrj> hey guys, anyone here develops or developed for vuzix sdk? (it's a smart glass based on android)
[12:02:08] *** evilaliv3 has joined #angularjs
[12:04:24] *** alpha080 has quit IRC
[12:04:38] *** SargoDarya has joined #angularjs
[12:06:20] *** pell0 has joined #angularjs
[12:06:28] *** fixl has joined #angularjs
[12:06:33] *** joroc has joined #angularjs
[12:07:42] *** GutaFish has quit IRC
[12:08:17] *** blomman has quit IRC
[12:08:22] *** pelll0 has quit IRC
[12:08:53] *** SargoDarya has quit IRC
[12:09:04] *** aven1 has quit IRC
[12:10:48] *** TheAceOfHearts has quit IRC
[12:11:10] *** theotherguy has quit IRC
[12:14:50] *** gunn has quit IRC
[12:18:26] *** ximenean__ has quit IRC
[12:19:28] *** anivemin has joined #angularjs
[12:19:34] *** whiteboo_ has quit IRC
[12:21:51] *** Jet4Fire has quit IRC
[12:23:00] <blush12> can ng manipulate yaml like json?
[12:23:01] <blush12> can ng manipulate yaml like json?
[12:23:22] <tangorri> js uses json
[12:23:34] *** whitebook has joined #angularjs
[12:23:35] *** drag0nius has quit IRC
[12:26:39] *** seriema has joined #angularjs
[12:28:10] *** RangerRick has quit IRC
[12:28:21] *** xxMatiasFxx has joined #angularjs
[12:28:29] *** dspe has joined #angularjs
[12:28:32] *** RangerRick has joined #angularjs
[12:29:55] *** gladely has joined #angularjs
[12:30:24] *** pehlert has joined #angularjs
[12:31:10] *** seriema has quit IRC
[12:31:45] *** apertoire has quit IRC
[12:32:20] *** xxMatiasxx has quit IRC
[12:32:49] *** tarnus has joined #angularjs
[12:33:13] *** sbellina has quit IRC
[12:33:26] *** pspfolio has quit IRC
[12:34:27] *** gladely has quit IRC
[12:34:55] *** pehlert has quit IRC
[12:36:36] *** aven1 has joined #angularjs
[12:37:44] *** tarnus has quit IRC
[12:38:09] *** EQp has joined #angularjs
[12:38:29] *** shaym has joined #angularjs
[12:38:50] *** ries has joined #angularjs
[12:39:32] *** Zeioth has joined #angularjs
[12:39:43] *** waverider has left #angularjs
[12:40:17] *** joroc has quit IRC
[12:40:31] *** shredjs has quit IRC
[12:41:57] *** adben- has quit IRC
[12:42:04] *** _45kb has quit IRC
[12:44:55] *** disorder20 has quit IRC
[12:45:32] *** disorder20 has joined #angularjs
[12:45:43] *** jonatas_oliveira has joined #angularjs
[12:47:07] *** enaqx has joined #angularjs
[12:48:04] *** jonatas_oliveira has quit IRC
[12:48:13] *** boxmein has joined #angularjs
[12:48:31] *** jonatas_oliveira has joined #angularjs
[12:48:39] *** zwacky has quit IRC
[12:49:51] *** thomasreggi has joined #angularjs
[12:50:03] *** Jet4Fire has joined #angularjs
[12:50:56] *** grogs has joined #angularjs
[12:51:02] *** dspe has quit IRC
[12:53:06] *** hawa has quit IRC
[12:54:43] *** thomasreggi has quit IRC
[12:57:54] <blush12> var app = angular.module("myApp", []); <-------- creates a module called app for the application named myAPP ?
[12:58:22] *** theotherguy has joined #angularjs
[13:00:10] *** freeman42 has joined #angularjs
[13:00:31] *** illume has joined #angularjs
[13:01:31] *** zwacky has joined #angularjs
[13:02:28] *** RedOrangeZ has joined #angularjs
[13:05:58] *** doug64k has quit IRC
[13:06:07] *** SargoDarya has joined #angularjs
[13:06:36] *** joroc has joined #angularjs
[13:07:13] *** lexek_ has joined #angularjs
[13:07:18] *** anivemin has quit IRC
[13:07:27] *** tschundeee has joined #angularjs
[13:09:18] *** aven1 has quit IRC
[13:09:34] *** illume has quit IRC
[13:10:19] *** e0ipso is now known as e0ipso|away
[13:11:02] *** tschunde_ has quit IRC
[13:11:10] *** rcanepa has joined #angularjs
[13:11:54] *** tschundeee has quit IRC
[13:12:47] <joroc> app is just a reference for the module myApp
[13:12:51] *** gbanis has joined #angularjs
[13:13:01] *** OnkelTem has quit IRC
[13:13:46] *** gbanis has left #angularjs
[13:14:14] *** Firo has joined #angularjs
[13:14:34] *** OnkelTem has joined #angularjs
[13:15:23] *** asheshambasta has joined #angularjs
[13:17:23] *** jtimon has joined #angularjs
[13:17:37] *** def_ has joined #angularjs
[13:19:16] *** ftruzzi has joined #angularjs
[13:19:27] *** dsdeiz has quit IRC
[13:19:41] *** Zentdayn has joined #angularjs
[13:20:21] *** auriga has joined #angularjs
[13:20:45] <auriga> Hello ...
[13:20:49] <ftruzzi> hi there, MerryXmas! I am having an strange issue, on the first time my page load my controller is never instantiated, if i reload the page everything works, anyone have clues on this error?
[13:21:27] <auriga> any one help me in custom directive part..
[13:22:18] *** ProLoser has quit IRC
[13:22:26] <auriga> @ftruzzi delete history ... May some problem comes from previous data..
[13:22:58] <ftruzzi> auriga, thats the problem, If I start blank in an incognito that creates the issue
[13:25:29] *** dsdeiz has joined #angularjs
[13:26:38] *** auriga_ has joined #angularjs
[13:26:38] *** auriga_ is now known as Rahu
[13:26:44] <def_> Hi all, please can you help me with one weird thing. When I send object with type ex. "UserEntity" into the Isolated Scope of directive inside of target directive I've received an object of type "Object". But I believe it should be "UserEntity" or inherit it. Did I do something wrong or this is an angular issue?
[13:27:16] *** boxmein is now known as giftmein
[13:27:23] *** SargoDarya has quit IRC
[13:27:26] *** Rahu has quit IRC
[13:27:40] *** giftmein is now known as wrapmein
[13:27:45] *** FunnyLookinHat has joined #angularjs
[13:27:48] *** seriema has joined #angularjs
[13:28:01] *** auriga has quit IRC
[13:29:52] *** Nivag_ has quit IRC
[13:30:44] *** gladely has joined #angularjs
[13:31:11] *** pehlert has joined #angularjs
[13:31:50] *** IvailoStoianov has quit IRC
[13:31:54] *** seriema has quit IRC
[13:33:32] *** Zentdayn has quit IRC
[13:34:23] *** pelll0 has joined #angularjs
[13:34:49] *** pell0 has quit IRC
[13:34:53] *** gladely has quit IRC
[13:34:53] *** reeoss has joined #angularjs
[13:35:03] *** metasansana has joined #angularjs
[13:35:52] *** reeoss has quit IRC
[13:36:22] *** pehlert has quit IRC
[13:36:30] *** aven1 has joined #angularjs
[13:37:10] *** bharath has joined #angularjs
[13:37:33] <bharath> iam unable to use localstorage in the controller
[13:37:44] <bharath> it is showing error
[13:37:54] *** qdk has quit IRC
[13:37:55] *** ximenean__ has joined #angularjs
[13:38:30] <bharath> if any sample is there example pls mail me dhanpalbharath456 at gmail dot com
[13:38:56] *** joroc has quit IRC
[13:39:08] *** ries has quit IRC
[13:40:50] *** fedenunez has joined #angularjs
[13:43:10] *** pHcF_ has joined #angularjs
[13:44:14] *** waverider has joined #angularjs
[13:44:14] *** waverider has joined #angularjs
[13:44:28] *** Freeman42x has joined #angularjs
[13:44:34] *** saucey has joined #angularjs
[13:45:34] *** pHcF has quit IRC
[13:45:35] *** pHcF_ is now known as pHcF
[13:47:02] *** zwacky has quit IRC
[13:47:09] *** freeman42 has quit IRC
[13:47:42] *** waverider_ has joined #angularjs
[13:47:42] *** waverider_ has joined #angularjs
[13:47:43] *** waverider is now known as Guest51123
[13:48:06] *** despai has joined #angularjs
[13:48:40] *** def_ has quit IRC
[13:48:58] *** dantheta has quit IRC
[13:49:10] *** dantheta has joined #angularjs
[13:49:46] *** wrapmein has quit IRC
[13:49:49] *** startupality has quit IRC
[13:49:57] *** rtpg has joined #angularjs
[13:50:17] *** Guest51123 has quit IRC
[13:50:18] *** Foxandxss has joined #angularjs
[13:50:32] *** grogs_ has joined #angularjs
[13:50:43] *** ingsoc has joined #angularjs
[13:51:13] *** grogs has quit IRC
[13:51:13] *** grogs_ is now known as grogs
[13:53:01] *** waverider_ has quit IRC
[13:53:04] *** eburcat_ has joined #angularjs
[13:53:14] *** grogs has quit IRC
[13:53:44] *** eburcat has quit IRC
[13:53:52] *** ximenean__ has quit IRC
[13:54:26] *** juampy is now known as juampy_food
[13:54:27] *** waverider_ has joined #angularjs
[13:54:27] *** waverider_ has joined #angularjs
[13:54:32] *** waverider_ is now known as waverider
[13:54:51] *** cakirke has joined #angularjs
[13:56:37] *** ngbot has joined #angularjs
[13:56:37] <ngbot> angular.js/master 49bb367 Peter Bacon Darwin: refact(input): split input.js into smaller files...
[13:56:37] *** ngbot has left #angularjs
[13:57:16] *** ftruzzi has quit IRC
[13:58:00] *** KushS has joined #angularjs
[13:58:24] *** opiates has joined #angularjs
[13:58:36] *** TeddyMurray has joined #angularjs
[13:59:07] *** waverider has quit IRC
[14:00:25] *** tarnus has joined #angularjs
[14:00:46] *** dspe has joined #angularjs
[14:01:27] *** ngbot has joined #angularjs
[14:01:27] <ngbot> angular.js/v1.3.x 7ee5f46 Peter Bacon Darwin: refact(input): split input.js into smaller files...
[14:01:27] *** ngbot has left #angularjs
[14:03:15] *** uris77 has joined #angularjs
[14:03:34] *** TeddyMurray has quit IRC
[14:03:34] *** hswolff has quit IRC
[14:04:21] *** waverider has joined #angularjs
[14:04:21] *** waverider has joined #angularjs
[14:05:57] *** hswolff has joined #angularjs
[14:06:31] *** joroc has joined #angularjs
[14:07:57] *** blomman has joined #angularjs
[14:09:27] *** uris77 has quit IRC
[14:09:58] *** aven1 has quit IRC
[14:10:26] *** s00pcan_ has joined #angularjs
[14:11:12] *** tristanp has quit IRC
[14:12:00] *** dsdeiz has quit IRC
[14:12:06] *** tristanp has joined #angularjs
[14:12:31] *** pell0 has joined #angularjs
[14:12:34] *** pelll0 has quit IRC
[14:12:36] *** erictr1ck has joined #angularjs
[14:12:51] *** brwr has quit IRC
[14:12:52] *** ytsejam has joined #angularjs
[14:12:56] *** numenor has quit IRC
[14:13:53] *** pehlert has joined #angularjs
[14:14:27] *** wrapmein has joined #angularjs
[14:14:41] *** IvailoStoianov has joined #angularjs
[14:14:41] *** CanyonMan has quit IRC
[14:15:16] *** lexek_ has quit IRC
[14:15:36] *** dantheta has quit IRC
[14:15:46] *** ngbot has joined #angularjs
[14:15:46]
<ngbot> [angular.js] petebacondarwin force-pushed master from 49bb367 to 3e42b22: http://git.io/eb2NaA
[14:15:46] <ngbot> angular.js/master 3e42b22 Peter Bacon Darwin: refact(input): split input.js into smaller files...
[14:15:46] *** ngbot has left #angularjs
[14:16:36] <ytsejam> Hello , I got some basic questions that confuses me . which one is better with " $http.get " resolve in routes or promise in services or controllers?
[14:16:48] *** dspe has quit IRC
[14:17:31] *** davi has quit IRC
[14:18:10] *** Milkweed has joined #angularjs
[14:19:17] *** uris77 has joined #angularjs
[14:19:30] *** prbc has quit IRC
[14:20:19] *** ries has joined #angularjs
[14:20:31] *** whiteboo_ has joined #angularjs
[14:20:49] *** djam90 has quit IRC
[14:21:12] *** sheplu has quit IRC
[14:21:49] *** sheplu has joined #angularjs
[14:22:28] *** sheplu has joined #angularjs
[14:22:37] *** whitebook has quit IRC
[14:23:44] *** yogesh has joined #angularjs
[14:24:11] *** KushS has quit IRC
[14:24:19] *** yogesh has quit IRC
[14:25:04] *** SargoDarya has joined #angularjs
[14:25:13] *** SargoDarya has joined #angularjs
[14:26:17] *** qdk has joined #angularjs
[14:26:40] *** dantheta has joined #angularjs
[14:27:16] *** blomman has quit IRC
[14:27:20] *** sevenseacat has joined #angularjs
[14:27:26] *** PeterMetz has joined #angularjs
[14:27:39] *** KushS has joined #angularjs
[14:27:49] *** GutaFish has joined #angularjs
[14:29:03] *** Zzk_ has quit IRC
[14:29:06] *** seriema has joined #angularjs
[14:29:43] *** JesseH has joined #angularjs
[14:31:31] *** gladely has joined #angularjs
[14:33:31] *** ejb has joined #angularjs
[14:33:45] *** seriema has quit IRC
[14:34:05] *** waverider_ has joined #angularjs
[14:34:05] *** waverider_ has joined #angularjs
[14:34:06] *** waverider is now known as Guest54057
[14:34:08] *** thomasvs has joined #angularjs
[14:35:30] *** doopz has quit IRC
[14:35:37] *** gladely has quit IRC
[14:36:38] *** aven1 has joined #angularjs
[14:36:39] *** Guest54057 has quit IRC
[14:38:10] *** tripu has joined #angularjs
[14:38:41] *** thomasreggi has joined #angularjs
[14:39:08] *** mjw56 has quit IRC
[14:40:02] *** joroc has quit IRC
[14:40:50] *** Caroga is now known as Caroga_afk
[14:41:01] *** prbc has joined #angularjs
[14:42:28] *** Ludjer_ has joined #angularjs
[14:43:17] *** thomasreggi has quit IRC
[14:44:54] *** Ludjer has quit IRC
[14:45:10] *** Ludjer has joined #angularjs
[14:45:17] *** SargoDarya has quit IRC
[14:45:28] *** juampy_food is now known as juampy
[14:46:12] *** IvailoStoianov has quit IRC
[14:46:54] *** Ludjer_ has quit IRC
[14:48:21] *** prbc has quit IRC
[14:50:22] *** evilaliv3 has quit IRC
[14:50:22] *** EQp has quit IRC
[14:51:29] *** eburcat_ has quit IRC
[14:51:51] *** dantheta has quit IRC
[14:51:54] *** pelll0 has joined #angularjs
[14:53:18] *** dantheta has joined #angularjs
[14:53:35] *** in2rd has joined #angularjs
[14:53:44] *** pell0 has quit IRC
[14:53:54] *** in2rd has quit IRC
[14:54:11] *** rtpg_ has joined #angularjs
[14:54:37] *** dantheta has joined #angularjs
[14:55:03] *** Ludjer_ has joined #angularjs
[14:55:24] *** Ludjer has quit IRC
[14:55:36] *** dantheta has joined #angularjs
[14:55:44] *** JERE has joined #angularjs
[14:56:48] *** SinceSidSlid has joined #angularjs
[14:57:23] *** rtpg has quit IRC
[14:57:46] *** Ludjer has joined #angularjs
[14:58:22] *** dantheta has joined #angularjs
[14:59:31] *** VeeWee has quit IRC
[15:00:14] *** Ludjer_ has quit IRC
[15:00:47] *** juanpablo_ has joined #angularjs
[15:00:51] *** waverider_ has quit IRC
[15:00:58] *** Ludjer_ has joined #angularjs
[15:01:17] *** KushS has quit IRC
[15:01:45] *** sevenseacat has quit IRC
[15:02:04] *** jtimon has quit IRC
[15:02:13] *** JacobJohansen has joined #angularjs
[15:02:15] *** waverider_ has joined #angularjs
[15:02:15] *** waverider_ has joined #angularjs
[15:02:16] *** eburcat has joined #angularjs
[15:02:20] *** waverider_ is now known as waverider
[15:03:03] *** ejb has quit IRC
[15:03:09] *** Ludjer has quit IRC
[15:04:34] *** proteneer has joined #angularjs
[15:04:50] *** jumpstracks has joined #angularjs
[15:05:26] *** FunnyLookinHat has quit IRC
[15:06:13] *** jumpstracks has quit IRC
[15:06:21] *** eburcat has quit IRC
[15:06:40] *** PayPaul has quit IRC
[15:06:41] *** joroc has joined #angularjs
[15:06:53] *** araujo has quit IRC
[15:07:08] *** waverider has quit IRC
[15:07:09] *** JesseH has quit IRC
[15:08:04] *** s00pcan_ has quit IRC
[15:08:55] *** dantheta has quit IRC
[15:10:08] *** aven1 has quit IRC
[15:10:58] *** dshoreman has quit IRC
[15:11:01] *** araujo has joined #angularjs
[15:11:40] *** eburcat has joined #angularjs
[15:11:43] *** dantheta has joined #angularjs
[15:12:33] *** waverider has joined #angularjs
[15:12:33] *** waverider has joined #angularjs
[15:12:39] <BahamutWC|Laptop> ytsejam: it’s better to use promises and put $http.get and such into services
[15:13:09] <BahamutWC|Laptop> the resolves or controllers shouldn’t care how it is getting the data - they should just care that they’re getting the data
[15:13:52] <ytsejam> BahamutWC|Laptop, ok was wondering which to prefer. thanks for answer
[15:13:54] *** waverider_ has joined #angularjs
[15:13:54] *** waverider_ has joined #angularjs
[15:13:54] *** waverider is now known as Guest27931
[15:14:09] *** Lewix has joined #angularjs
[15:14:10] *** Lewix has joined #angularjs
[15:14:55] *** saucey has joined #angularjs
[15:14:55] <G1eb> hi any suggestions what to use instead of ng-options?
[15:14:58] <saucey> hey ya'll
[15:15:06] <saucey> hey ya'll
[15:15:07] <saucey> back to directives
[15:15:09] <saucey> :D
[15:15:29] *** evanjs has joined #angularjs
[15:15:32] *** thomasreggi has joined #angularjs
[15:16:52] *** foofoobar has joined #angularjs
[15:16:59] *** Guest27931 has quit IRC
[15:17:01] *** BillCriswell has joined #angularjs
[15:18:00] *** Tad3j has joined #angularjs
[15:18:25] *** dantheta has joined #angularjs
[15:18:54] *** dantheta has quit IRC
[15:19:12] *** qdk has quit IRC
[15:20:18] <saucey> i have my angular controller taking care of my scope with an $http request and sending it to the view like.. $scope.locations = response;
[15:20:31] *** dshoreman has joined #angularjs
[15:20:39] *** waverider_ has quit IRC
[15:20:48] <saucey> but how do i send this to my directive link method so manipulate and transform?
[15:21:50] *** ome has quit IRC
[15:22:25] *** oniijin has joined #angularjs
[15:22:33] *** leolrrj has quit IRC
[15:23:11] *** leolrrj has joined #angularjs
[15:23:40] <dllama> morning
[15:24:12] *** ali_ has quit IRC
[15:24:52] *** dantheta has joined #angularjs
[15:25:39] *** richardbkr has joined #angularjs
[15:26:22] <saucey> morning
[15:26:41] <saucey> do you know much about directives?
[15:26:47] *** eburcat has quit IRC
[15:26:51] *** eburcat_ has joined #angularjs
[15:27:03] *** leolrrj_ has joined #angularjs
[15:27:20] *** dantheta has joined #angularjs
[15:27:23] *** leolrrj has quit IRC
[15:28:18] *** dantheta has quit IRC
[15:28:23] *** grogs has joined #angularjs
[15:29:16] *** dantheta has joined #angularjs
[15:29:40] *** foofoobar has quit IRC
[15:29:42] *** dantheta has quit IRC
[15:29:56] *** seriema has joined #angularjs
[15:30:03] *** mary5030 has joined #angularjs
[15:30:08] *** richardbkr has quit IRC
[15:30:09] *** bayousoft has joined #angularjs
[15:30:41] *** dantheta has joined #angularjs
[15:31:09] *** dantheta has quit IRC
[15:31:12] <dllama> not "much"
[15:31:13] *** rchavik has quit IRC
[15:31:31] <dllama> whats up? maybe i can help anyway
[15:31:38] *** michaelSharpe has joined #angularjs
[15:31:52] *** FunnyLookinHat has joined #angularjs
[15:31:52] *** rchavik has joined #angularjs
[15:32:07] *** nickgs has joined #angularjs
[15:32:16] *** dantheta has joined #angularjs
[15:32:19] *** gladely has joined #angularjs
[15:32:28] *** dantheta has quit IRC
[15:33:42] *** dantheta has joined #angularjs
[15:34:16] *** jdivock has joined #angularjs
[15:34:35] *** seriema has quit IRC
[15:34:52] *** B3nCr has joined #angularjs
[15:35:00] *** ximenean__ has joined #angularjs
[15:35:08] *** dantheta has joined #angularjs
[15:35:16] <B3nCr> Hi, is there a way to work out what's causing a particular field on a form to be invalid?
[15:35:41] *** rchavik has quit IRC
[15:35:57] <guilbep> B3nCr look at the .$error field ?
[15:36:00] <B3nCr> I've tried using $setValidity to set it to valid but the field is still invalid after I call $setValidity
[15:36:13] *** vonnegut has quit IRC
[15:36:18] <B3nCr> the $error field has an object with one property which is null, will that still cause it to be invalid?
[15:36:35] <BahamutWC|Laptop> B3nCr: you will have to post some code or (preferably) a reproduction
[15:36:38] *** gladely has quit IRC
[15:36:41] *** Siecje has joined #angularjs
[15:36:43] *** earthquake has joined #angularjs
[15:36:47] *** aven1 has joined #angularjs
[15:36:48] *** vonnegut has joined #angularjs
[15:36:55] <BahamutWC|Laptop> people can only guess so much before their brain gets fried
[15:37:02] *** dantheta has joined #angularjs
[15:37:23] *** TheDreamIsReal has joined #angularjs
[15:37:26] <B3nCr> No need, @guilbep has solved it for me.
[15:37:28] *** Ninja_ has joined #angularjs
[15:37:40] <BahamutWC|Laptop> ah
[15:37:43] <B3nCr> window.dateScope.form.datesForm.PlannedStartDate.$error Object {validationMessage: null}
[15:38:04] <B3nCr> Despite that property being null it's still causing the field to be invalid.
[15:38:19] <BahamutWC|Laptop> B3nCr: you should do $setValidity(‘foo’, true/false)
[15:38:27] <B3nCr> That might be a bug buy anyway, it's easily fixable in my code now I know what's going on.
[15:38:38] <BahamutWC|Laptop> form.$invalid is essentially !!form.$error
[15:38:43] *** Sky[x] has quit IRC
[15:38:52] <BahamutWC|Laptop> even an empty object is truthy
[15:39:09] *** josh-k has joined #angularjs
[15:39:34] *** dantheta has joined #angularjs
[15:39:42] <B3nCr> Yeah, I think someone has called $setValidity('validationMessage', false) and then tried to call $setValidity('somethingElse', true) later and it's not actually cleaned up the validationMessage
[15:39:49] <tangorri> is it bad to use ng-reapeat at two level ? I actually use one dimensionnal array but it can be hard
[15:40:03] <BahamutWC|Laptop> tangorri: if you have to, then you have to
[15:40:15] <BahamutWC|Laptop> haven’t really had any major problems there
[15:40:20] <tangorri> ok
[15:40:23] <tangorri> htanks
[15:40:26] *** Ninja_ has quit IRC
[15:40:44] *** joroc has quit IRC
[15:40:49] *** pell0 has joined #angularjs
[15:40:52] *** sbellina has joined #angularjs
[15:41:27] <guilbep> B3nCr \0/ yeah!!
[15:41:48] <tangorri> BahamutWC : well the idea is have a grid tile with some empty areas
[15:41:59] <jaydubya> I am trying to create a "MockFactory" to return JSON objects in place of actual API calls for testing ... Without the API call, the data comes back differently and there is no promise to "resolve." According to the book I read, mocking is supposed to be transparent to Angular and by just changing which factory is being called changes the source without mucking up the rest of the code. What did I miss?
[15:42:16] *** scythe__ has joined #angularjs
[15:42:20] <tangorri> so one dim array is ok but as I use svg and drag n drop it conflict someway
[15:42:24] *** pelll0 has quit IRC
[15:42:24] <BahamutWC|Laptop> tangorri: it’s a fine use of nested ng-repeats - in fact, for a prototype I’m building for a pre-funding startup, I do use nested ng-repeats
[15:42:37] *** SargoDarya has joined #angularjs
[15:42:42] <BahamutWC|Laptop> one for the columns, and another for the items themselves
[15:42:47] <tangorri> BahamutWC : iep
[15:43:08] <tangorri> I used to do only one dim array when I did gamedev ... :|
[15:43:19] <BahamutWC|Laptop> well, game dev is different
[15:43:24] <BahamutWC|Laptop> different problem space
[15:43:38] *** jumpstracks has joined #angularjs
[15:43:40] <tangorri> whas for 64KB J2ME phone ^^
[15:43:40] *** nickgs has quit IRC
[15:43:41] <jaydubya> BahamutWC|Laptop: Do you have a plunker handy with your nested ng-repeats? I need to use one and I would love to see it done correctly before I try.
[15:43:43] *** michaelSharpe has quit IRC
[15:43:49] *** mary5030 has quit IRC
[15:44:10] <jaydubya> BahamutWC|Laptop: ^ or any other resource?
[15:44:19] *** dantheta has joined #angularjs
[15:44:24] *** mary5030 has joined #angularjs
[15:44:56] <BahamutWC|Laptop> jaydubya: there’s nothing special about nesting ng-repeats
[15:44:56] <GutaFish> hi
[15:45:03] <BahamutWC|Laptop> doesn’t need a plunker :)
[15:45:18] <GutaFish> how I should fire an error event on ajax call if data is not saved ok on cakephp side ?
[15:45:41] <GutaFish> it is always success event fired but I want to fire error event if data is not saved. Is it possible ?
[15:46:49] <BahamutWC|Laptop> GutaFish: $http.get(…).then(successCallback, errorback)
[15:46:55] *** pelll0 has joined #angularjs
[15:47:20] <GutaFish> ufff sorry. I have asked on wrong channel :)
[15:47:22] *** pell0 has quit IRC
[15:47:28] *** SargoDarya has quit IRC
[15:47:44] <BahamutWC|Laptop> heh
[15:47:56] <GutaFish> I have problem on server side… :)
[15:48:49] *** gulli has quit IRC
[15:50:21] *** lexek_ has joined #angularjs
[15:53:24] *** dantheta has quit IRC
[15:53:33] *** sahbeewah_ has quit IRC
[15:56:18] *** IvailoStoianov has joined #angularjs
[15:56:46] *** PeterMetz has quit IRC
[15:56:58] *** omsmith has quit IRC
[15:59:51] <saucey> ?\
[16:02:33] *** mary5030 has quit IRC
[16:02:36] *** IvailoStoianov has quit IRC
[16:03:36] *** evanjs has quit IRC
[16:04:16] <BahamutWC|Laptop> saucey: you could just kill the collection directive - it’s an unnecessary abstraction
[16:04:53] <saucey> ok then how would i do the recursion?
[16:05:00] *** pushpak has joined #angularjs
[16:05:25] <saucey> without getting into a continues loop
[16:05:29] <BahamutWC|Laptop> just put what you have in the template in the DOM
[16:05:50] <BahamutWC|Laptop> it’s just <ul><li ng-repeat=“foo in foos”></li>
[16:06:04] *** dantheta has joined #angularjs
[16:06:10] <BahamutWC|Laptop> ng-repeat is the directive that is doing the heavy-lifting
[16:06:37] *** nickgs has joined #angularjs
[16:07:20] *** e0ipso|away is now known as e0ipso
[16:07:53] *** fataldecrease has quit IRC
[16:08:09] *** rtpg_ has quit IRC
[16:08:30] <saucey> ok
[16:08:46] <saucey> but its not checking for children
[16:09:22] *** rtpg has joined #angularjs
[16:10:23] *** PeterMetz has joined #angularjs
[16:12:06] *** Rebirth has joined #angularjs
[16:12:37] *** eburcat_ has quit IRC
[16:12:59] *** eburcat has joined #angularjs
[16:13:04] *** tinyfly has joined #angularjs
[16:13:18] *** eburcat has quit IRC
[16:13:30] *** jdivock has quit IRC
[16:13:39] *** breakingthings has joined #angularjs
[16:13:53] *** advy has quit IRC
[16:13:58] *** GutaFish has quit IRC
[16:14:19] *** whiteboo_ has quit IRC
[16:14:23] *** tinyfly has quit IRC
[16:14:36] *** Faiqus has joined #angularjs
[16:14:49] *** jdivock has joined #angularjs
[16:15:09] *** earthquake has quit IRC
[16:15:15] *** grumpyOldRussian has joined #angularjs
[16:16:10] *** GutaFish has joined #angularjs
[16:16:35] *** Sebastien-L has quit IRC
[16:17:50] *** waverider has joined #angularjs
[16:17:50] *** waverider has joined #angularjs
[16:19:42] *** Zentdayn has joined #angularjs
[16:19:48] *** eburcat has joined #angularjs
[16:20:56] *** despai has quit IRC
[16:21:30] *** kapil__ has quit IRC
[16:21:34] *** eago has joined #angularjs
[16:21:37] *** IvailoStoianov has joined #angularjs
[16:22:22] *** despai has joined #angularjs
[16:23:55] *** Freeman42x has quit IRC
[16:24:46] *** grumpyOldRussian has quit IRC
[16:24:47] *** dantheta has quit IRC
[16:25:17] *** grumpyOldRussian has joined #angularjs
[16:26:05] *** selva has joined #angularjs
[16:26:20] *** freeman42 has joined #angularjs
[16:27:23] <dllama> silly question, but how do i make sure that functions dont run in a controller unless actually triggered by an action?
[16:27:49] <G1eb> put them inside a $scope.x = function () { ............... };
[16:28:06] <dllama> i had them like that, but i just realized it was actually being triggerd by scope.watch
[16:28:16] *** scythe__ has quit IRC
[16:28:23] <grumpyOldRussian> @dllama then they must be inside your watch:-/
[16:28:29] *** B3nCr has quit IRC
[16:28:39] *** eburcat has quit IRC
[16:28:45] *** eburcat_ has joined #angularjs
[16:28:47] <dllama> yea it is
[16:28:48] *** e0ipso is now known as e0ipso|away
[16:28:51] <dllama> i just caught it
[16:29:10] *** whitebook has joined #angularjs
[16:29:45] *** whiteboo_ has joined #angularjs
[16:30:04] <jaydubya> real silly question ... I created a new project and just want to test with ng-init ... if I have <h3>Hello, {{app.name}}</h3>, the ng-init would be ng-init="{app = {'name: 'Inventory'};"?
[16:30:44] <grumpyOldRussian> without outer curlies
[16:30:49] *** waverider has quit IRC
[16:30:49] *** seriema has joined #angularjs
[16:30:58] <dllama> i have what can only be described as a half-assed function to check whether or not certain buttons should show on a registraiton page, and thats what was actually overwriting my initial setting,
[16:31:30] <grumpyOldRussian> @dllama any chance for plunkr, gist, jsbin?
[16:32:19] <dllama> grumpyOldRussian: yea i'll gist it if thats ok, plnkr takes the life out of me setting it up lol
[16:32:26] <dllama> any advice on refactoring would REALLY be appreciated
[16:32:40] <dllama> fyi, i'm somewhat of a grumpy (semi-young) russian :D
[16:32:40] *** e0ipso|away is now known as e0ipso
[16:33:09] *** gladely has joined #angularjs
[16:33:23] *** whitebook has quit IRC
[16:33:55] *** josh-k has quit IRC
[16:34:05] *** rtpg has quit IRC
[16:34:24] *** nickgs has quit IRC
[16:35:34] *** despai has quit IRC
[16:35:49] *** seriema has quit IRC
[16:36:15] *** richardbkr has joined #angularjs
[16:36:16] *** it0a has joined #angularjs
[16:36:42] *** grogs has quit IRC
[16:37:06] *** icfantv has joined #angularjs
[16:37:08] <tangorri> should I use lodash of angular lodash is stable enough ?
[16:37:17] *** gladely has quit IRC
[16:37:30] <dllama> tangorri: i've been using it, am pretty happy with it
[16:37:46] <tangorri> dllama : the angular lodash port ?
[16:37:51] *** evilaliv3 has joined #angularjs
[16:37:54] <dllama> yea
[16:37:56] <tangorri> k
[16:38:00] <tangorri> thanks
[16:38:18] <tangorri> can it create initialized multi dim array in example ?
[16:38:28] <dllama> tangorri: using ngLodash
[16:38:35] *** rtpg has joined #angularjs
[16:38:36] *** Faiqus has quit IRC
[16:38:49] <grumpyOldRussian> dllama: so what is the problem again?)
[16:38:55] *** AlexZ has joined #angularjs
[16:38:56] *** grogs has joined #angularjs
[16:39:01] <dllama> on initial load, it sets previousEnabled to true,
[16:39:06] <dllama> i think i just need to add some more checks to it
[16:39:06] *** jangoh has joined #angularjs
[16:39:12] <grumpyOldRussian> tangorri: just use lodash and wrap it yourself... 5 mins of work
[16:39:15] <dllama> but was hoping of some advice on how to not make 1 simple function 25 lines lol
[16:39:43] *** omsmith has joined #angularjs
[16:40:34] <grumpyOldRussian> dllama: it's hard to say... I have no idea why are you watching a service for starters
[16:40:48] *** richardbkr has quit IRC
[16:40:52] <tangorri> grumpyOldRussian : no ideia how to do that :)
[16:41:11] <icfantv> dllama: there is no angular port of lodash that i'm aware of
[16:41:16] <tangorri> anyway does lodash allow to create initialized array ?
[16:41:33] <icfantv> tangorri: initialized with what?
[16:41:48] <tangorri> given default value
[16:41:50] *** AciD`` has quit IRC
[16:42:13] <icfantv> tangorri: huh?
[16:42:21] *** caitp has joined #angularjs
[16:42:40] <tangorri> hmm mok doesn't make sense maybe
[16:42:52] <icfantv> tangorri: what are you trying to do?
[16:43:07] *** Ch4rAss has joined #angularjs
[16:43:10] *** despai has joined #angularjs
[16:43:24] <tangorri> thanks grumpyOldRussian gotta give it a min
[16:43:46] <BahamutWC|Laptop> I don’t think it’s really worth turning _ into an injectable
[16:43:47] <icfantv> grumpyOldRussian: what's the point of wrapping lodash like that?
[16:43:52] <grumpyOldRussian> dllama: another thing — you controlling your UI in your controller...that's not good at all
[16:43:58] <grumpyOldRussian> icfantv: to inject it
[16:44:04] <icfantv> BahamutWC|Laptop: agreed
[16:44:09] *** SargoDarya has joined #angularjs
[16:44:10] <dllama> grumpyOldRussian: in my loans controller i have a part of the process where people either add new or select existing bank accounts, and when i show the bank account form,
[16:44:15] <BahamutWC|Laptop> _’s functions are all low level, it’s one of the ok globals IMO
[16:44:15] *** eburcat_ has quit IRC
[16:44:15] <icfantv> grumpyOldRussian: it's meant to be a global library
[16:44:18] <grumpyOldRussian> icfantv: and mock it when you're testing things
[16:44:24] <dllama> idea is that when bank account form is shown, it should hide all other buttons
[16:44:28] <tangorri> icfantv : converting my one dim array (with position as field) logic to two dim array logic (layout engine)
[16:44:30] <icfantv> grumpyOldRussian: why on earth would you want to mock lodash?
[16:44:30] <BahamutWC|Laptop> in practice, you’re never going to mock something like _
[16:44:37] *** pHcF has quit IRC
[16:44:39] <icfantv> exactly
[16:44:50] <dllama> grumpyOldRussian: i was under the impression that controlling UI via scope was acceptable practice, i'm not generating any html from there
[16:44:55] <icfantv> tangorri: you can use _.map
[16:45:07] *** gh0st has quit IRC
[16:45:13] <tangorri> same as Array.map ?
[16:45:23] <BahamutWC|Laptop> or array.map if you don’t support IE8 or below
[16:45:33] <tangorri> well I support ie9+ so
[16:45:35] *** pzuraq has joined #angularjs
[16:45:40] <icfantv> tangorri: mostly, lodash performs operations on collections. collections are usually either arrays or JSON objects
[16:45:53] <BahamutWC|Laptop> lodash is extremely useful
[16:46:00] <tangorri> icfantv : ok I should look for collections then
[16:46:09] <BahamutWC|Laptop> _.pluck, _.find, _.where, _.compact, etc.
[16:46:17] <grumpyOldRussian> icfantv: I prefer not having anything global... angular is enough... so it's a matter of taste I guess
[16:47:19] *** frew has left #angularjs
[16:47:22] *** cthrax has joined #angularjs
[16:47:33] <icfantv> grumpyOldRussian: fair enough. to each his own.
[16:47:43] <grumpyOldRussian> dllama: it is... but then your controllers grow like crazy
[16:48:03] *** TeddyMurray has joined #angularjs
[16:48:35] <dllama> agreed, this is turning into a bit of a mess already, but this is my biggest controller, because it actually uses most of the services and triggers a lot of moving parts, almost everything else is less than 40-50 lines
[16:48:42] <grumpyOldRussian> icfantv: I mentioned the wrapping only because the conversation went into using angular-lodash... which is nuts, isn't it?:) install 3 lines of code as a dependency
[16:48:53] *** Vatican has joined #angularjs
[16:49:00] *** mario1955 has joined #angularjs
[16:49:01] <Vatican> hi
[16:49:06] <mario1955> ciao
[16:49:12] <mario1955> !list
[16:49:14] <Vatican> I have a question (obviously)
[16:49:17] <grumpyOldRussian> dllama: can you hook your UI straight into your service?
[16:49:26] <Vatican> i know what is the difference between constant and value
[16:49:43] *** nemothekid has joined #angularjs
[16:49:45] *** rtpg has quit IRC
[16:49:46] <Vatican> but if constant allows injection inside configs
[16:49:47] <mario1955> dalla russia
[16:49:53] <Vatican> what is the point of using value altogether
[16:50:07] <icfantv> Vatican: huh?
[16:50:14] <mario1955> italia
[16:50:16] <grumpyOldRussian> dllama: through a directive for example... and maybe use setters and getters instead of watching the whole thing
[16:50:22] <dllama> grumpyOldRussian: i probably can, but at this point, i'm under so much pressure to just finish this already that a few more lines dont bother me as much :)
[16:50:23] <icfantv> Vatican: are you talking about angular.module(…).constant(…)?
[16:50:23] *** prbc has joined #angularjs
[16:50:29] <Vatican> yes
[16:50:31] *** jaydubya has quit IRC
[16:50:41] <icfantv> Vatican: ok. and what was your question?
[16:50:50] <Vatican> what is the point of using value over constant
[16:50:51] *** macobo has quit IRC
[16:50:53] <mario1955> no film scaricare
[16:50:56] <grumpyOldRussian> dllama: well))) than don't ask for refactor suggestions:)
[16:50:58] <icfantv> Vatican: define value
[16:51:01] <Vatican> is this for retrocompatibility ?
[16:51:15] <dllama> grumpyOldRussian: i only picked up angular maybe a little less than 2 months ago, normally stick to rails, but with the way this project has gone, even the rails side of my code looks like crap lol
[16:51:30] <mario1955> ciao vatican
[16:51:33] *** theotherguy has quit IRC
[16:51:33] <icfantv> Vatican: .constant(…) allows you to create JSON object constants that are injectable
[16:51:36] <tangorri> Vatican use constant when you need constants ... value when not
[16:51:50] *** theotherguy has joined #angularjs
[16:51:51] <mario1955> !list
[16:51:57] *** nickgs has joined #angularjs
[16:51:58] <grumpyOldRussian> dllama: That happens)
[16:51:59] <icfantv> tangorri: is there an angular.module(…).value(…) method?
[16:52:05] <Vatican> value are also injectable
[16:52:09] <tangorri> yep
[16:52:14] <icfantv> tangorri: ah. i didn't know that
[16:52:20] <Vatican> i know that value is not injectable into config functions
[16:52:21] <icfantv> to the docs, batman!
[16:52:36] <Vatican> my question is that why is there even a "value" method
[16:52:39] *** mario1955 has left #angularjs
[16:52:44] <Vatican> constant would be enough, no
[16:52:47] <dllama> i was going back and forth learning ember or angular, and i think moving away from rails for front end and sticking to angular was prolly 1 of the better decicions i made in a long time,
[16:52:47] <Vatican> ?
[16:53:01] <grumpyOldRussian> Vatican: value is a shorthand for a very dumb service
[16:53:38] <grumpyOldRussian> Vatican: so if you want to share a value between your controllers or services you can... without factories or services
[16:53:47] <tangorri> ^^
[16:54:01] <Vatican> so are constants
[16:54:10] *** IvailoStoianov has quit IRC
[16:54:16] <grumpyOldRussian> Vatican: but you can't reset them
[16:54:16] <Vatican> sharing constants are proving much more useful
[16:54:18] *** wdna has joined #angularjs
[16:54:27] <grumpyOldRussian> Vatican: that's kind of in the name
[16:54:37] *** Juanchito has quit IRC
[16:54:45] <Vatican> you mean, when i inject a value, i can change it, and the services using it will get the change ?
[16:54:46] <tangorri> Vitican constant are some kind of variable, you can't change them ...
[16:54:48] <Vatican> but not for constants?
[16:54:55] <icfantv> Vatican: values can be overridden by the decorator, constants cannot
[16:55:29]
[16:55:30] <icfantv> Vatican: this has to do with module configuration functions and controlling the behavior of it
[16:55:52] *** Ix-Xitan has joined #angularjs
[16:55:53] *** Ix-Xitan is now known as PointBlank
[16:55:56] *** cacts has joined #angularjs
[16:56:11] *** cakirke has quit IRC
[16:56:18] <wdna> hay, I have an issue what could be a common problem with angular. I added the Facebook JS to my application. it needs to init, upon init it renders the elements in it's namespace. but not all fb: elements are rendered right away, so if they load after FB init they won't show.
[16:56:34] <icfantv> Vatican: also constants can be injected into a module configuration function, values cannot
[16:56:50] *** stever has joined #angularjs
[16:57:06] <Vatican> this i know
[16:57:09] *** stever has quit IRC
[16:57:31] <icfantv> Vatican: are you looking for a specific use case where values would be used instead of constants?
[16:57:47] <grumpyOldRussian> dllama: anyway... i guess you need to solve your problem without refactoring
[16:57:47] <Vatican> no, its just
[16:58:01] *** dantheta has joined #angularjs
[16:58:05] <dllama> grumpyOldRussian: yea, i just added another check
[16:58:07] <Vatican> in my application im typically using values, except when i need the value to be used in a config function
[16:58:17] <Vatican> but i stumbled upon that question
[16:58:19] *** dantheta has quit IRC
[16:58:22] <Vatican> why should i even use values
[16:58:23] <dllama> now i'm onto tryig to figure out why an event i'm broadcasting is not overwriting a scope value
[16:58:31] <tangorri> Vatican : never used a const in other languages ?
[16:58:35] <wdna> oh there's ngFacebook it seems.
[16:58:39] *** e0ipso is now known as e0ipso|away
[16:58:40] *** Ajans has quit IRC
[16:58:47] <Vatican> tangorri: we all know that constants are not really constants...
[16:58:54] <tangorri> \o/
[16:58:55] <Vatican> until ecmascript 6, that is
[16:59:04] *** dllama has left #angularjs
[16:59:07] *** dllama has joined #angularjs
[16:59:11] <tangorri> Vatican : they are in actionscript :D
[16:59:16] <tangorri> or in C etc
[16:59:23] <Vatican> i also want my "values" to be immutable as well
[16:59:41] <Vatican> to me, "values" are constants, hence getting to the question at hand
[16:59:55] <tangorri> I'm pretty sure you can't change the values stored in a .constant provider
[16:59:56] *** ximenean__ has quit IRC
[17:00:03] <icfantv> grumpyOldRussian: that blog post gives good examples on how to create them but doesn't really get into what the difference actually means
[17:00:30] <Vatican> lets see
[17:00:36] <tangorri> :-{
[17:00:46] *** rcanepa has quit IRC
[17:01:12] *** e0ipso|away is now known as e0ipso
[17:02:02] *** nickgs has quit IRC
[17:04:05] *** vbabiy has joined #angularjs
[17:04:31]
<saucey> hey ive manage to create a direct tree, please take a look, how could i take this further http://laravel.io/bin/E3yjN
[17:04:49] *** whiteboo_ has quit IRC
[17:05:00] *** macobo has joined #angularjs
[17:05:23] *** SargoDarya has quit IRC
[17:06:22] *** bmac has joined #angularjs
[17:06:59] <jaawerth> constants are basically functions that return a hard-coded value
[17:07:04] <jaawerth> so there's no way to change them once set
[17:07:06] <jaawerth> IIRC
[17:07:35] <oniijin> lol kinda defeats purpose of constants if they can be changed =]
[17:07:40] <saucey> hey guys
[17:07:44] <saucey> help us out here
[17:07:57] <oniijin> that doesnt look like a plnkr
[17:08:42] *** guilbep has quit IRC
[17:08:53] *** Ch4rAss has quit IRC
[17:09:07] <Vatican> here
[17:09:13] <Vatican> they are interchangeable
[17:09:19] <Vatican> and mutable
[17:09:58] <oniijin> y do you need a directive to ngrepeat links? just do a ngrepeat
[17:10:29] *** Bade has joined #angularjs
[17:10:58] *** evotuned has joined #angularjs
[17:11:06] <saucey> ?
[17:11:43] *** pHcF has joined #angularjs
[17:12:01] <saucey> becuase i need to manipulate the model
[17:12:03] <jaawerth> "taking it further" would be doing something like the example I sent you yesterday
[17:12:14] <jaawerth> writing a service to manipulate the model in an abstracted way
[17:12:54] <saucey> im trying to add classed so i can get it to work like bootstrap nav
[17:12:59] <saucey> i think that would be a start
[17:13:03] <Vatican> does someone has an example about the "decorate constants" ?
[17:13:09] *** PeterMetz has quit IRC
[17:13:14] <caitp> you can't decorate constants
[17:13:17] <saucey> so within if (angular.isArray(scope.member.children)) {
[17:13:18] <Vatican> decorators are kind of mystic in angular
[17:13:21] <caitp> because they aren't in the config injector
[17:13:28] *** PeterMetz has joined #angularjs
[17:13:29] <jaawerth> ^ constants
[17:13:44] *** mary5030 has joined #angularjs
[17:13:55] <jaawerth> the whole point is you can't do stuff like that to them
[17:14:12] <caitp> you can decorate values though
[17:14:16] <tangorri> Vatican : so ?
[17:14:25] <Vatican> what is "decorating" values ?
[17:14:42] <Vatican> i know about decorating services
[17:14:49] *** zumba_ad_ has joined #angularjs
[17:14:51] <caitp> module.value("myValue", someValue) <<< can be decorated
[17:14:57] <Vatican> like, to add new functionality on top of the the original
[17:15:05] <jaawerth> same idea
[17:15:09] <caitp> as opposed to module.constant("myConstant", someCnostant) <<< can not be decorated
[17:15:13] <zumba_ad_> anyone here uses ui-grid? Just want to know how to restore column after clicking hide column
[17:15:30] <Vatican> yes but jaawerth
[17:15:31] <Vatican> in my example
[17:15:38] <Vatican> I modified the constants directly
[17:15:44] <Vatican> *constant
[17:15:47] <Vatican> what is the point then
[17:16:12] *** nemothekid has quit IRC
[17:16:13] <caitp> the point is that you can't decorate them
[17:16:29] <tangorri> what is decorating a value ? :S
[17:16:41] <Vatican> yes
[17:16:44] <tangorri> from decorator pattern ?
[17:17:05] <Vatican> A value is nothing more than a simple injectable value. The value can be a string, number but also a function. Value differs from constant in that value can not be injected into configurations, but it can be intercepted by decorators.
[17:17:06] <tangorri> never used it :(
[17:17:07] <caitp> anything that is available to the config injector can be decorated (that is, basically have its instantiation intercepted, so that the instantiated value can be modified or replaced)
[17:17:34] <tangorri> ok
[17:17:55] *** jaydubya has joined #angularjs
[17:17:56] *** wrapmein has quit IRC
[17:18:05] *** mary5030 has quit IRC
[17:18:11] <Vatican> so the difference is that instead of modifying the value itself, i register a decorator that will modify the value, but angular prevents to do so to constants
[17:18:20] *** davek has joined #angularjs
[17:18:21] *** davek has joined #angularjs
[17:18:24] <Vatican> why would someone ever do that...
[17:18:45] <caitp> say you want to decorate a directive
[17:18:55] <caitp> you want the decorated directive to be used before the first compile runs
[17:19:06] <caitp> and not only that, but you can't really change it later
[17:19:09] <caitp> that's why
[17:19:13] <Vatican> it would prove useful if when injecting a constant, we get a singleton, whereas when injecting a value it would be a new value
[17:19:23] <Vatican> ok
[17:19:26] <caitp> any time you need the value to be available, changed, at bootstrap, you pretty much need to decorate
[17:19:28] <jaawerth> Yeah. Or say you've got a service built to communicte with a specific API
[17:19:31] *** snurfery has joined #angularjs
[17:19:56] <jaawerth> you might set the baseUrl as a value, so you can decorate it if someone is accessing via a proxy
[17:20:36] <jaawerth> it lets you control how your app bootstraps, basically
[17:20:50] *** dantheta has joined #angularjs
[17:21:07] <Vatican> hm
[17:21:47] *** dantheta has quit IRC
[17:22:19] <Vatican> i think its a little bit clearer
[17:22:38] *** ctanga has joined #angularjs
[17:23:14] <tangorri> let's go fammilly house
[17:23:27] *** tSpartak has joined #angularjs
[17:23:30] *** tangorri has quit IRC
[17:23:56] *** macobo has quit IRC
[17:24:05] <vonnegut> hi guys.. in 1.3 validation, must i synch the validation to the input's name attribute?
[17:24:17] <jaawerth> oh, and you can do something functionally identical to true constants with ES5, but they need to be an object property
[17:24:22] <vonnegut> this creates complexity with the way my scope is setup.
[17:24:33] *** grogs has quit IRC
[17:24:46] <vonnegut> anyone else hit this before?
[17:24:52] *** Lewix has quit IRC
[17:24:55] *** grogs has joined #angularjs
[17:25:20] <jaawerth> vonnegut: you can write a directive that requires ngModel and set up validation that way
[17:25:36] *** Guest33 has quit IRC
[17:25:56] <vonnegut> i guess thats what i will have to do.. (i have always avoided directives, but it seems like maybe its time to jump into them now)
[17:26:00] <jaawerth> That also lets you easily create reusable custom validations
[17:26:11] <Vatican> oh i see now
[17:26:19] <Vatican> if im using a third party library
[17:26:29] *** D-Boy has quit IRC
[17:26:35] <jaawerth> there's a leaning curve, but directives are awesome
[17:26:41] <jaawerth> learning
[17:26:49] <Vatican> and that I need the decorate its services/directives for added functionality
[17:26:49] *** arabot has joined #angularjs
[17:27:05] *** chrisshattuck has joined #angularjs
[17:27:09] <vonnegut> yeah.. i'm sold on them, just never carved out the time to climb the curve.. jaawerth, do you have a good example of the code for my use case?
[17:27:25] <Vatican> if the third party doesn't expose values, i cant change them
[17:27:35] <vonnegut> a link perhaps to a plnkr, or good tutorial?
[17:28:11] <Vatican> $validators are awesome
[17:29:05] *** chrisshattuck has quit IRC
[17:30:00] *** Lewix_ has joined #angularjs
[17:30:14] <TweedleDee> i love that one
[17:30:17] *** edzez has quit IRC
[17:30:20] <TweedleDee> oniijin, nice dorp was about to paste that too
[17:30:55] <TweedleDee> Pluralsight also has a new video tutorial called angular 1.3 new features of something to that effect
[17:31:26] *** chrisshattuck has joined #angularjs
[17:31:54] <jaawerth> vonnegut: that yearofmoo link that oniijin posted has an example of what I mean
[17:31:54] *** seriema has joined #angularjs
[17:32:05] *** Sawbones has joined #angularjs
[17:32:18] <jaawerth> note that the simplest way to access the validation state is still by name, but the directive simplifies the actual validation code.
[17:32:51] <jaawerth> saves you from having to do $timeout or something to wait for the stuff to populate before adding the validators
[17:33:07] <TweedleDee> Hell i just found out about $scope.$watchGroup, was using deep watches prior, major improvement
[17:33:34] *** m0n4m33 has joined #angularjs
[17:33:37] <TweedleDee> just do a ng-model-options
[17:33:44] <TweedleDee> 'blur' or something to that effect
[17:33:52] <jaawerth> you could also have the directive set the validation on an an arbitrary scope property/object that you pass into the directive if you wanted to
[17:33:53] *** gladely has joined #angularjs
[17:34:31] *** dra has joined #angularjs
[17:34:36] *** phynweb has quit IRC
[17:34:48] <Vatican> oh about ng-model-options
[17:35:17] <vonnegut> jaawerth: checking that link
[17:35:33] <Vatican> is the "getter" the same as using Object.defineProperty($scope, 'property': { get: myGetter() }) ?
[17:35:51] <vonnegut> thanks jaawerth, oniijin, TweedleDee
[17:36:19] <TweedleDee> never actually set up my model with a getter setter, watched tutorial on it last night tho, I have only used it for the when to update, IE 'blur'
[17:36:20] *** seriema has quit IRC
[17:36:31] <TweedleDee> ng-model-options="{updateOn: 'blur'}"
[17:36:36] <vonnegut> as a java guy, getters and setters are a constant presence
[17:37:06] <vonnegut> wow, this article is very clear
[17:37:12] <TweedleDee> Saw that if you wanted the proper validation via the type='date' on an input that you needed to setup one tho, just never ended up doing it..
[17:37:19] *** dcherman has quit IRC
[17:37:26] *** ximenean__ has joined #angularjs
[17:37:35] *** rickibilboa has quit IRC
[17:37:49] *** vita has joined #angularjs
[17:37:52] <Vatican> defineProperty is rd
[17:37:53] <Vatican> rad
[17:38:03] *** vita has left #angularjs
[17:38:09] *** gladely has quit IRC
[17:38:17] <Vatican> especially when you use filterFilter and don't want the filter to look up all fields ...
[17:38:19] *** cacts|works has joined #angularjs
[17:38:58] <jaawerth> TweedleDee: it isn't literally the same, given that it doesn't use that in the code (plus defineProperty doesn't work with IE8) but it has the same effect
[17:39:18] *** adben- has joined #angularjs
[17:39:28] <TweedleDee> gotcha
[17:39:35] *** Torrieri has joined #angularjs
[17:39:35] *** Torrieri has joined #angularjs
[17:39:39] <jaawerth> but IIRC it won't invoke the setter for you if you set the value from code... I could be wrong, I haven't used it much
[17:39:49] *** asheshambasta has quit IRC
[17:39:54] <jaawerth> but pretty sure it doesn't, since it doesn't use defineProperty
[17:40:04] <Vatican> defineProperty doesnt work on PhantomJS either
[17:40:13] <Vatican> kinda sucks
[17:40:27] <blackkbot> you can make getters and setters without defineProperty tho right?
[17:40:34] <Vatican> of course
[17:40:38] *** rickhanlonii has joined #angularjs
[17:40:49] <blackkbot> and observers kindof defeat the purpose of getters and setters now
[17:40:49] <Vatican> however im not sure about perf implications
[17:40:53] <TweedleDee> I'm kinda bummed we had a meeting over this new online application software I put together that was using localStorage, but as a security concern due to the state persistance they wanted that portion gutted, so.. I gutted it and then on my spare time implemented the standford javascript crypto libraries to encrypt the shit via passphrase.. no one will give it the time of day to even look at
[17:40:53] <TweedleDee> it.. lol -- assholes
[17:41:25] <Vatican> observers ?
[17:41:27] *** cedricziel has quit IRC
[17:42:14] <blackkbot> Object.observe
[17:43:00] <Vatican> object.observe was not supposed to be in ECMA 7 ?
[17:43:05] <Vatican> long way to go until then
[17:43:32] *** D-Boy has joined #angularjs
[17:43:36] <jaawerth> I thought there were ways to get it to work on PhantomJS. Can't remember specifics
[17:43:46] <jaawerth> Object.observe works in Chrome right now!
[17:43:55] *** cedricziel has joined #angularjs
[17:44:00] <jaawerth> not that that helps you for other browsers
[17:44:22] <Vatican> hm
[17:44:40] <Vatican> need to study that
[17:45:07] <Vatican> still I don't understand how it is defeating the purpose of the getters/setters
[17:45:12] *** despai has quit IRC
[17:45:19] <jaawerth> blackjid: well, getters and setters without defineProperty won't invoke automatically, that's kind of the point. Object.observe doesn't always defeat the purpose, it allows more finegrained control
[17:45:27] *** rickhanl_ has joined #angularjs
[17:45:28] <jaawerth> er, blackkbot ^
[17:45:29] <jaawerth> (whoops)
[17:45:45] *** tinyfly has joined #angularjs
[17:46:08] *** rickhanlonii has quit IRC
[17:46:11] <jaawerth> plus getters and setters aren't just good for data binding, they also let you modify a value or restrict it to a specific type
[17:46:59] <Vatican> plus the enumerable: false and readonly false capabilities
[17:47:00] *** partha_ has joined #angularjs
[17:47:14] <jaawerth> yeah, though that's beside the point of the getters/setters
[17:47:24] *** IvailoStoianov has joined #angularjs
[17:48:07] *** adben- has quit IRC
[17:48:23] *** partha_ has quit IRC
[17:49:04] *** asn has quit IRC
[17:49:04] <Vatican> anyway
[17:49:11] <Vatican> so what to do
[17:49:19] <Vatican> stick with values of use constants
[17:49:39] <jaawerth> I wouldn't sweat it much, not hard to change later
[17:49:40] *** adarshaj has quit IRC
[17:49:46] <jaawerth> I'd say use values unless you have a specific reason to need constants
[17:50:18] *** despai has joined #angularjs
[17:51:02] <Vatican> I use them mainly as "enums"
[17:51:19] <Vatican> there shouldn't need to be changed
[17:51:21] *** freeman42 has quit IRC
[17:52:10] *** in2rd has joined #angularjs
[17:52:13] *** adarshaj has joined #angularjs
[17:52:17] <jaawerth> if you don't need to support IE8 you can always do writable: false with defineProperty (or use a setter that doesn't do anything)
[17:52:34] *** freeman42 has joined #angularjs
[17:52:55] *** macobo has joined #angularjs
[17:53:33] *** saucey has quit IRC
[17:55:56] *** asn has joined #angularjs
[17:56:24] *** saucey has joined #angularjs
[17:56:29] *** despai has quit IRC
[17:56:33] *** rickhanlonii has joined #angularjs
[17:57:35] *** macobo has quit IRC
[17:57:48] *** afuggini___ has quit IRC
[17:57:54] *** rickhanl_ has quit IRC
[17:58:05] *** despai has joined #angularjs
[17:58:19] *** rickhanlonii has quit IRC
[17:58:27] *** scythe__ has joined #angularjs
[17:58:38] *** moogey has joined #angularjs
[17:59:06] *** despai has quit IRC
[17:59:17] *** bzitzow has joined #angularjs
[18:00:18] *** erictr1ck has quit IRC
[18:01:21] *** ejb has joined #angularjs
[18:01:55] *** tripu has quit IRC
[18:02:45] *** nickgs has joined #angularjs
[18:02:45] *** SargoDarya has joined #angularjs
[18:03:02] *** hartwig has quit IRC
[18:04:39] <dllama> having a brain fart here, object = { foo: "1", bar: "2"} i'm passing in a value into a function and capturing it as e, tried setting the value as object[e] = ""; no dice. can anyone please point out what i'm doing that is obviously wrong, (running on less than 3hrs of sleep so something this small is quite frustrating atm :/ )
[18:05:06] *** whitebook has joined #angularjs
[18:05:48] *** pyfer has joined #angularjs
[18:06:18] *** IJNX has joined #angularjs
[18:06:20] *** it0a has quit IRC
[18:06:29] *** whitebook has quit IRC
[18:06:36] *** grogs has quit IRC
[18:06:40] *** joroc has joined #angularjs
[18:06:56] *** richardbkr has joined #angularjs
[18:07:26] *** nickgs has quit IRC
[18:07:46] *** grogs has joined #angularjs
[18:08:27] *** yts has joined #angularjs
[18:08:45] *** afuggini___ has joined #angularjs
[18:09:08] *** IvailoStoianov has quit IRC
[18:09:09] *** waverider has joined #angularjs
[18:10:19] *** dsdeiz has joined #angularjs
[18:10:42] *** davek has quit IRC
[18:10:57] *** cacts has quit IRC
[18:11:15] *** aven1 has quit IRC
[18:11:43] *** jacuqesdancona has quit IRC
[18:11:47] *** numenor has joined #angularjs
[18:12:17] *** jacuqesdancona has joined #angularjs
[18:12:44] *** IJNX has quit IRC
[18:13:25] <numenor> Merry Christmas guys
[18:13:34] <Vatican> jsfiddle ?
[18:13:44] <Vatican> oh yeah its xmas totally forgot
[18:13:52] <dllama> Vatican: jsfiddle was for me?
[18:13:57] <Vatican> yes
[18:14:06] <moogey> merry christmas :)
[18:14:07] *** evanjs has joined #angularjs
[18:14:09] *** m0n4m33 has quit IRC
[18:14:16] <Vatican> merry to you
[18:14:24] *** m0n4m33 has joined #angularjs
[18:15:15] <moogey> dllama what's the error?
[18:15:21] *** jonatas_oliveira has quit IRC
[18:15:37] <dllama> its not actually setting $scope.loanService.newLoan.physical_location
[18:15:38] *** prbc has quit IRC
[18:15:54] *** jonatas_oliveira has joined #angularjs
[18:16:04] <dllama> line 8 shows up as blank
[18:16:15] <dllama> going to double check right now for typos
[18:16:24] <moogey> what's 'e' when it logs?
[18:16:24] <Vatican> but
[18:16:28] *** ejb has quit IRC
[18:16:29] <Vatican> you set it as ""
[18:16:32] *** jacuqesdancona has quit IRC
[18:16:34] <moogey> ^ yeah
[18:16:35] <dllama> i'm setting it to ""
[18:16:45] <dllama> ok, when someone selets wrong dropdown value, i show an error msg
[18:16:52] <dllama> when they click back from the error screen, i want to reset the value they hit
[18:17:03] <moogey> !js console.log("")
[18:17:06] <moogey> ahh man
[18:17:13] <Vatican> you want console log to print a space ?
[18:17:14] <moogey> don't have that here
[18:17:22] <moogey> it will be a blank liine
[18:17:47] <dllama> Object {recent_payments: "no", loanError.errorType: "", physical_location: "yes"}
[18:17:51] <dllama> thats the overall object
[18:18:04] <dllama> and e is being returned as "physical_location"
[18:18:08] <dllama> which is what i'm trying to set to ""
[18:19:30] <Vatican> and when you print newLoad.physical_location you get "yes " ?
[18:19:31] *** disorder20 has quit IRC
[18:19:54] <dllama> the drop down value hasn't changed
[18:20:09] <Vatican> are you using angular ?
[18:20:14] <Vatican> yes
[18:20:14] <dllama> yes
[18:20:19] <Vatican> try using $timeout
[18:20:23] *** jonatas_oliveira has quit IRC
[18:20:23] <Vatican> like this
[18:20:33] *** dsdeiz has quit IRC
[18:20:54] *** disorder20 has joined #angularjs
[18:21:06] *** eago has quit IRC
[18:21:08] *** tinyfly has quit IRC
[18:21:12] <Vatican> actually im lazy
[18:21:13] *** cotko has quit IRC
[18:21:18] <dllama> lol
[18:21:24] <dllama> no worries, i'll figure this out,
[18:21:27] <Vatican> but try using $timeout around your function
[18:21:30] *** cotko has joined #angularjs
[18:21:33] <dllama> just need another shot of espresso and hopefully my brain will get back to normal :)
[18:21:45] *** Reskp has joined #angularjs
[18:21:49] <Vatican> i had a similar problem and $timeout solved it out
[18:21:55] *** Reskp has quit IRC
[18:22:03] *** Reskp has joined #angularjs
[18:22:11] *** 64MABHVTT has joined #angularjs
[18:22:40] *** Zeioth has quit IRC
[18:23:09] *** SargoDarya has quit IRC
[18:23:29] <blackkbot> holy pope! the vatican is here
[18:24:03] <Vatican> godspeed
[18:24:05] *** Cronoh has quit IRC
[18:24:11] <numenor> :)
[18:24:26] <blackkbot> is that different from the street speed?
[18:24:50] *** ximenean__ has quit IRC
[18:24:54] <dllama> its faster :D
[18:25:25] *** ximenean__ has joined #angularjs
[18:25:25] *** davek has joined #angularjs
[18:25:26] *** davek has joined #angularjs
[18:25:35] <blackkbot> but do i have to goto church on sundays? because thats a deal breaker
[18:25:52] *** Reskp has quit IRC
[18:25:55] *** cotko has quit IRC
[18:26:06] <Vatican> actually you have to go every day
[18:26:12] <Vatican> sorry dude
[18:26:18] *** juampy has quit IRC
[18:26:22] *** IvailoStoianov has joined #angularjs
[18:27:26] <blackkbot> aw hell
[18:28:10] <blackkbot> oh well at least i know i can sell my soul to satan and not have to spend time in church
[18:28:29] *** eago has joined #angularjs
[18:30:37] *** torartc has joined #angularjs
[18:30:43] *** 64MABHVTT has quit IRC
[18:31:58] *** disorder20 has quit IRC
[18:32:32] <dllama> Vatican: didn't need timeout, i had a typo inthe html it self
[18:32:52] <dllama> had ' ' around the param in html by accident since previously it was passing in a string rather than a var
[18:33:02] *** seriema has joined #angularjs
[18:33:11] <saucey> hey when using bootstrap with angularJs the preventDefault on the dropdown-toggle doesnt work, it submits a href and doesnt toggle the many how can i fix this
[18:33:13] <dllama> ng-click="editLoanError('loanError.errorType') … so e kept setting the value of loanError
[18:33:23] *** disorder20 has joined #angularjs
[18:34:16] *** slickuser has joined #angularjs
[18:34:16] *** slickuser has joined #angularjs
[18:34:23] *** waverider has quit IRC
[18:34:31] *** slickuser has left #angularjs
[18:34:37] *** ejb has joined #angularjs
[18:34:43] <saucey> i mean doesnt toggle the menu down
[18:34:48] *** gladely has joined #angularjs
[18:35:01] <dllama> saucey: can u gist ur entire directive?
[18:35:11] <dllama> u need to declare the directive in 2 places
[18:35:14] <dllama> the drop down and the parent
[18:35:34] <saucey> i dont think i can gist it put i can show u how ive got it working
[18:35:35] <dllama> i missed delcaring it in the parent container once and was pulling my hair out for hours trying to find why it wouldn't set the class to open
[18:35:48] <dllama> ok, then i'll gist mine :)
[18:35:54] <saucey> other than the href submit everything works fine
[18:35:54] *** clearcut has joined #angularjs
[18:36:26] <saucey> thats my directive
[18:36:26] <numenor> Saucey , data-target="#" ?
[18:36:46] <saucey> numenor whats that
[18:36:47] *** aven1 has joined #angularjs
[18:37:01] <numenor> Instead of href use that
[18:37:55] *** m0n4m33 has quit IRC
[18:38:27] *** seriema has quit IRC
[18:38:29] *** nickgs has joined #angularjs
[18:38:33] *** komlev has joined #angularjs
[18:38:40] <saucey> ok that works
[18:38:42] <saucey> nice one
[18:38:49] <numenor> Saucey , great!
[18:39:08] *** kebo has joined #angularjs
[18:39:17] *** gladely has quit IRC
[18:39:31] *** kebo is now known as Guest41687
[18:39:41] *** xdissent has quit IRC
[18:39:44] *** Guest41687 has quit IRC
[18:40:44] *** MuffinMan` has joined #angularjs
[18:40:56] *** joroc has quit IRC
[18:42:53] *** nickgs has quit IRC
[18:45:12] *** ejb has quit IRC
[18:45:28] *** Guest33_ has joined #angularjs
[18:45:32] <moogey> sick brain is failing me
[18:45:44] <moogey> if i wanted to mock the value of $lcoation.pathname in a unit test
[18:45:47] <moogey> ...
[18:46:46] *** doodlehaus has joined #angularjs
[18:47:13] *** illume has joined #angularjs
[18:47:23] *** doodlehaus has quit IRC
[18:47:39] *** ingsoc has quit IRC
[18:47:44] *** drag0nius has joined #angularjs
[18:47:45] <saucey> hey guys what do you think to this, my tree directive that works with bootstrap classes?
[18:48:14] *** eburcat has joined #angularjs
[18:48:24] <saucey> what could i do better, where could i take this further?
[18:49:11] *** wrapmein has joined #angularjs
[18:49:36] *** doodlehaus has joined #angularjs
[18:50:26] <saucey> how could i add my template to the link and do my checks there before returning the template the view?
[18:50:46] *** bbankes_ has quit IRC
[18:51:46] *** snurfery has quit IRC
[18:52:58] <saucey> i wana place my template string in the link method and have some kind of case condition before the value is sent
[18:53:37] *** illume has quit IRC
[18:54:20] *** ahmetkapikiran has joined #angularjs
[18:54:56] *** dshoreman has quit IRC
[18:55:29] *** pehlert has quit IRC
[18:55:58] <vonnegut> so, modelValue vs viewValue .
[18:57:36] *** disorder20 has quit IRC
[18:57:54] *** macobo has joined #angularjs
[18:58:06] *** illume has joined #angularjs
[18:58:09] *** evilaliv3 has quit IRC
[18:58:18] *** tinyfly has joined #angularjs
[18:58:37] *** doodlehaus has quit IRC
[18:58:48] *** disorder20 has joined #angularjs
[18:59:13] *** steinbeck has joined #angularjs
[19:00:17] *** vonnegut has quit IRC
[19:00:20] *** proteneer has quit IRC
[19:00:21] *** ivor has joined #angularjs
[19:00:32] *** dshoreman has joined #angularjs
[19:00:36] *** JBreit has quit IRC
[19:00:56] <steinbeck> (got disconnected) i get modelValue, but where is viewValue defined?
[19:01:14] *** gladely has joined #angularjs
[19:01:30] *** Reskp has joined #angularjs
[19:01:49] *** ximenean__ has quit IRC
[19:02:00] *** saucey has quit IRC
[19:02:01] *** Reskp has quit IRC
[19:03:29] *** proteneer has joined #angularjs
[19:03:54] *** doodlehaus has joined #angularjs
[19:04:12] *** mkc has joined #angularjs
[19:04:23] *** doodlehaus has quit IRC
[19:04:38] *** fedenunez has quit IRC
[19:04:48] *** proteneer has quit IRC
[19:07:00] *** bmac has quit IRC
[19:08:19] *** cthrax has quit IRC
[19:08:59] *** JBreit has joined #angularjs
[19:09:47] *** lolmaus has quit IRC
[19:10:01] *** wdna has quit IRC
[19:10:41] <Sickness[]> hey all, I could really use some help I've been messing around with this for 2 days
[19:10:49] <Sickness[]> I'm trying to send modified headers with my get requests
[19:10:59] <Sickness[]> specifically Basic auth headers
[19:11:15] *** earthquake has joined #angularjs
[19:11:19] <Sickness[]> but I've checked the headers sent and they're never there
[19:11:48] <Sickness[]> I've tried it like this:
[19:12:03] <Sickness[]> $http.defaults.headers.common.Authorization = 'Basic ' + baseUserAndPasswordBase64;
[19:12:06] *** jdivock has quit IRC
[19:12:33] *** Shrooms has quit IRC
[19:12:33] <Sickness[]> and with Restangular (which is doing the requests)
[19:12:41] <dllama> is validation always based on form name.input name?
[19:12:44] <Sickness[]> Restangular.setDefaultHeaders({'Authorization': 'Basic ' + baseUserAndPasswordBase64});
[19:12:57] *** startupality has joined #angularjs
[19:13:13] <Sickness[]> the basic auth headers are simply never there and thus I'm blocked from the api
[19:13:19] <Sickness[]> Any ideas?
[19:13:33] *** PeterMet_ has joined #angularjs
[19:13:36] <Sickness[]> (I've also tried setting the headers in the restangular provider)
[19:13:45] *** cthrax has joined #angularjs
[19:14:28] *** tinyfly has quit IRC
[19:15:31] *** dman777_alter has joined #angularjs
[19:15:52] *** wa5ted has quit IRC
[19:16:31] *** Shrooms has joined #angularjs
[19:16:31] *** Shrooms has joined #angularjs
[19:17:02] <Vatican> how do you check it
[19:17:12] *** PeterMetz has quit IRC
[19:17:16] <Vatican> i remember that i couldn't see it in the Chrome devtools
[19:17:18] *** wa5ted has joined #angularjs
[19:17:19] *** lw has joined #angularjs
[19:17:21] <Sickness[]> :o
[19:17:29] <Sickness[]> you couldnt? hmm
[19:17:32] *** s00pcan_ has joined #angularjs
[19:17:44] *** bbankes has joined #angularjs
[19:17:55] *** apertoire has joined #angularjs
[19:18:12] <Vatican> check it with fiddler or wireshard
[19:20:35] *** Siecje has quit IRC
[19:22:01] *** BahamutWC|Laptop has quit IRC
[19:22:10] *** JERE has quit IRC
[19:22:17] *** Shrooms has quit IRC
[19:22:23] *** juanpablo_ has quit IRC
[19:22:24] *** numenor has quit IRC
[19:22:58] *** jacuqesdancona has joined #angularjs
[19:23:51] *** jdivock has joined #angularjs
[19:25:27] *** kakashiAL has joined #angularjs
[19:25:29] *** nahoskins has joined #angularjs
[19:27:12] *** jacuqesdancona has quit IRC
[19:27:44] *** tinyfly has joined #angularjs
[19:27:45] <icfantv> Sickness[]: why are you doing the authentication on the client-side?
[19:27:51] *** startupality has quit IRC
[19:28:32] *** kakashiA1 has quit IRC
[19:28:34] *** evotuned has quit IRC
[19:28:35] *** jdivock has quit IRC
[19:29:42] *** snurfery has joined #angularjs
[19:30:10] *** torartc has quit IRC
[19:31:07] *** ahmetkapikiran has quit IRC
[19:31:17] *** RobertMeta has quit IRC
[19:32:20] *** jumpstracks has quit IRC
[19:32:26] *** ximenean__ has joined #angularjs
[19:32:31] *** BillCriswell has quit IRC
[19:32:43] *** zz_night-owl is now known as night-owl
[19:32:58] <christo_m> they expect an "html" parameter with the html inline
[19:33:33] <Sickness[]> icfantv, its a standalone app that should be plugged in websites as is
[19:33:52] *** narutimateum has joined #angularjs
[19:33:54] *** seriema has joined #angularjs
[19:34:20] *** ximenean__ has quit IRC
[19:34:51] *** ish has joined #angularjs
[19:34:53] <Sickness[]> icfantv, though when thinking about it throwing it inside a php page could work for us anyway
[19:34:54] *** ximenean__ has joined #angularjs
[19:35:26] *** proteneer has joined #angularjs
[19:35:43] *** despai has joined #angularjs
[19:36:00] <Sickness[]> I kinda tunnelvisioned on doing it in the angularap and now I just want to have it work
[19:36:42] *** komlev has quit IRC
[19:36:48] *** despai has quit IRC
[19:37:40] *** chrisbirk has joined #angularjs
[19:38:32] <christo_m> Sickness[]: any ideas?
[19:38:37] *** seriema has quit IRC
[19:39:19] *** proteneer has left #angularjs
[19:39:27] *** jdivock has joined #angularjs
[19:39:38] <christo_m> to pass a url rather than inline html.
[19:40:07] *** evilaliv3 has joined #angularjs
[19:40:17] *** pelll0 has quit IRC
[19:41:33] *** nickgs has joined #angularjs
[19:41:57] *** dman777_alter has quit IRC
[19:42:25] *** mary5030 has joined #angularjs
[19:43:51] *** despai has joined #angularjs
[19:44:10] *** dman777_alter has joined #angularjs
[19:46:34] *** Lewix_ has quit IRC
[19:46:50] *** despai has quit IRC
[19:47:07] <Sickness[]> im sorry christo_m, I'm not sure what you're trying to do
[19:47:22] <nahoskins> I can't remember who it was who was joining me on my bitch about ngresource
[19:47:28] *** opiates has quit IRC
[19:47:45] <nahoskins> but I just restumbled on something I used for a recent project "restangular"
[19:47:47] <Sickness[]> I dropped ngresource for restangular just yesterday
[19:47:51] <jaawerth> hmm, ng-attr seems not to be working for me for setting svg viewbox.. wonder if I'm screwing something up
[19:47:51] *** cotko has joined #angularjs
[19:47:55] <nahoskins> which in my opinion is far better
[19:48:02] <nahoskins> cool, just wanted to make sure I shared
[19:48:06] <Sickness[]> :D
[19:48:06] <nahoskins> how are you finding it
[19:48:19] <jaawerth> you're supposed to be able to camelCase stuff by doing ng-attr-camel_case="{{whatever}}"
[19:48:26] <Sickness[]> well in all honesty I've ran into a ton of problems not related to restangular
[19:48:34] *** terakilobyte has quit IRC
[19:48:39] <Sickness[]> the api is not conforming to standards
[19:48:45] <Sickness[]> they wrap wrap wrap wrap responses
[19:48:50] <nahoskins> oh really..
[19:48:51] *** Zentdayn has quit IRC
[19:48:52] <Sickness[]> luckily restangular was prepared for that :P
[19:48:58] <nahoskins> cool!
[19:49:04] <Sickness[]> and you can use a responseinterceptor
[19:49:11] <nahoskins> My main problem was I had some serious issues with resource
[19:49:11] <Sickness[]> to fix the data into a format it can handle
[19:49:15] <nahoskins> nice!
[19:49:25] <Sickness[]> but yeah
[19:49:39] <Sickness[]> I've actually been trying to fix my basic auth for the past 2 days, even before restangular that was a problem
[19:49:47] <nahoskins> My problem was actually with django but I was being blamed for the CORS
[19:49:48] <Sickness[]> I cant get angular to send custom basic auth headers
[19:49:50] *** nuizzy has joined #angularjs
[19:50:00] <nahoskins> so I was shouting at the lack of promises
[19:50:06] <nahoskins> and found restangular a day later
[19:50:27] <nahoskins> was a late late late night hackathon that nearly ended in homicide on both parties
[19:50:32] <nahoskins> bloody python
[19:50:36] <Sickness[]> lol
[19:50:41] <Sickness[]> I've worked with django a lot the past few years
[19:50:48] <jaawerth> oh yeah, I've never dealt with it directly but django is supposed to be a huge pain when it comes to CORS
[19:50:58] <r4vi> it's trivial to get angular to talk to django
[19:51:00] <Sickness[]> hm I have no idea tbh
[19:51:01] <r4vi> even with cors
[19:51:27] *** nickgs has quit IRC
[19:51:29] <jaawerth> that is, setting the CORS header stuff on the Django end - never had to do it myself, but I've witnessed tons of people in here struggle with it
[19:51:44] <nahoskins> especially when you are the front end guy
[19:51:52] <nahoskins> and have no experience with django
[19:51:57] <jaawerth> I'm usually reverse-proxying all my stuff anyway
[19:52:06] <nahoskins> yeah well, that was a nightmare
[19:52:20] <nahoskins> I may have to set up some kind of proxy for those kind of gigs
[19:52:20] *** jdivock has quit IRC
[19:52:38] *** pehlert has joined #angularjs
[19:53:02] <jaawerth> that's what I do for dev on my local machine when it needs to talk to a remote API that doesn't have CORS (and I don't want to set it up, since the intent is not to allow CORS anyway)
[19:53:20] <jaawerth> I have a little gulp task as part of "gulp serve" that sets up a proxy and points it at wherever for any given paths
[19:53:33] *** Shrooms has joined #angularjs
[19:54:28] *** Milkweed has quit IRC
[19:54:34] <Sickness[]> ok I've just verified with wireshark that angular is indeed not sending the basic auth headers
[19:54:37] <Sickness[]> :(
[19:55:22] *** jdivock has joined #angularjs
[19:56:53] *** pehlert has quit IRC
[19:57:20] *** nickgs has joined #angularjs
[19:58:10] <r4vi> are you customising $httpProvider.defaults?
[19:58:12] *** jumpstracks has joined #angularjs
[19:58:36] <Sickness[]> $http.defaults.headers.common.Authorization
[19:58:47] <Sickness[]> I've also tried the restangularprovider
[19:59:07] <Sickness[]> and restangular's setDefaultHeaders
[19:59:30] <nahoskins> hmm
[19:59:50] <nahoskins> I've not had that problem before
[20:00:25] <r4vi> should that be $httpProvider instead of $http
[20:00:44] <r4vi> as in done inside a .config block?
[20:01:25] *** komlev has joined #angularjs
[20:01:34] *** annlewis has joined #angularjs
[20:01:39] <r4vi> hmm just checked the docs
[20:01:42] <r4vi> $http works too
[20:01:55] *** nickgs has quit IRC
[20:01:55] <jaawerth> you'd just need to do it in a run block
[20:02:34] *** chrisshattuck has quit IRC
[20:02:51] *** tSpartak has quit IRC
[20:03:29] *** asheshambasta has joined #angularjs
[20:03:30] *** theotherguy has quit IRC
[20:03:33] <jaawerth> Sickness[]: does it fail to send them both when you use restangular AND when you try and make a request with pure $http?
[20:03:38] <jaawerth> I would try that
[20:03:46] *** erictr1ck has joined #angularjs
[20:03:55] <jaawerth> could be something in restangular is overriding it, so testing pure $http will at least help you narrow down where the problem is
[20:04:01] *** erictr1ck has quit IRC
[20:04:19] *** Vatican has quit IRC
[20:04:32] <dllama> how can i access $valid from a controller?
[20:05:02] <dllama> i have a 4 step form, and am tyring to do validation on each steps,
[20:05:14] <Sickness[]> yeah jaawerth, it was actually failing before I moved to restangular
[20:05:20] *** bmac has joined #angularjs
[20:05:24] <Sickness[]> I'll try again though just to be 100% sure
[20:06:00] *** jdivock has quit IRC
[20:06:19] *** thomasreggi has quit IRC
[20:06:39] <jaawerth> dllama: easiest way is to jusut give the form a name so you can do $scope.formName.$valid. $scope.formName won't populate until after a digest though, so it's a good idea to initialize the object in your controller with $scope.formName = {} to stop stuff from breaking
[20:06:48] *** joroc has joined #angularjs
[20:06:51] <nahoskins> pure http should work
[20:07:13] *** chrisbirk has quit IRC
[20:07:18] <jaawerth> Sickness[]: do you have any interceptors set up that might be overwriting it?
[20:07:57] <dllama> jaawerth: thanks, will try that, i was logging qualifyInfo in my controller and it shows the form object, undefined if i do $scope.qualifyInfo, but i'm going do init the form first in the controller and try again
[20:08:05] <Sickness[]> jaawerth, no I only have a restangular responseinterceptor to fix the data the server sends me
[20:09:34] *** MistahKurtz has joined #angularjs
[20:09:41] *** erictr1ck has joined #angularjs
[20:10:00] *** ximenean__ has quit IRC
[20:10:39] *** aven1 has quit IRC
[20:10:58] *** ChadStrat has joined #angularjs
[20:11:10] *** opiates has joined #angularjs
[20:11:27] <jaawerth> dllama: if you need to do stuff to the ngModel object for that input after giving it a name, you usually have to use $timeout or something so it's been created for your code to work with
[20:11:43] <jaawerth> dllama: you don't need to give the timeout a time or anything, it's just taht you need to let the digest run once
[20:11:58] <Sickness[]> jaawerth, I've just checked with $http.jsonp, same problem
[20:12:06] <jaawerth> strange
[20:12:08] <dllama> ok, trying it now, i'm not really trying to pretty it up too much, my main thing is thati dont want people submitting unfinished forms
[20:12:18] <jaawerth> gotta be something in the code then - I've never seen it just ignore a default header before
[20:12:25] <dllama> my backend code uses a lot of associations and its going to puke if something is missing lol
[20:12:52] <jaawerth> dllama: cool - check out the docs on "form" and "input" and "ngModel", they'll have more details if you need 'em
[20:12:53] *** eago has quit IRC
[20:12:55] *** opiates has quit IRC
[20:13:12] <dllama> yea, i was going to fall back to just writing an ugly function to check against individual model values
[20:13:18] *** whiteboo_ has joined #angularjs
[20:13:28] *** e0ipso is now known as e0ipso|away
[20:13:42] <dllama> something like if (service.foo !== "" && service.foo !== 0 && service.bar !== ""…….) { return true} else { return false }
[20:13:52] <dllama> ugly and super verbose, but has worked before
[20:14:01] <jaawerth> ugh, just use $validators
[20:14:02] *** Sadin has joined #angularjs
[20:14:48] <dllama> that sort of brings me to my next question
[20:14:52] <dllama> i haven't tested this in my code yet
[20:14:57] <dllama> but i'm going to ask first
[20:15:18] <dllama> i have 1 button and i'm just passing in scope.nextStep as the value into the button for what should be the next step
[20:15:40] <dllama> if i'm doing ng-disabled="step1.$invalid || $step2.invalid
[20:15:44] <dllama> fat fingered
[20:16:10] *** jdivock has joined #angularjs
[20:16:15] <dllama> if i'm doing ng-disabled="step1.$invalid || step2.$invalid || step3.$invalid" will that dsiable the button b4 i even get to step2/ 3?
[20:17:02] *** jdivock has quit IRC
[20:17:12] <dllama> thats actually why i wanted to move that logic to the controller and not have 15 if conditions right in the html u know
[20:17:19] *** whiteboo_ has quit IRC
[20:18:43] *** chrisbirk has joined #angularjs
[20:19:47] *** dc_ has joined #angularjs
[20:20:20] *** PrinceAMD has joined #angularjs
[20:20:23] <jaawerth> try it and see!
[20:20:31] <dllama> yea misses all around :)
[20:20:44] <dllama> including console.log($scope.formName) (qualifyLoan in my case)
[20:20:50] <dllama> that just gets logged as {}
[20:21:06] <jaawerth> did you follow my advice about $timeout?
[20:21:17] *** SargoDarya has joined #angularjs
[20:21:23] *** illume has quit IRC
[20:21:31] <dllama> not yet, doing it now
[20:21:35] <jaawerth> lol
[20:21:37] *** soee_ has joined #angularjs
[20:21:44] <dllama> i wanted to test first :D
[20:22:17] *** soee has quit IRC
[20:23:11] <dllama> is there a numeric value i should add to the timeout?
[20:23:37] *** cakirke has joined #angularjs
[20:23:46] *** loverajoel has joined #angularjs
[20:23:53] *** erictr1ck has quit IRC
[20:24:36] *** startupality has joined #angularjs
[20:24:48] <jaawerth> no - Also, I already told you that :P
[20:25:04] <dllama> sorry i missed it
[20:27:24] *** evanjs has quit IRC
[20:27:43] <dllama> hmm, either i'm doign this wrong, or i just did something thats now breaking blockUI lol
[20:28:05] <adamsilver> why a new session is created on my server with every angular $http.get request instead of using the existing one?
[20:28:06] <dllama> $timeout($scope.validateFields()); and validateFields just has a bunch of console.log() stuff in it
[20:28:15] *** Nivag_ has joined #angularjs
[20:28:34] *** chrisbirk has quit IRC
[20:28:40] <dllama> adamsilver: are you using token auth?
[20:29:04] <dllama> u were asking about it yesterday, is the token being rotated on each request?
[20:29:55] <adamsilver> dllama: not yet. my server sends a post request to the server with user and pass and creates a session. Now on every subsequent angular ajax request a new session record is created on my server
[20:30:14] <adamsilver> my server = my app
[20:30:22] *** richardbkr has quit IRC
[20:30:28] *** lw has quit IRC
[20:30:41] <adamsilver> i don't know what's it's not using the existing one that i created?
[20:30:48] *** test has joined #angularjs
[20:31:01] <test> hi
[20:31:38] *** prbc has joined #angularjs
[20:32:41] *** evanjs has joined #angularjs
[20:32:57] *** test has left #angularjs
[20:33:16] *** Bade has quit IRC
[20:34:26] *** lolmaus has joined #angularjs
[20:34:46] *** lw has joined #angularjs
[20:34:54] <dllama> jaawerth: just tried it again, with timeout, no time set, no dice
[20:34:56] *** seriema has joined #angularjs
[20:34:56] *** lw has quit IRC
[20:35:53] *** prbc has quit IRC
[20:36:47] *** aven1 has joined #angularjs
[20:36:56] *** TheAceOfHearts has joined #angularjs
[20:38:09] *** lw has joined #angularjs
[20:38:26] *** loverajoel has quit IRC
[20:38:34] *** m0n4m33 has joined #angularjs
[20:38:48] *** joroc has quit IRC
[20:38:50] *** digid has joined #angularjs
[20:38:59] *** digid is now known as digid-
[20:39:02] <jaawerth> dllama: make a plnkr
[20:40:03] *** seriema has quit IRC
[20:40:19] *** erictr1ck has joined #angularjs
[20:41:45] *** m0n4m33 has quit IRC
[20:41:49] *** bmac has quit IRC
[20:42:03] *** lw has quit IRC
[20:43:02] *** startupality has quit IRC
[20:43:40] *** SargoDarya has quit IRC
[20:44:19] *** despai has joined #angularjs
[20:45:17] *** s00pcan_ has quit IRC
[20:45:47]
<digid-> Hey, i'm new to angular and have a question about directives, i simply want to create a directive that will render a specific html page based on an attribute i pass to it, however, my directive just says the attribute is undefined, i tried using observer, and watch to remedy the issue, is there a fundamentally concept about angular i'm not understanding? Here is my gist https://gist.github.com/anonymous/9bd089e2ca33d0c7d052
[20:45:53] *** kentaro0919 has joined #angularjs
[20:46:07] *** whunt has joined #angularjs
[20:46:28] *** ulkesh_ has quit IRC
[20:46:49] *** ulkesh has joined #angularjs
[20:47:46] *** bbankes has quit IRC
[20:48:05] *** gunn has joined #angularjs
[20:48:21] *** fotoflo has joined #angularjs
[20:49:03] *** grumpyOldRussian has quit IRC
[20:49:34] *** sbellina has quit IRC
[20:50:39] *** nahoskins has quit IRC
[20:51:04] *** nahoskins has joined #angularjs
[20:51:29] *** evanjs has quit IRC
[20:52:21] *** gunn has quit IRC
[20:52:26] *** kentaro0919 has quit IRC
[20:53:20] *** pehlert has joined #angularjs
[20:53:20] <jaawerth> digid-: camelCase turns into camel-case on the template
[20:53:33] <jaawerth> so.. element-type
[20:53:56] <jaawerth> because HTML doesn't care about case
[20:54:21] *** kentaro0919 has joined #angularjs
[20:55:30] <digid-> aaah! thank you
[20:55:37] <caitp> and doesn't it just drive you crazy?
[20:55:54] *** despai has quit IRC
[20:56:46] *** cthrax has quit IRC
[20:57:35] *** despai has joined #angularjs
[20:58:04] *** pehlert has quit IRC
[20:58:49] *** rickhanlonii has joined #angularjs
[20:59:12] *** Zentdayn has joined #angularjs
[20:59:27] *** Zentdayn has quit IRC
[20:59:38] *** erictr1ck has quit IRC
[20:59:50] *** evotuned has joined #angularjs
[21:00:01] <jaawerth> caitp: it is right now! I tried using ng-attr-view_box for an SVG and it laughed at me :(
[21:00:32] *** lemur has joined #angularjs
[21:01:32] *** ChadStrat has quit IRC
[21:01:47] <caitp> i mean that would work if we had logic to translate snake case into camel case
[21:01:48] <caitp> but we don't
[21:01:57] <caitp> and even if we did it would still be terrible
[21:02:11] <caitp> you just can't win with html :(
[21:02:23] *** mjw56 has joined #angularjs
[21:03:09] <jaawerth> caitp: the docs say you do!
[21:03:44] *** rickhanlonii has quit IRC
[21:03:55] *** apparition168 has quit IRC
[21:04:10] <jaawerth> the example shows <svg ng-attr-view_box="{{viewBox}}"> claiming it will convert to camelCase
[21:04:19] *** evotuned has quit IRC
[21:04:21] <caitp> yeah you're right, we do now
[21:04:25] *** PeterMet_ has quit IRC
[21:04:27] *** apparition168 has joined #angularjs
[21:04:34] <caitp> ever since november 22
[21:05:02] *** doodlehaus has joined #angularjs
[21:05:27] *** bmac has joined #angularjs
[21:05:40] *** jangoh has quit IRC
[21:06:14] <jaawerth> it might be broken though, I'm on 1.3.7 and the docs for it include mention of that capability, but no dice
[21:06:39] *** bbankes has joined #angularjs
[21:06:48] *** JeffBuhrt has quit IRC
[21:06:53] <jaawerth> hmm, nope, works in a plunk. must be a "me" thing
[21:06:55] *** joroc has joined #angularjs
[21:07:41] *** evanjs has joined #angularjs
[21:08:00] *** bbankes_ has joined #angularjs
[21:08:20] *** whunt has quit IRC
[21:08:24] *** evanjs has quit IRC
[21:08:34] *** nahoskins has quit IRC
[21:09:22] *** icfantv has quit IRC
[21:09:24] *** doodlehaus has quit IRC
[21:09:47] *** bbankes_ has quit IRC
[21:10:06] *** bbankes_ has joined #angularjs
[21:10:17] *** aven1 has quit IRC
[21:10:35] *** whitebook has joined #angularjs
[21:10:36] <jaawerth> ahh, I'd just done a bower update, that explains why it's working now
[21:10:52] *** ximenean__ has joined #angularjs
[21:11:36] <digid-> ugh, now link option just loops endlessly, what would cause that behavior? would it be because its trying to modify itself causing it to re-run the directive?
[21:11:53] *** bbankes has quit IRC
[21:12:23] <jaawerth> aww, spoke too soon
[21:12:27] *** gunn has joined #angularjs
[21:12:33] *** whitebook has quit IRC
[21:12:37] *** earthquake has quit IRC
[21:13:34] <jaawerth> digid-: compile the template and then append instead
[21:14:07] *** IvailoStoianov has quit IRC
[21:14:20] <digid-> what do youmean?
[21:15:23] *** ximenean__ has quit IRC
[21:17:49] *** cotko has quit IRC
[21:17:51] *** bmac has quit IRC
[21:19:45] <jaawerth> var node = $compile(templateString)(scope); element.append(node)
[21:23:14] *** gunn has quit IRC
[21:23:25] <digid-> is that different than what i'm already doing?
[21:24:46] *** nickgs has joined #angularjs
[21:28:08] *** TheAceOfHearts has quit IRC
[21:29:51] *** despai has quit IRC
[21:29:56] *** shinnya has quit IRC
[21:30:08] *** metasansana has quit IRC
[21:30:20] *** illume has joined #angularjs
[21:30:39] *** MistahKurtz has quit IRC
[21:31:25] *** WhatsInTheBoks has joined #angularjs
[21:32:16] *** prbc has joined #angularjs
[21:36:05] *** seriema has joined #angularjs
[21:36:52] *** aven1 has joined #angularjs
[21:36:54] *** prbc has quit IRC
[21:36:56] <jaawerth> I find it to be a cleaner approach - it's worth a try anyway
[21:37:07] *** despai has joined #angularjs
[21:37:35] *** saucey has joined #angularjs
[21:37:58] *** ctanga_ has joined #angularjs
[21:38:58] <digid-> Yeah, i tried it, but i still have a compile/link'ing issue causing infinite recusion
[21:39:34] <digid-> i'm reviewing the docs i am missing something with angular life cycle or something i think
[21:39:34] *** ctanga has quit IRC
[21:39:34] *** ctanga_ is now known as ctanga
[21:40:05] *** eago has joined #angularjs
[21:40:18] *** joroc has quit IRC
[21:40:34] *** seriema has quit IRC
[21:41:07] *** SargoDarya has joined #angularjs
[21:41:11] <jaawerth> digid-: are you making any non-idempotent changes in functions called via the view, or templates on the view?
[21:41:21] <jaawerth> because that'll cause the digest to keep firing forever
[21:45:28] *** SargoDarya has quit IRC
[21:45:29] *** Cronoh has joined #angularjs
[21:46:04] *** nickgs has quit IRC
[21:48:57] <jaawerth> well, I'm not saying it's this necessarily but
[21:49:05] <jaawerth> var node = $compile(data)(scope)
[21:49:08] <jaawerth> not element.contents()
[21:49:40] *** digid- has quit IRC
[21:50:19] <jaawerth> I gotta head out for a while, but good luck
[21:50:24] *** komlev has quit IRC
[21:50:43] *** iksik has quit IRC
[21:50:44] *** WhatsInTheBoks has quit IRC
[21:51:37] *** johnstorey has joined #angularjs
[21:52:05] *** drag0nius has quit IRC
[21:53:22] *** Zentdayn has joined #angularjs
[21:53:54] *** PrinceAMD has quit IRC
[21:54:26] *** ximenean__ has joined #angularjs
[21:54:28] *** pehlert has joined #angularjs
[21:54:53] *** Sawbones has quit IRC
[21:55:13] *** iksik has joined #angularjs
[21:56:05] *** boneskull has quit IRC
[21:56:37] *** ries has quit IRC
[21:57:54] *** scythe__ has quit IRC
[21:58:56] *** scythe__ has joined #angularjs
[21:59:13] *** pehlert has quit IRC
[22:00:00] *** johnstorey has quit IRC
[22:00:19] *** illume has quit IRC
[22:00:30] *** johnstorey has joined #angularjs
[22:01:01] *** evotuned has joined #angularjs
[22:01:43] <Sickness[]> Does anyone see something wrong with this bit of code where I set my authorization header?
[22:01:55] *** dcherman has joined #angularjs
[22:01:56] *** boneskull has joined #angularjs
[22:03:15] *** prbc has joined #angularjs
[22:03:55] *** joshontheweb has joined #angularjs
[22:04:14] *** digid- has joined #angularjs
[22:04:38] *** lemur has quit IRC
[22:05:06] *** jumpstracks has quit IRC
[22:05:13] *** lemur has joined #angularjs
[22:05:49] *** evotuned has quit IRC
[22:06:01] *** josh-k has joined #angularjs
[22:06:43] *** whunt has joined #angularjs
[22:06:54] *** joroc has joined #angularjs
[22:07:47] *** sahbeewah_ has joined #angularjs
[22:07:48] *** boneskull has quit IRC
[22:08:57] *** aven1 has quit IRC
[22:09:58] *** h0ru5 has joined #angularjs
[22:10:00] *** lemur has quit IRC
[22:10:02] *** Sadin has quit IRC
[22:10:38] *** TheAceOfHearts has joined #angularjs
[22:12:48] *** jacuqesdancona has joined #angularjs
[22:14:34] *** robdubya has joined #angularjs
[22:15:01] *** joshontheweb has quit IRC
[22:15:08] *** h0ru5 has quit IRC
[22:16:53] *** jacuqesdancona has quit IRC
[22:17:46] *** pushpak has quit IRC
[22:18:18] *** annlewis has quit IRC
[22:18:47] *** johnstorey has quit IRC
[22:19:56] *** whitebook has joined #angularjs
[22:21:41] *** despai has quit IRC
[22:21:57] *** snurfery has quit IRC
[22:22:18] *** despai has joined #angularjs
[22:22:26] *** ChadStrat has joined #angularjs
[22:22:53] *** MistahKurtz has joined #angularjs
[22:23:03] *** scythe__ has quit IRC
[22:24:33] *** mmealling has quit IRC
[22:25:44] *** whiteboo_ has joined #angularjs
[22:26:58] *** whitebo__ has joined #angularjs
[22:27:56] *** bayousoft has quit IRC
[22:28:03] *** despai has quit IRC
[22:28:18] *** whitebook has quit IRC
[22:28:27] *** pehlert has joined #angularjs
[22:28:48] *** nuizzy has quit IRC
[22:28:59] *** michaelSharpe has joined #angularjs
[22:29:34] *** digid- has quit IRC
[22:30:02] *** whiteboo_ has quit IRC
[22:31:50] *** j_wright has quit IRC
[22:32:12] *** whitebo__ has quit IRC
[22:32:12] *** michaelSharpe has quit IRC
[22:32:36] *** PeterMetz has joined #angularjs
[22:33:01] *** bayousoft has joined #angularjs
[22:33:10] *** cthrax has joined #angularjs
[22:33:26] *** michaelSharpe has joined #angularjs
[22:34:19] *** Aerospar_ has joined #angularjs
[22:34:58] *** pehlert has quit IRC
[22:35:05] *** j_wright has joined #angularjs
[22:35:19] *** j_wright has joined #angularjs
[22:36:08] *** DLSteve has quit IRC
[22:36:56] *** aven1 has joined #angularjs
[22:37:00] *** ximenean__ has quit IRC
[22:37:04] *** seriema has joined #angularjs
[22:37:10] *** whunt has quit IRC
[22:37:11] *** michaelSharpe has quit IRC
[22:37:24] *** michaelSharpe has joined #angularjs
[22:37:47] *** dc_ has quit IRC
[22:38:57] *** joroc has quit IRC
[22:39:03] *** nemothekid has joined #angularjs
[22:39:13] *** johnstorey has joined #angularjs
[22:40:14] *** Aerospar_ has quit IRC
[22:41:12] <jaawerth> Sickness[]: that's fine - in fact, if you test it in a plnkr (substituting dummy data for the header value), I guarantee it'll show up in your dev tools' headers
[22:41:15] *** michaelSharpe has quit IRC
[22:41:25] <jaawerth> caitp: Aha, figured it out! Having jquery in your project breaks the new ng-attr behavior
[22:41:28] *** iksik has quit IRC
[22:42:24] *** seriema has quit IRC
[22:42:34] *** SargoDarya has joined #angularjs
[22:42:50] *** ChadStrat has quit IRC
[22:43:17] *** nemothekid has quit IRC
[22:44:04] *** FunnyLookinHat has quit IRC
[22:44:10] *** Soxad has joined #angularjs
[22:44:19] *** Hestil has joined #angularjs
[22:44:39] <caitp> does it
[22:44:47] <caitp> you should file a bug, because it shouldn't
[22:45:05] <jaawerth> yeah, just throwing the demo plunks together now
[22:45:46] <jaawerth> in the meantime maybe I can just remove jquery. I only had it in there because I was using a module that requires it for convenience
[22:46:22] *** danecando has joined #angularjs
[22:46:49] *** sbellina has joined #angularjs
[22:46:57] *** narutimateum has quit IRC
[22:47:11] *** icfantv has joined #angularjs
[22:47:15] <jaawerth> caitp: More than likely, it's using element.attr to set the attribute, and jquery will force those into lowercase. My guess is they worked around that behavior for jqlite but the jquery replacement changes it back
[22:47:18] <Soxad> is there a way to return a value from a service after an asynchronous function has finished executing without using $interval or some other kind of time delay
[22:47:35] <jaawerth> promises!
[22:47:54] <Soxad> but i dont want to return a promise to my controller i want to do it all in the serviec
[22:48:04] *** dc_ has joined #angularjs
[22:48:08] <icfantv> promises promises
[22:48:14] <Soxad> o my
[22:48:26] *** ChadStrat has joined #angularjs
[22:48:59] *** johnstorey has quit IRC
[22:48:59] <Soxad> so i have to return a promise?
[22:49:52] *** chrisshattuck has joined #angularjs
[22:50:16] *** grogs has quit IRC
[22:50:52] *** chrisshattuck has quit IRC
[22:51:24] *** sbellina has quit IRC
[22:51:35] <Soxad> what i don't get is if i use a return statement inside a promise its returning to the promise callback and not the service callback
[22:52:15] *** threesixes has joined #angularjs
[22:52:27] <Soxad> and the return in the service callback doesn't work because the function in the service is asynchronous
[22:52:29] <robdubya> you should always return the promise
[22:52:45] <robdubya> and $timeout returns a promise
[22:52:46] <robdubya> so
[22:52:49] <jaawerth> Soxad: values returned from within a promise are wrapped in another promise
[22:53:03] <jaawerth> the only way around staying in promise-land is by using a resolve (or something like it)
[22:53:32] <jaawerth> just put all the logic waiting on the promise in one or more functions, it will simplify your code because then you can just do
[22:53:35] <robdubya> embrace the promise, don't fight it
[22:53:56] <jaawerth> thatPromise.then(yourFunc) or thatPromise.then(function() { return yourFunc(arg1, arg2...) })
[22:54:15] *** beckyconning_ has joined #angularjs
[22:54:34] <Soxad> thats inside the controller right
[22:54:38] <jaawerth> yeah
[22:55:33] <jaawerth> or a factory/service if it's functionality you may reuse
[22:55:48] <jaawerth> (I try to keep my controllers really short, just the stuff that's case-specific for that controller)
[22:56:24] *** Shai_Tan has joined #angularjs
[22:57:36] <Soxad> alright... embrace the promise...
[22:58:21] *** SargoDarya has quit IRC
[22:58:24] *** prbc has quit IRC
[22:58:51] *** grogs has joined #angularjs
[22:58:55] <icfantv> robdubya: words to live by, right there.
[22:59:10] *** despai has joined #angularjs
[22:59:19] *** darryl has quit IRC
[22:59:46] *** alpha080 has joined #angularjs
[23:00:12] *** RossJH has joined #angularjs
[23:00:47] *** cotko has joined #angularjs
[23:00:54] *** asheshambasta1 has joined #angularjs
[23:01:25] *** mary5030 has quit IRC
[23:01:57] *** asheshambasta has quit IRC
[23:02:00] *** mary5030 has joined #angularjs
[23:02:08] *** Aerospark has joined #angularjs
[23:02:10] *** evotuned has joined #angularjs
[23:04:07] *** cakirke has quit IRC
[23:04:44] *** ProLoser has joined #angularjs
[23:05:51] *** doodlehaus has joined #angularjs
[23:06:04] *** mary5030 has quit IRC
[23:06:05] *** Aerospark has quit IRC
[23:06:38] *** warehouse13 has joined #angularjs
[23:06:59] *** joroc has joined #angularjs
[23:07:03] *** evotuned has quit IRC
[23:07:35] *** Jagga has joined #angularjs
[23:07:44] *** Left_Turn has quit IRC
[23:08:59] *** aven1 has quit IRC
[23:09:31] *** sgen__ has joined #angularjs
[23:10:46] *** doodlehaus has quit IRC
[23:11:54] *** chrisshattuck has joined #angularjs
[23:12:13] *** dman777_alter has quit IRC
[23:13:11] *** asheshambasta1 has quit IRC
[23:13:53] *** Aerospark has joined #angularjs
[23:14:38] *** iksik has joined #angularjs
[23:15:11] *** icfantv has quit IRC
[23:16:05] *** ries has joined #angularjs
[23:16:33] *** jtimon has joined #angularjs
[23:16:38] <ProLoser> hey guys
[23:16:45] <ProLoser> UniBot++
[23:16:45] <UniBot> unibot Karma: 1
[23:16:52] <ProLoser> unibot123++
[23:16:56] <ProLoser> cool
[23:17:18] *** grumpyOldRussian has joined #angularjs
[23:19:10] *** annlewis has joined #angularjs
[23:19:18] *** Oddman has joined #angularjs
[23:20:12] *** dllama has quit IRC
[23:20:27] *** annlewis has quit IRC
[23:20:59] *** annlewis has joined #angularjs
[23:21:16] <cthrax> Anyone in here pretty good with angular-bootstrap?
[23:22:25] <cthrax> I want the dropdown functionality that dropdown provides, with the caveat that I only want to close the drop down when I click a particular button in the menu
[23:22:30] <cthrax> rather than clicking anywhere in the menu
[23:22:38] *** Cronoh has quit IRC
[23:22:58] *** leolrrj_ has quit IRC
[23:23:56] *** ytsejam has quit IRC
[23:24:08] <jaawerth> I'll try to dig into the code and submit a PR if I can find time, but figured it wouldn't hurt to get the issue logged in the meantime
[23:27:07] *** Cronoh has joined #angularjs
[23:27:48] *** tschundeee has joined #angularjs
[23:27:49] *** ChadStrat has quit IRC
[23:28:13] *** leolrrj has joined #angularjs
[23:28:41] *** tschundeee has quit IRC
[23:28:54] *** tschundeee has joined #angularjs
[23:30:43] *** pehlert has joined #angularjs
[23:30:43] *** fotoflo has quit IRC
[23:32:53] *** leolrrj has quit IRC
[23:33:31] *** annlewis has quit IRC
[23:34:04] *** qdk has joined #angularjs
[23:34:59] *** mylord has quit IRC
[23:35:09] *** prbc has joined #angularjs
[23:35:12] *** pehlert has quit IRC
[23:35:20] *** mary5030 has joined #angularjs
[23:35:34] *** mary5030 has quit IRC
[23:35:56] *** Aerospark has quit IRC
[23:36:11] *** mary5030 has joined #angularjs
[23:36:59] *** mylord has joined #angularjs
[23:37:27] *** ximenean__ has joined #angularjs
[23:38:01] *** seriema has joined #angularjs
[23:40:19] *** one_zero has joined #angularjs
[23:40:35] *** slickuser has joined #angularjs
[23:40:35] *** slickuser has joined #angularjs
[23:40:39] *** slickuser has left #angularjs
[23:41:43] *** ximenean__ has quit IRC
[23:41:58] *** asheshambasta has joined #angularjs
[23:42:45] *** seriema has quit IRC
[23:43:44] *** Menorah has joined #angularjs
[23:43:45] *** sahbeewah_ has quit IRC
[23:46:23] *** tinyfly has quit IRC
[23:48:29] *** Nivag_ has quit IRC
[23:49:25] <Foxandxss> well, christmas dinner done
[23:49:26] *** nemothekid has joined #angularjs
[23:49:35] *** DLSteve has joined #angularjs
[23:49:41] *** nemothekid has quit IRC
[23:50:04] <ProLoser> i need some design help
[23:50:12] *** Nivag_ has joined #angularjs
[23:50:34] *** sbellina has joined #angularjs
[23:55:05] *** whunt has joined #angularjs
[23:55:11] *** chrisshattuck has quit IRC
[23:55:21] *** SargoDarya has joined #angularjs
[23:55:25] <robdubya> jaawerth that's a bit of a bummer
[23:55:57] *** nemothekid has joined #angularjs
[23:56:26] *** Aerospark has joined #angularjs
[23:56:50] *** Nivag has quit IRC
[23:57:41] *** mary5030 has quit IRC
[23:58:12] *** mary5030 has joined #angularjs
[23:58:51] *** platonic has joined #angularjs
[23:59:10] *** whitebook has joined #angularjs
[23:59:23] *** Cronoh has quit IRC
[23:59:31] *** uris77 has quit IRC
[23:59:49] *** Nivag has joined #angularjs