Switch to DuckDuckGo Search
   November 26, 2014  
< | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | >

Toggle Join/Part | bottom
[00:00:12] <wafflej0ck> and think forEach actually passes the collection later like (iterant, index, collection) or something along those lines
[00:00:14] *** mokush has quit IRC
[00:00:21] <Grokling> That's what I figured. But, when I leave a log in there, I see a log message for EVERY element in the incoming array which seems wrong...
[00:00:33] <wafflej0ck> hmm
[00:00:34] *** cilkay has joined #angularjs
[00:00:38] <wafflej0ck> that does seem wrong
[00:01:01] *** fataldecrease has quit IRC
[00:01:09] <helen_> I think you're thinking of using filter: where the filter takes an argument that gets called for each thing
[00:01:16] *** memento_ has joined #angularjs
[00:01:31] <helen_> but a filter takes whatever u give it as input
[00:01:34] *** oncenull has quit IRC
[00:01:47] *** fataldecrease has joined #angularjs
[00:01:48] <Grokling> Here's some code: http://pastebin.com/gEQDHqQT
[00:02:53] *** dman777_alter has quit IRC
[00:02:56] <Grokling> console logs 'list' as the full array, once for each element in 'lists'
[00:03:01] *** dannyc has joined #angularjs
[00:03:15] *** jdcasey has quit IRC
[00:03:43] *** vdiaz has quit IRC
[00:03:52] *** djam90 has quit IRC
[00:03:52] *** seiyria has quit IRC
[00:03:59] <Grokling> helen_: maybe I'm being backwards about it.. perhaps I need to pass my function to the 'filter' filter instead.
[00:04:02] <helen_> then the filter is getting called multiple times
[00:04:11] *** seiyria has joined #angularjs
[00:04:14] <wafflej0ck> Grokling: seems okay http://plnkr.co/edit/b6IZUVWBygdZ4nenNUql?p=preview
[00:04:45] <helen_> how are u adding stuff to collectionOfThings?
[00:04:57] *** JSONB has quit IRC
[00:05:13] <ish> can "arguments" be passed into a directive like: my-directive="arguments"? Or do I have to specify each argument as an additional attribute?
[00:05:49] <wafflej0ck> ish: you can two-way bind an object in the directive scope like scope:{myDirective:'='} and pass in an "options object"
[00:06:05] <wafflej0ck> ish: lots of directives do this like ngTable and I think the google-maps one
[00:06:13] *** edy has quit IRC
[00:06:15] <wafflej0ck> ngGrid, few others at least
[00:06:16] *** baweaver has quit IRC
[00:06:18] *** prbc has joined #angularjs
[00:06:50] *** hell_razer has joined #angularjs
[00:06:57] *** Johnny13371337 has quit IRC
[00:07:08] <Grokling> wafflej0ck: I'm going to play with that and make it closer to what I have.. There's going to be a simple answer I'm sure!
[00:07:24] *** dannyc has quit IRC
[00:07:34] <helen_> Grokling: ur probably triggering more digest cycles than u want to
[00:07:44] <wafflej0ck> ^ yup agree with that
[00:07:45] *** anivemin has joined #angularjs
[00:07:49] <wafflej0ck> probably just extra digests hitting it
[00:07:56] *** FrankH_ has joined #angularjs
[00:08:05] <wafflej0ck> you can use the filter in the controller or service if you want to just run it in advance on the data
[00:08:11] <Grokling> There are no data changes happening here - nothing bound changes.
[00:08:18] *** hell_razer has quit IRC
[00:08:28] *** hell_raz_ has joined #angularjs
[00:08:37] <wafflej0ck> like obj.formattedProp = $filter('myFilter')(obj.prop);
[00:08:45] *** trend has joined #angularjs
[00:08:45] *** cakirke has joined #angularjs
[00:09:01] <helen_> yes but itll trigger in digest cycles because it has to execute collectionOfThings | myCustomFilter to see if it changes or not
[00:09:07] <wafflej0ck> yup
[00:09:10] *** phuh has quit IRC
[00:09:15] <wafflej0ck> don't think it's uber smart about that
[00:09:19] *** onc3null has quit IRC
[00:09:24] <wafflej0ck> just execute all the things
[00:09:37] *** phuh has joined #angularjs
[00:09:57] <helen_> well it doesnt know if it changes :P cuz filters are really functions
[00:10:04] <helen_> until it executes them
[00:10:18] <wafflej0ck> helen_: true but could know if the parameters or input itself changed
[00:10:43] <helen_> yes, thats true :P but not how it works hehe
[00:10:46] *** quantax- has quit IRC
[00:10:47] <wafflej0ck> yea
[00:10:49] <Grokling> I have a collection of things, I'm using a filter to spit them into different groups (displayed in different places)
[00:11:57] *** anivemin has quit IRC
[00:12:53] *** hell_raz_ has quit IRC
[00:13:23] *** memento_ has quit IRC
[00:13:42] *** chrisshattuck has joined #angularjs
[00:14:26] *** mary5030_ has joined #angularjs
[00:15:10] *** johnnyfive has quit IRC
[00:15:15] *** dseitz has joined #angularjs
[00:15:28] <wafflej0ck> Grokling: yeah might be better to just maintain some extra arrays pointing to the same objects but with the prefiltered versions if you're concerend about the runtime of the filter
[00:15:34] *** johnnyfive has joined #angularjs
[00:15:58] <wafflej0ck> I don't typically address performance until it's in my face though
[00:16:07] *** caitp has quit IRC
[00:16:09] <Grokling> I've been down that track last time.. It wasn't so much about runtime, just that there seemed to be more executions than I expected..
[00:16:20] <wafflej0ck> yeah no need to worry about that
[00:16:24] <wafflej0ck> the computer is doing a lot of stuff :)
[00:17:03] <helen_> I like filtering in directives instead of HTML :P get more control over what stuff does xd
[00:17:09] <wafflej0ck> 2.0GHz is 2 Billion clockcycles per second and a basic low level operation only takes a few er 5 ticks to complete
[00:17:22] <wafflej0ck> I don't worry about every little execution
[00:17:29] <wafflej0ck> only the ones that stack up to noticeable time
[00:17:47] *** areologist has quit IRC
[00:17:49] <helen_> but when ur looking at lists... it could easily end up in a performance problem =p if the list ever gets long
[00:17:54] *** tech2 has quit IRC
[00:18:03] *** mary5030 has quit IRC
[00:18:05] <wafflej0ck> yeah long lists are problematic but I think virtualization is the answer to that
[00:18:21] <wafflej0ck> that's how it wa solved in AS3 and seems to work pretty well in JS too
[00:18:31] *** vassagus has quit IRC
[00:18:50] <wafflej0ck> just create as many DOM elements as a person can see + a few offscreen then just swap their positions around where the user can't see and change out the data but don't create new DOM elements
[00:19:05] *** plato has joined #angularjs
[00:19:32] *** plato1 has quit IRC
[00:19:40] <Grokling> I'm already only presenting a restricted dataset, so the 'long lists' issue is fine. 2.0GHz is a lot of mobile device, and when I'm already pushing 1800 watchers, I'm conscious of loading anything more on the pile!
[00:19:43] <wafflej0ck> the only difficulty really is if you have variable height elements
[00:20:05] *** d10n-work has joined #angularjs
[00:20:11] <wafflej0ck> Grokling: eh just saying good to profile and get the big drains instead of worry about things that may not really actually matter
[00:20:34] *** marcjs_ has joined #angularjs
[00:20:50] <wafflej0ck> is 2.0GHz a lot on mobile? I've got a Nexus 5 2.26 GHz quad-core Krait 400
[00:20:54] <wafflej0ck> according to le googles
[00:20:56] *** a3gis has quit IRC
[00:21:06] <Grokling> Agreed. Just seeing what was happening shook my understanding of how stuff works, so I wanted to get to the bottom of it to better understand what was happening.
[00:21:14] <wafflej0ck> yeah totally
[00:21:19] <Sawbones> I'd like to say, I'm sorry I left you angular
[00:21:33] <Sawbones> Today I said I'd try a different js framework and it went horribly
[00:21:43] <wafflej0ck> Sawbones: what'd you try?
[00:21:46] *** mary5030_ has quit IRC
[00:21:50] <Sawbones> wafflej0ck: React
[00:21:59] *** juanpablo_ has joined #angularjs
[00:22:06] *** cthrax_ has quit IRC
[00:22:18] *** mary5030 has joined #angularjs
[00:22:22] *** Aliks has quit IRC
[00:22:24] <wafflej0ck> bummer heard good things but haven't tried it yet mysefl
[00:22:32] *** yts has quit IRC
[00:22:40] <Grokling> wafflej0ck: Our target users are more likely on a Samsung galaxy ace type device - 800Mhz ARM 11
[00:22:58] <Sawbones> You'll find yourself rewriting your component methods just because you're changing the structure of your html
[00:22:59] *** josh-k_ has joined #angularjs
[00:22:59] *** pen has quit IRC
[00:23:04] *** Prjio has quit IRC
[00:23:06] *** Aliks has joined #angularjs
[00:23:12] *** plato has quit IRC
[00:23:34] *** pen has joined #angularjs
[00:24:04] <wafflej0ck> Grokling: eh yeah I'm just sayin we all got pretty fast processors so a few extra calls doesn't kill things it's just when you're iterating over large sets you'll have a problem I think, but yeah in the case of a filter for splitting an array if it is large you may want to just preprocess it in the factory or something (can still use the filter for the sake of separation of concerns just not as pretty)
[00:24:11] *** marcjs has quit IRC
[00:25:04] *** jheady has joined #angularjs
[00:25:35] *** chromatome has joined #angularjs
[00:25:35] *** j0z has left #angularjs
[00:25:59] *** jheady has left #angularjs
[00:26:25] *** HACKING-FACEBOOK has joined #angularjs
[00:26:27] *** fedenunez1 has quit IRC
[00:26:39] *** quantax- has joined #angularjs
[00:26:40] *** JMZ_DMZ has joined #angularjs
[00:26:44] *** juanpablo_ has quit IRC
[00:27:09] <Grokling> Yeah - so the filter seems to be running twice in plunker, with the full array each time. It's expecting me to return an array. Think I'll go back to preprocessing it in my state resolve.
[00:27:11] *** sirkitree is now known as sirkitree|afk
[00:27:13] *** josh-k has quit IRC
[00:27:20] *** mary5030 has quit IRC
[00:27:58] *** crunch-choco has joined #angularjs
[00:28:04] *** discgo has joined #angularjs
[00:28:17] *** pen has quit IRC
[00:28:42] *** philipd has quit IRC
[00:28:50] *** qdk has quit IRC
[00:29:00] <crunch-choco> guys, when I use element.attr('ng-model', 'blabla') on my directive, it doesn't work. how is that so?
[00:29:29] *** anapitupulu_ has quit IRC
[00:29:38] *** Luser has joined #angularjs
[00:29:53] *** pants_ has joined #angularjs
[00:30:23] *** merobertsjr has quit IRC
[00:30:26] *** punch has joined #angularjs
[00:30:28] *** Oxynum has quit IRC
[00:30:54] <crunch-choco> hm i think it's a scope issue
[00:30:57] *** jackdpeterson has quit IRC
[00:31:08] <wafflej0ck> crunch-choco: you can't just add directives as attributes and expect them to be executed
[00:31:16] *** Aliks has quit IRC
[00:31:24] <wafflej0ck> crunch-choco: you have to use $compile to have angular process the directives and get the link functions then pass the scope to that
[00:31:34] <wafflej0ck> crunch-choco: look into $compile
[00:31:38] *** marcjs__ has joined #angularjs
[00:32:27] *** pretzel80 has joined #angularjs
[00:32:55] <crunch-choco> wafflej0ck: ok, i'm reading abt it now, thank you for the hint :)
[00:32:56] *** Aliks has joined #angularjs
[00:33:07] *** doginal has quit IRC
[00:33:09] *** encryptd_fractl has quit IRC
[00:33:17] *** evilaliv3 has quit IRC
[00:34:28] *** Luser has quit IRC
[00:34:30] <wafflej0ck> crunch-choco: np it takes some fiddling to get it working just right usually but in general it's like var compileElem = $compile(someElement)(scope); iElem.replace(compileElem);
[00:34:55] *** punch has quit IRC
[00:35:21] *** Mikolabs has joined #angularjs
[00:35:23] <crunch-choco> oh tricky, is it the only way to do it?
[00:35:54] *** marcjs_ has quit IRC
[00:35:55] <Mikolabs> hello guys
[00:36:09] <Mikolabs> do you know any big open source project that is using angularjs ?
[00:36:14] *** MistahKurtz has joined #angularjs
[00:36:23] <TheAceOfHearts> lol
[00:36:29] <TheAceOfHearts> everyone looks for good reference projects
[00:36:32] <TheAceOfHearts> but I don't think there's any :(
[00:36:48] <Mikolabs> :(
[00:36:49] *** chrisbirk has quit IRC
[00:36:50] <wafflej0ck> crunch-choco: yeah angular runs $compile initially during bootstrap and on templates but if you are changing attributes or dynamically building elements with directives then you need to run them through compile to get the combined link function that lets you call the link for any found directives and pass in the scope
[00:37:30] <wafflej0ck> crunch-choco: it's not super easy but easier than writing $compile yourself :P
[00:38:01] <crunch-choco> wafflej0ck: ugh
[00:38:05] <crunch-choco> wafflej0ck: right :p
[00:38:33] *** Anton_ has joined #angularjs
[00:39:23] <wafflej0ck> crunch-choco: typically I try to do what I can with templates and built in directives or helper directives as opposed to using $compile directly, but it's not always avoidable or the easiest solution
[00:39:28] *** jonr22 has joined #angularjs
[00:39:52] *** Geertje123_ has quit IRC
[00:40:28] <wafflej0ck> alright time to make some of my components styleable, since currently they are not
[00:41:14] *** mdedetrich has quit IRC
[00:41:28] *** gurke_ has quit IRC
[00:42:10] *** dannyc has joined #angularjs
[00:42:27] *** mdedetrich has joined #angularjs
[00:42:34] *** philipd has joined #angularjs
[00:42:42] <wafflej0ck> Sawbones: ah that sounds kinda terrible actually
[00:43:01] <tjsail33_> anyone know of a good drag/drop library?
[00:43:15] <crunch-choco> wafflej0ck: hehehe :)
[00:43:31] *** plato has joined #angularjs
[00:43:33] *** doginal has joined #angularjs
[00:43:33] *** say2joe has joined #angularjs
[00:43:40] <Sawbones> wafflej0ck: I like angular for the fact that you have a js object, with React you have to do all this BS with states
[00:43:44] *** chrisbirk has joined #angularjs
[00:43:44] *** mclenithan has quit IRC
[00:44:05] <wafflej0ck> Sawbones: yeah will still have to check it out one of these days, so much hype
[00:44:24] <Sawbones> wafflej0ck: You'll be disappointed, it's why I checked it out
[00:45:10] <wafflej0ck> think I'm more interested in integration of Angular with ProcessingJS and MaterialJS/Design stuff than React but I am curious
[00:45:13] *** dnewkerk has quit IRC
[00:45:14] <Sawbones> All these little examples they show look interesting, but actually going through a workflow and you're like, "WTF, this is going to take more time"
[00:46:42] *** dannyc has quit IRC
[00:47:02] <Sawbones> Chaining callbacks so that your state can change is another wtf
[00:47:04] *** macabre has quit IRC
[00:47:08] *** mclenithan has joined #angularjs
[00:47:31] *** iamjmw has joined #angularjs
[00:47:59] *** hapiwondrr has joined #angularjs
[00:48:22] *** disgrntld has left #angularjs
[00:49:03] *** dnewkerk has joined #angularjs
[00:49:06] *** howitdo has quit IRC
[00:49:50] *** mjw56 has joined #angularjs
[00:51:32] <Sawbones> I really hate that I'm passing a function to each child so that it can set onSelect
[00:51:41] <Sawbones> Sorry, wrong channel
[00:51:43] *** oste has joined #angularjs
[00:51:53] *** iamjmw has quit IRC
[00:52:20] <oste> hi i posted this a few hours ago but my irc client failed on me http://plnkr.co/edit/iWHBNyKfwiSUUFKrMQff?p=preview
[00:52:40] <oste> can anyone explain this line $animate.enter(box, parent, element, function() {
[00:52:48] <oste> i am lost on the parent and element arguments
[00:52:54] *** threesixes has quit IRC
[00:52:55] *** HACKING-FACEBOOK has quit IRC
[00:53:14] <oste> i am trying to get this working w/o the directive but having zero luck
[00:53:17] *** weeyum has quit IRC
[00:54:37] *** tjsail33_ has quit IRC
[00:54:40] *** tjsail33 has joined #angularjs
[00:56:30] *** baweaver has joined #angularjs
[00:57:02] *** hell_razer has joined #angularjs
[00:57:12] *** sinequanon has quit IRC
[00:57:15] *** scythe__ has quit IRC
[00:57:46] *** apertoire has joined #angularjs
[00:57:57] *** jeffisabelle has quit IRC
[00:59:13] *** say2joe has quit IRC
[00:59:20] *** knownasilya has quit IRC
[00:59:26] *** mccarrontr1ck has quit IRC
[00:59:32] *** dnull has joined #angularjs
[00:59:33] *** ome has joined #angularjs
[00:59:47] *** HACKING-FACEBOOK has joined #angularjs
[00:59:52] *** marcjs__ has quit IRC
[01:00:00] *** Xenmen has joined #angularjs
[01:00:26] *** marcjs__ has joined #angularjs
[01:01:21] *** digisky has quit IRC
[01:01:42] *** hell_razer has quit IRC
[01:02:06] *** jonr2219 has joined #angularjs
[01:02:20] *** slvrbckt has joined #angularjs
[01:02:25] *** howitdo has joined #angularjs
[01:03:02] *** delight has quit IRC
[01:03:21] *** mkc_ has quit IRC
[01:03:30] *** pretzel80 has quit IRC
[01:03:40] *** FrankH_ has quit IRC
[01:03:42] *** xdissent has joined #angularjs
[01:03:46] *** dannyc has joined #angularjs
[01:04:01] <Xenmen> I have a problem for which I can't think of search terms: I have a page where I'm doing some nesting and async calls, so I need to rig things carefully. I have a parent directive, and a child directive. parent initializes with parent.children=[<array of stuff>]. then I have a tag with ng-repeat="child in children". When my child directive starts up, and returns a controller, how do I get the data for THAT child, located in the
[01:04:01] <Xenmen> parent.children array, that matches THAT child?
[01:04:28] <Xenmen> er, "child in parent.children"
[01:04:37] *** mtho11 is now known as mtho11|pto
[01:04:45] *** mtho11|pto has left #angularjs
[01:05:12] *** bmac has quit IRC
[01:05:32] *** disorder20 has quit IRC
[01:05:37] *** mkc has joined #angularjs
[01:05:49] <Xenmen> or can I not do that from the controller; do I have to have a $scope function defined within the controller, and then in the html say function(child.special_attribute) so that I can act on that data?
[01:05:54] *** ProLoser has joined #angularjs
[01:05:58] *** mmealling has joined #angularjs
[01:07:14] *** mkc has joined #angularjs
[01:07:15] *** jonr22 has quit IRC
[01:07:15] *** sinequanon has joined #angularjs
[01:07:20] *** jonr2219 has quit IRC
[01:07:40] *** plato has joined #angularjs
[01:07:51] *** mrf3000_ has quit IRC
[01:07:57] *** dannyc has quit IRC
[01:08:42] *** snapwich has quit IRC
[01:09:12] *** phuh has quit IRC
[01:09:29] *** pen has joined #angularjs
[01:09:38] *** phuh has joined #angularjs
[01:09:43] *** eBureau has joined #angularjs
[01:09:52] <dsdeiz> anyone can recommend token based authentication?
[01:10:09] *** Matti_ has joined #angularjs
[01:10:16] *** grindmodeon has joined #angularjs
[01:11:34] *** plato1 has joined #angularjs
[01:11:34] *** Matti_ has left #angularjs
[01:11:43] *** caitp has joined #angularjs
[01:11:53] *** NoNMaDDeN has joined #angularjs
[01:12:03] *** tschundeee has quit IRC
[01:12:06] *** sinequanon has quit IRC
[01:12:12] *** rchavik has joined #angularjs
[01:12:18] *** faddah has quit IRC
[01:12:18] *** qdk has joined #angularjs
[01:12:24] *** mrmattipants has joined #angularjs
[01:12:34] *** plato has quit IRC
[01:12:44] <tjsail33> what back end are you using?
[01:12:48] <tjsail33> dsdeiz
[01:12:51] <dsdeiz> silex
[01:13:08] <tjsail33> no idea, sorry
[01:13:31] <dsdeiz> though the idea is that i should just be getting the token through an api call right?
[01:14:08] *** adpirz has joined #angularjs
[01:14:14] *** NoNMaDDeN has quit IRC
[01:15:07] *** zz_night-owl is now known as night-owl
[01:16:42] *** Fuzzy has quit IRC
[01:17:10] *** chrisbirk has quit IRC
[01:17:16] *** jonathanpglick has quit IRC
[01:17:30] *** woebtz has joined #angularjs
[01:18:01] *** mrmattipants has quit IRC
[01:18:42] *** adpirz has quit IRC
[01:19:18] *** tomengland_mbp has quit IRC
[01:20:33] *** Mikolabs has quit IRC
[01:20:33] *** asher^ has joined #angularjs
[01:20:54] *** nanozer2 has quit IRC
[01:21:25] *** jonathanpglick has joined #angularjs
[01:21:44] *** a3gis has joined #angularjs
[01:22:08] *** platonic has joined #angularjs
[01:23:20] *** HACKING-FACEBOOK has quit IRC
[01:23:37] *** jacuqesdancona_ has joined #angularjs
[01:23:50] *** Luser has joined #angularjs
[01:23:57] *** Prjio has joined #angularjs
[01:24:03] *** TyrfingMjolnir has joined #angularjs
[01:24:27] *** mdedetrich has quit IRC
[01:25:07] *** chrisbirk has joined #angularjs
[01:25:31] *** s00pcan has quit IRC
[01:26:10] *** FrankH_ has joined #angularjs
[01:26:17] *** a3gis has quit IRC
[01:26:32] *** platonic has quit IRC
[01:26:40] *** GPH|work has quit IRC
[01:27:39] *** apertoire has quit IRC
[01:27:53] *** jacuqesdancona_ has quit IRC
[01:28:17] *** Luser has quit IRC
[01:28:41] *** nanozer2 has joined #angularjs
[01:28:42] *** Prjio has quit IRC
[01:28:42] *** dacuca has quit IRC
[01:28:52] *** darrin has joined #angularjs
[01:29:09] *** doc|mobile has quit IRC
[01:29:17] *** soee has quit IRC
[01:29:45] *** JMZ_DMZ has quit IRC
[01:30:34] *** punch has joined #angularjs
[01:30:37] *** JMZ_DMZ has joined #angularjs
[01:31:17] *** mdedetrich has joined #angularjs
[01:32:04] *** HACKING-FACEBOOK has joined #angularjs
[01:32:22] *** whunt has quit IRC
[01:33:32] *** rho has quit IRC
[01:34:04] *** doodlehaus has joined #angularjs
[01:34:19] *** faddah has joined #angularjs
[01:34:58] *** mkusher has quit IRC
[01:35:14] *** startupality has quit IRC
[01:35:15] *** ron1 has joined #angularjs
[01:36:11] *** woah has quit IRC
[01:36:12] *** punch has quit IRC
[01:36:38] *** DoubleAW has quit IRC
[01:36:51] *** doginal has quit IRC
[01:37:06] <Sawbones> Does anyone know if the performance hit would be if I just loaded angular for some directives on every page?
[01:37:12] *** DoubleAW has joined #angularjs
[01:37:12] *** bundledavid has joined #angularjs
[01:37:19] <Sawbones> what the performance hit would be*
[01:37:20] *** punch has joined #angularjs
[01:39:43] *** ChadStrat has quit IRC
[01:39:43] *** snurfery has quit IRC
[01:40:07] *** Dead_Thinker has joined #angularjs
[01:40:14] *** dseitz has quit IRC
[01:42:04] *** HACKING-FACEBOOK has quit IRC
[01:42:05] *** bundledavid has quit IRC
[01:42:59] *** dannyc has joined #angularjs
[01:43:22] *** SonikBoom has quit IRC
[01:43:26] *** chrisshattuck has quit IRC
[01:43:41] *** mmealling has quit IRC
[01:43:51] <Obelich> hiyas one question
[01:44:19] <Obelich> how i can make a angular.forEach and sum all total per detail
[01:44:27] *** josh3336 has joined #angularjs
[01:44:32] *** josh3336 has left #angularjs
[01:45:06] *** kwaledesign has joined #angularjs
[01:45:17] <Obelich> for example in $scope.detalles per item i have a field name subtotal i want to make a sum from all subtotal ?
[01:45:45] <Obelich> sorry me english is bad :( i speak spanish
[01:45:48] *** k-dawg has joined #angularjs
[01:45:50] *** morenoh149 has joined #angularjs
[01:45:57] *** AciD`` has quit IRC
[01:46:12] *** TheAceOfHearts has quit IRC
[01:46:35] *** roven has joined #angularjs
[01:46:40] *** doginal has joined #angularjs
[01:47:04] *** michaeltresseras has joined #angularjs
[01:47:22] *** dannyc has quit IRC
[01:47:30] <wafflej0ck> var total = 0; angular.forEach(values, function(value, key) {total+=value.total;}); //assuming values is an array of object each with a total
[01:48:16] *** xdissent has quit IRC
[01:48:31] *** Dead_Thinker has quit IRC
[01:48:58] *** johnnyfive has quit IRC
[01:49:06] *** dantheta has joined #angularjs
[01:49:09] <Obelich> wafflej0ck: testing :) many thanks
[01:49:10] *** faddah has quit IRC
[01:49:23] *** dantheta has quit IRC
[01:49:32] *** CodeFriar has quit IRC
[01:49:34] *** dantheta has joined #angularjs
[01:50:34] *** johnnyfive has joined #angularjs
[01:51:12] *** tfennelly has quit IRC
[01:51:52] *** roven has quit IRC
[01:52:36] <Obelich> wafflej0ck: i have a $scope.total outside of the function i can use this {$scope.total+=value.costo;} ?
[01:52:38] *** plato has joined #angularjs
[01:52:41] *** snurfery has joined #angularjs
[01:53:12] <wafflej0ck> Obelich: yup
[01:53:31] *** jimvideo has quit IRC
[01:53:37] *** plato1 has quit IRC
[01:53:46] <wafflej0ck> Obelich: good to update a temp variable sometimes then assign to scope to avoid triggering lots of digests
[01:54:19] <wafflej0ck> suppose actually in this case you'd still have the same digests but have run into some issues with that
[01:55:17] *** rchavik has quit IRC
[01:55:58] *** morenoh149 has quit IRC
[01:56:29] *** k41s3r has joined #angularjs
[01:56:32] *** whunt has joined #angularjs
[01:56:33] *** anivemin has joined #angularjs
[01:56:48] *** doodlehaus has quit IRC
[01:56:48] *** dimetron has joined #angularjs
[01:57:06] *** Foxandxss has quit IRC
[01:57:54] *** nanozer2 has quit IRC
[01:58:09] *** Mackseraner has joined #angularjs
[01:58:56] *** motionman has joined #angularjs
[01:59:01] *** jimvideo has joined #angularjs
[01:59:45] *** TyrfingMjolnir has quit IRC
[02:00:25] *** TheAceOfHearts has joined #angularjs
[02:00:26] *** TyrfingMjolnir has joined #angularjs
[02:00:48] *** anivemin has quit IRC
[02:01:38] *** thomasreggi has joined #angularjs
[02:02:32] *** mmealling has joined #angularjs
[02:03:03] *** nanozer2 has joined #angularjs
[02:03:07] *** crunch-choco has quit IRC
[02:03:20] *** TheAceOfHearts has quit IRC
[02:03:35] *** k41s3r has quit IRC
[02:04:08] *** jimvideo has quit IRC
[02:04:12] *** AimerPaddle has quit IRC
[02:04:20] *** Embassy has quit IRC
[02:04:20] *** mcastro has joined #angularjs
[02:04:37] *** Luser has joined #angularjs
[02:05:05] *** baweaver has quit IRC
[02:05:26] *** Fuzzy has joined #angularjs
[02:05:28] *** morenoh149 has joined #angularjs
[02:06:27] *** TheAceOfHearts has joined #angularjs
[02:06:39] *** rchavik has joined #angularjs
[02:06:52] *** RedOrangeZ has quit IRC
[02:07:21] *** niop has joined #angularjs
[02:07:23] *** nanozer2 has quit IRC
[02:08:16] *** night-owl is now known as zz_night-owl
[02:08:17] *** sinequanon has joined #angularjs
[02:08:41] *** punch has quit IRC
[02:09:09] *** FrankH_ has quit IRC
[02:09:14] *** Luser has quit IRC
[02:09:14] *** phuh has quit IRC
[02:09:33] *** cboden has quit IRC
[02:09:41] *** phuh has joined #angularjs
[02:09:49] *** angularjs305 has quit IRC
[02:10:16] *** zz_night-owl is now known as night-owl
[02:10:28] *** chintanparikh has joined #angularjs
[02:10:28] <chintanparikh> 45
[02:10:42] *** morenoh149 has quit IRC
[02:10:43] *** anapitupulu_ has joined #angularjs
[02:11:01] <chintanparikh> Hey people - if I have a jQuery plugin (http://clubdesign.github.io/floatlabels.js/), what’s the best way to use it with angular? Write a directive?
[02:11:08] *** night-owl is now known as zz_night-owl
[02:11:34] *** MistahKurtz has quit IRC
[02:11:40] *** jonathanpglick has quit IRC
[02:12:37] *** rho has joined #angularjs
[02:13:08] <wafflej0ck> chintanparikh: yeah I actually helped someone in here with this exact component before
[02:13:33] *** sinequanon has quit IRC
[02:13:34] <chintanparikh> wafflej0ck: Oh awesome. Don’t suppose you have the code still? I’ve never written a directive before
[02:14:12] <wafflej0ck> chintanparikh: I'm sure it's in plunkr somewhere but not something I've kept around, just start writing your directive in plunkr and share if/when you get stuck
[02:14:23] *** punch has joined #angularjs
[02:15:18] <chintanparikh> plunkr?
[02:15:32] *** faddah has joined #angularjs
[02:15:52] *** phuh has quit IRC
[02:16:05] *** phuh has joined #angularjs
[02:16:17] <wafflej0ck> chintanparikh: see the IRC topic, type /topic if you don't see it in your irc client
[02:16:26] <wafflej0ck> chintanparikh: http://plnkr.co/edit/tpl:nKLNBdve51sqOoKZAOUS
[02:16:55] <wafflej0ck> chintanparikh: when you write code in here you can hit save/fork button and will get an updated link in a couple of seconds to share
[02:17:02] <chintanparikh> Ahh awesome, thanks!
[02:17:07] <wafflej0ck> chintanparikh: np
[02:17:34] *** k-dawg has quit IRC
[02:17:42] *** richiebkr has quit IRC
[02:18:18] *** gh0st has quit IRC
[02:20:05] *** chintanparikh has quit IRC
[02:20:20] *** baweaver has joined #angularjs
[02:20:59] *** ctanga has quit IRC
[02:21:05] *** punch has quit IRC
[02:22:43] *** a3gis has joined #angularjs
[02:23:49] *** faddah has quit IRC
[02:23:59] <Obelich> wafflej0ck: many thanks for all i comming tomorrow :)
[02:24:03] *** {DV8} has joined #angularjs
[02:24:09] <Obelich> cya later to all
[02:24:12] <Obelich> nos vemos mañana
[02:24:24] <wafflej0ck> later Obelich
[02:24:30] *** Obelich has quit IRC
[02:25:05] *** chintanparikh has joined #angularjs
[02:25:25] *** chintanparikh has quit IRC
[02:27:12] *** cakirke has quit IRC
[02:27:41] *** a3gis has quit IRC
[02:27:59] *** doginal_ has joined #angularjs
[02:28:02] *** doginal has quit IRC
[02:28:02] *** doginal_ is now known as doginal
[02:28:06] *** ron1 has quit IRC
[02:28:47] *** whitebook has joined #angularjs
[02:28:53] *** eBureau has quit IRC
[02:29:41] *** faddah has joined #angularjs
[02:30:28] *** doginal has quit IRC
[02:30:34] <dsdeiz> any ideas what's this? https://github.com/fnakstad/angular-client-side-auth/blob/master/client/js/routingConfig.js it looks like it's just a module right? though i'm not sure whether it's a service or something else
[02:30:41] *** marr has quit IRC
[02:30:42] *** sajt has quit IRC
[02:30:50] *** rho has quit IRC
[02:31:13] *** bradmaxs has joined #angularjs
[02:31:19] <dsdeiz> oh, it's not a module
[02:31:41] *** nya has joined #angularjs
[02:31:46] *** MaxV_ has quit IRC
[02:32:25] *** michaeltresseras has quit IRC
[02:32:31] *** platonic has joined #angularjs
[02:32:44] *** vonnegut has joined #angularjs
[02:33:15] *** RobinBAwesome has quit IRC
[02:34:08] *** JoshGlzBrk has joined #angularjs
[02:34:22] *** moogey has quit IRC
[02:35:11] <oste> anyone know how to do css animation callbacks with version 1.3?
[02:36:05] *** fairuz has joined #angularjs
[02:36:14] *** jmichaelward has joined #angularjs
[02:36:24] *** RobinBAwesome has joined #angularjs
[02:37:14] *** platonic has quit IRC
[02:37:50] *** RobinBAwesome has quit IRC
[02:38:02] *** punch has joined #angularjs
[02:38:10] *** ron1 has joined #angularjs
[02:38:24] *** grindmodeon has quit IRC
[02:38:59] *** Lewix has joined #angularjs
[02:39:02] *** jgladwill has quit IRC
[02:39:26] <Lewix> why im under the impression that the $http service is easier to use than $resource
[02:39:47] *** codeman has quit IRC
[02:39:57] <vonnegut> $http seems to give you more control and better visibilty into whats happening
[02:40:03] <vonnegut> $resource is more black box
[02:40:32] <vonnegut> go with what ever seems easier for you!
[02:40:32] *** snurfery has quit IRC
[02:40:39] *** tskaggs has quit IRC
[02:41:18] *** jmichaelward has quit IRC
[02:41:23] *** snurfery has joined #angularjs
[02:41:23] <wafflej0ck> Lewix: $resource is easier for RESTful services if you control the backend you write less boilerplate on the front end but $http isn't a huge downgrade either
[02:41:31] *** MuffinMan` has quit IRC
[02:42:02] <wafflej0ck> Lewix: I started off doing it all with $http till I switched to actually setting up proper RESTful endpoints
[02:42:05] *** ciro_nunes has quit IRC
[02:42:20] <Lewix> wafflej0ck: thanks
[02:42:27] <Lewix> restful is so overused
[02:42:36] <Lewix> wafflej0ck: what do you think exactly restful is?
[02:42:38] <Lewix> =)
[02:42:45] *** Mackseraner has quit IRC
[02:43:03] *** rho has joined #angularjs
[02:43:30] <wafflej0ck> Lewix: well ideally stateless though I don't hold 100% to that mostly meaning in terms of using the appropriate HTTP verbs and URLs that correspond to objects
[02:44:32] <Grokling> Rest: https://blog.apigee.com/detail/restful_api_design
[02:44:35] <Grokling> Worth watching.
[02:44:51] <wafflej0ck> POST for creation GET to read urls like /books with HTTP verb/method GET to get all books /books/1 to get a book with id 1, POST /books/1 to create book one
[02:45:27] <wafflej0ck> yeah have watched this before will let it roll in the background in a bit, listening to some podcasts
[02:45:34] *** doginal has joined #angularjs
[02:46:16] *** wsmoak has quit IRC
[02:47:16] *** doodlehaus has joined #angularjs
[02:47:55] *** conan_the_destro has quit IRC
[02:48:37] *** morenoh149 has joined #angularjs
[02:49:02] *** BillCriswell has joined #angularjs
[02:49:10] *** jareddlc has quit IRC
[02:49:37] *** cotko has quit IRC
[02:50:06] *** cotko has joined #angularjs
[02:50:16] *** Sontakey has quit IRC
[02:50:19] <Lewix> wafflej0ck: that's not actually what rest is , the fact that we map those verb to CRUD is just a common implementation. Restful is a misnomer in that instance
[02:50:26] *** technickul has joined #angularjs
[02:50:40] <wafflej0ck> it's representational state transfer I understand
[02:50:52] <wafflej0ck> but the common interface it what makes using $resource easier
[02:50:57] *** dc_ has quit IRC
[02:51:03] <wafflej0ck> is*
[02:51:08] *** jonr22 has joined #angularjs
[02:51:09] <Fuzzy> ppl use restful to describe everything these days
[02:51:16] <Fuzzy> maybe its true but i dunno
[02:51:44] *** snurfery has quit IRC
[02:51:46] *** punch has quit IRC
[02:52:32] *** dannyc has joined #angularjs
[02:53:31] <Fuzzy> anyone use polymer
[02:53:32] *** hell_razer has joined #angularjs
[02:53:42] *** zz_night-owl is now known as night-owl
[02:54:33] *** chromatome has quit IRC
[02:54:37] *** RobinBAwesome has joined #angularjs
[02:55:28] *** Sontakey has joined #angularjs
[02:56:18] *** jonr22 has quit IRC
[02:56:26] *** davek_ has quit IRC
[02:56:32] *** chrisbirk has quit IRC
[02:57:05] *** dannyc has quit IRC
[02:57:08] *** doginal has quit IRC
[02:57:20] *** anivemin has joined #angularjs
[02:58:02] <Fifty5Plus> wafflej0ck: respect!
[02:58:10] *** doginal has joined #angularjs
[02:58:17] *** mjw56 has quit IRC
[02:58:42] *** Luser has joined #angularjs
[03:01:13] *** RobinBAwesome has quit IRC
[03:01:28] *** kwaledesign has quit IRC
[03:01:36] *** prbc has quit IRC
[03:01:53] *** anivemin has quit IRC
[03:02:13] *** prbc has joined #angularjs
[03:02:20] <wafflej0ck> what's up Fifty5Plus
[03:02:35] *** ron1 has quit IRC
[03:02:56] *** adpirz has joined #angularjs
[03:02:57] *** Luser has quit IRC
[03:03:06] <Fifty5Plus> ca we do some finetuning
[03:03:56] *** ron1 has joined #angularjs
[03:04:10] *** busticated has quit IRC
[03:05:23] *** shinnya has quit IRC
[03:06:15] *** atomical has joined #angularjs
[03:06:44] <wafflej0ck> Fifty5Plus: yeah I can get back into that project today just getting rid of any inline styles and using classes for some other little components right now
[03:07:06] *** snurfery has joined #angularjs
[03:07:13] *** prbc has quit IRC
[03:07:21] *** MistahKurtz has joined #angularjs
[03:07:22] *** adpirz has quit IRC
[03:07:25] *** farn5w0rth has joined #angularjs
[03:08:16] *** sqwk has joined #angularjs
[03:08:26] *** sirkitree|afk is now known as sirkitree|afk|af
[03:08:32] <Lewix> wafflej0ck: i might need you in a few, hope you'll be there
[03:08:37] <Fifty5Plus> lets go pm
[03:08:38] *** dnewkerk has quit IRC
[03:08:58] *** doodlehaus has quit IRC
[03:09:01] <sqwk> WHat would be the correct way to add and modify and inline style=“transform:…“ to a directive?
[03:09:15] *** phuh has quit IRC
[03:09:31] *** motionman has quit IRC
[03:09:40] *** phuh has joined #angularjs
[03:09:55] *** windsurf_ has joined #angularjs
[03:11:01] *** doginal has quit IRC
[03:11:40] *** hell_razer has quit IRC
[03:12:24] *** rburns has joined #angularjs
[03:13:25] <Fifty5Plus> wafflej0ck: pm
[03:13:59] *** BobbieBarker has joined #angularjs
[03:14:05] *** whunt_ has joined #angularjs
[03:14:35] *** hell_razer has joined #angularjs
[03:14:41] <BobbieBarker> any one here fuck with angular material design at all?
[03:16:35] *** Shrooms has quit IRC
[03:16:40] *** whunt has quit IRC
[03:16:47] *** tjsail33 has quit IRC
[03:16:57] <oste> $('.col-md-3').one('$animate:enter', function() { … is that valid?
[03:17:08] *** grindmodeon has joined #angularjs
[03:17:32] <oste> or should i just do this $('.col-md-3').one('webkitAnimationEnd oanimationend msAnimationEnd animationend', function() {
[03:17:43] *** hell_razer has quit IRC
[03:17:46] *** tsalb has quit IRC
[03:17:48] <windsurf_> I have a userProfile template that I’m thinking of reusing for both viewing someone else’ profile as well as for when user views his own profile. What’s a good way to know when the user is looking at his vs someone else’?
[03:18:06] *** macabre has joined #angularjs
[03:18:41] *** eBureau has joined #angularjs
[03:18:55] *** macabre has joined #angularjs
[03:19:11] *** phishy has quit IRC
[03:19:40] *** RobinBAwesome has joined #angularjs
[03:20:14] *** macabre has quit IRC
[03:20:41] *** wsmoak has joined #angularjs
[03:20:41] *** wsmoak has joined #angularjs
[03:20:42] *** asher^ has quit IRC
[03:20:53] *** macabre has joined #angularjs
[03:21:02] *** RobinBAwesome has quit IRC
[03:21:34] *** motionman has joined #angularjs
[03:21:44] *** prbc has joined #angularjs
[03:21:45] *** hell_razer has joined #angularjs
[03:21:46] <TheAceOfHearts> windsurf_: make it into a directive
[03:21:56] *** macabre has quit IRC
[03:22:30] <windsurf_> TheAceOfHearts: ok. can you give me a high level idea of this? I can figure it out from there
[03:22:55] <windsurf_> like would it be checking the current url/route/state or something?
[03:22:57] *** falcom has joined #angularjs
[03:23:02] <windsurf_> and then do a ngShow?
[03:23:24] <windsurf_> on things that are unique to one’s own profile
[03:23:44] <windsurf_> or rather ui you’d only want to show on one’s own profile
[03:23:51] <windsurf_> (like edit)
[03:23:52] <falcom> Hey guys, I have parent element A and its child element B. A ng-show=0, however B directive is still processed. Weird?
[03:23:59] <TheAceOfHearts> just make a directive that takes a model
[03:24:06] <TheAceOfHearts> and the model has like an isUser = true, or false
[03:24:07] *** ron1 has quit IRC
[03:24:36] *** dhrami has quit IRC
[03:25:01] *** ron1 has joined #angularjs
[03:25:19] <windsurf_> TheAceOfHearts: ok i’ll look into that approach, thanks
[03:25:30] <TheAceOfHearts> I do something sorta similar with my forms
[03:25:35] <TheAceOfHearts> like my new and edit forms are the same
[03:25:44] <TheAceOfHearts> I only pass it like a value to change the submit button text
[03:25:53] *** prbc has quit IRC
[03:25:57] *** whunt_ has quit IRC
[03:26:03] <windsurf_> TheAceOfHearts: ok i see
[03:26:07] *** bundledavid has joined #angularjs
[03:26:08] <windsurf_> gonna need that too
[03:26:17] *** xxtjaxx has joined #angularjs
[03:26:33] *** whunt has joined #angularjs
[03:26:38] *** doginal has joined #angularjs
[03:26:43] *** prbc has joined #angularjs
[03:27:12] <windsurf_> TheAceOfHearts: so would it be like, my-directive=“myTplModel”
[03:27:20] <TheAceOfHearts> well
[03:27:23] <windsurf_> where myTplModel is set on the parent scope?
[03:27:30] <windsurf_> and this way, given to the directive?
[03:27:44] *** minimoo1 has joined #angularjs
[03:27:49] <TheAceOfHearts> <my-directive model="myModel"></my-directive or somthing
[03:27:51] <TheAceOfHearts> yeah
[03:27:56] <TheAceOfHearts> and hyou just have a wrapper controller
[03:27:59] <TheAceOfHearts> which is tiny
[03:28:39] <windsurf_> where would <my-directive> go – would it be a piece of the common template or wrapping the whole template?
[03:28:45] <windsurf_> the variable piece i mean
[03:28:48] *** dc_ has joined #angularjs
[03:29:06] <TheAceOfHearts> you could have it defined directly in the route, idk
[03:29:58] *** joroc has quit IRC
[03:30:17] *** bundledavid has quit IRC
[03:30:19] *** larsam has quit IRC
[03:30:22] *** ron1 has quit IRC
[03:30:30] *** caitp has quit IRC
[03:30:31] <wafflej0ck> falcom: ng-show/ng-hide just adds/removes a css class that toggles the display:none it doesn't stop the creation of the element
[03:30:45] *** frkout has joined #angularjs
[03:31:01] <falcom> wafflej0ck: whoops i actually meant ng-if.
[03:31:08] *** robksawyer has joined #angularjs
[03:31:24] *** night-owl is now known as zz_night-owl
[03:31:25] <wafflej0ck> falcom: almost the same ng-if will remove an element when it's processed and evalulates to false but the element is initially there
[03:31:32] *** mary5030 has joined #angularjs
[03:31:33] *** kotyy has joined #angularjs
[03:31:34] *** ron1 has joined #angularjs
[03:31:38] *** msafi has joined #angularjs
[03:31:44] *** Sontakey has quit IRC
[03:32:19] *** MaxV has joined #angularjs
[03:32:30] <wafflej0ck> falcom: read the docs on ngIf about the use case for it https://docs.angularjs.org/api/ng/directive/ngIf
[03:33:39] *** frkout_ has quit IRC
[03:33:41] *** Iravan has joined #angularjs
[03:34:02] *** mary5030_ has joined #angularjs
[03:34:09] *** caitp has joined #angularjs
[03:34:24] *** Joseph_Silber has quit IRC
[03:34:56] *** vonnegut has quit IRC
[03:35:06] *** JosephSilber has joined #angularjs
[03:36:09] *** zz_night-owl is now known as night-owl
[03:36:14] *** mary5030 has quit IRC
[03:36:21] *** gunn has quit IRC
[03:36:38] *** baweaver has quit IRC
[03:37:10] *** gunn has joined #angularjs
[03:37:23] *** MaxV has quit IRC
[03:38:24] *** darrin_ has joined #angularjs
[03:38:40] *** dhrami has joined #angularjs
[03:38:46] *** darrin has quit IRC
[03:40:20] *** thomasreggi has quit IRC
[03:40:34] *** herpless has quit IRC
[03:40:35] *** mclenithan has quit IRC
[03:41:29] *** Milkweed has quit IRC
[03:41:48] *** rburns has quit IRC
[03:41:57] *** whunt has quit IRC
[03:41:58] *** ron1 has quit IRC
[03:41:59] *** d10n-work has quit IRC
[03:42:31] *** hapiwondrr has joined #angularjs
[03:42:45] *** Aliks has quit IRC
[03:43:11] *** ron1 has joined #angularjs
[03:43:21] *** rburns has joined #angularjs
[03:43:24] *** ZGirl has joined #angularjs
[03:43:42] *** baweaver has joined #angularjs
[03:44:23] *** morenoh149 has quit IRC
[03:44:25] <ZGirl> Is it possible to configure my custom directive to suppress other directives on the same element from running? I am setting the priority higher than 0, so it should be running first, but not sure how to stop other directives from running. My directive is like ngIf but for a specific need
[03:44:38] *** dannyc has joined #angularjs
[03:44:49] <ZGirl> It seems like ng-if will not suppress other directives on the same element from running when the value is false
[03:45:05] *** mdedetrich has quit IRC
[03:45:45] *** mdedetrich has joined #angularjs
[03:46:11] *** TheAceOfHearts has quit IRC
[03:46:12] *** doginal has quit IRC
[03:47:41] *** whitebook has quit IRC
[03:47:56] *** roven has joined #angularjs
[03:48:03] *** hell_razer has joined #angularjs
[03:48:17] *** ron1 has quit IRC
[03:48:26] *** baweaver has quit IRC
[03:48:37] *** whitebook has joined #angularjs
[03:48:50] *** adpirz has joined #angularjs
[03:48:53] *** dannyc has quit IRC
[03:49:00] <dsdeiz> hey all, say i have data-some-directive="foo".. is it possible to get the value of this directive's attribute through the link function of the directive?
[03:49:08] *** asher^ has joined #angularjs
[03:50:17] *** ZGirl has quit IRC
[03:51:49] *** discgo has quit IRC
[03:52:24] *** roven has quit IRC
[03:52:57] *** Luser has joined #angularjs
[03:53:01] *** hapiwondrr has quit IRC
[03:53:21] *** night-owl is now known as zz_night-owl
[03:53:30] *** rho has quit IRC
[03:53:42] <helen_> ZGirl: i never tried it before, but maybe terminal?
[03:53:58] *** ron1 has joined #angularjs
[03:54:46] <helen_> dsdeiz: with an isolate scope or not ;o?
[03:55:32] *** kirfu has joined #angularjs
[03:56:07] *** ron1 has quit IRC
[03:57:14] *** joroc has joined #angularjs
[03:57:17] *** Luser has quit IRC
[03:57:20] *** ron1 has joined #angularjs
[03:57:23] *** slashroot_ has joined #angularjs
[03:57:34] *** rburns has quit IRC
[03:57:54] *** mary5030_ has quit IRC
[03:58:02] *** jMyles has quit IRC
[03:58:23] *** ProLoser has quit IRC
[03:58:27] *** mary5030 has joined #angularjs
[03:58:38] *** rburns has joined #angularjs
[03:59:07] *** jlambert121 has quit IRC
[03:59:21] *** josh-k_ has quit IRC
[03:59:57] *** minimoo1 has quit IRC
[04:00:01] *** frkout has quit IRC
[04:00:03] *** trustyhank has joined #angularjs
[04:00:21] <dsdeiz> helen_: no isolate scope
[04:00:24] *** chrisbirk has joined #angularjs
[04:00:28] *** frkout has joined #angularjs
[04:01:23] <helen_> dsdeiz: u can get the value through scope.$eval attrs.foo, but do u need to watch it too?
[04:01:26] *** flaiks has joined #angularjs
[04:01:28] <flaiks> ello
[04:01:34] *** chrisbirk has quit IRC
[04:01:40] <flaiks> any books you guys could reccomend I buy to get into/become a pro with angular
[04:01:43] <flaiks> and node.js
[04:02:23] *** nairys has quit IRC
[04:02:34] <dsdeiz> sorry, i'm not sure what you mean by watch.. do you mean when the value changes?
[04:02:46] <dsdeiz> if so, then no
[04:03:04] *** mary5030 has quit IRC
[04:03:05] *** fairuz has quit IRC
[04:03:05] *** mary5030_ has joined #angularjs
[04:03:07] *** mays has joined #angularjs
[04:03:08] *** whitebook has quit IRC
[04:03:13] <helen_> yea
[04:03:19] <Lewix> wafflej0ck: you're on?
[04:03:27] *** patrickarlt has quit IRC
[04:03:44] <Lewix> does $resource have a config or a cache proprety like $http
[04:03:52] *** whitebook has joined #angularjs
[04:04:22] *** zz_night-owl is now known as night-owl
[04:04:43] *** Hackwar1 has joined #angularjs
[04:05:32] *** Hackwar has quit IRC
[04:06:10] *** thomasreggi has joined #angularjs
[04:06:22] *** thepro4ever has joined #angularjs
[04:06:30] *** thepro4ever has left #angularjs
[04:06:51] *** punch has joined #angularjs
[04:06:52] *** BobbieBarker has quit IRC
[04:07:17] *** cotko has quit IRC
[04:08:12] *** ezakimak has quit IRC
[04:08:24] *** chrisbirk has joined #angularjs
[04:09:17] *** phuh has quit IRC
[04:09:42] *** phuh has joined #angularjs
[04:10:07] *** dberry37388 has joined #angularjs
[04:10:21] <helen_> Lewix it does, pretty much the same config as http
[04:11:23] *** a3gis has joined #angularjs
[04:11:29] *** NoNMaDDeN has joined #angularjs
[04:11:49] *** kylelittle has joined #angularjs
[04:11:56] *** hell_razer has joined #angularjs
[04:12:19] *** kylelittle has quit IRC
[04:12:24] *** helen_ has quit IRC
[04:13:21] *** TyrfingMjolnir has quit IRC
[04:13:23] *** fairuz has joined #angularjs
[04:14:03] *** josh has quit IRC
[04:14:25] *** hell_razer has quit IRC
[04:14:32] *** mcastro has quit IRC
[04:15:05] *** hell_razer has joined #angularjs
[04:15:36] *** bkuberek_ has joined #angularjs
[04:15:42] *** a3gis has quit IRC
[04:15:52] *** hell_razer has quit IRC
[04:16:06] *** kirfu has quit IRC
[04:16:24] *** hell_razer has joined #angularjs
[04:16:56] *** sillypuddy has joined #angularjs
[04:17:33] *** andrew9183 has joined #angularjs
[04:18:58] *** bkuberek has quit IRC
[04:19:34] *** diegoaguilar has joined #angularjs
[04:20:06] *** tomengland_mbp has joined #angularjs
[04:20:18] <windsurf_> I have a ng-show=“currentUser” but later when I do $scope.currentUser = null to sign the user out, the ng-show isn’t triggered, what have I got wrong?
[04:20:26] <windsurf_> do i need a watcher?
[04:20:30] *** bkuberek has joined #angularjs
[04:22:36] *** discgo has joined #angularjs
[04:22:43] <windsurf_> oh but currentUser is on a parent scope so maybe that’s the issue for some reason
[04:23:19] *** ron1 has quit IRC
[04:23:23] *** fairuz has quit IRC
[04:23:41] *** ron1 has joined #angularjs
[04:23:52] *** fairuz has joined #angularjs
[04:23:58] *** bkuberek_ has quit IRC
[04:24:23] *** tomengland_mbp has quit IRC
[04:25:09] *** jmichaelward has joined #angularjs
[04:27:16] *** minimoo1 has joined #angularjs
[04:27:21] *** davesidious_ has joined #angularjs
[04:28:52] *** ron1 has quit IRC
[04:28:52] *** rburns has quit IRC
[04:29:15] *** rburns has joined #angularjs
[04:29:53] *** jmichaelward has quit IRC
[04:30:10] *** mary5030_ has quit IRC
[04:30:24] *** TyrfingMjolnir has joined #angularjs
[04:30:43] *** joroc has quit IRC
[04:30:43] *** mary5030 has joined #angularjs
[04:31:06] *** davesidious has quit IRC
[04:31:11] *** ron1 has joined #angularjs
[04:31:22] *** darrin_ has quit IRC
[04:31:45] *** bradmaxs has quit IRC
[04:32:04] *** rileylark has joined #angularjs
[04:32:37] *** aviraldg has joined #angularjs
[04:33:03] *** mary5030_ has joined #angularjs
[04:34:48] *** whunt has joined #angularjs
[04:35:11] *** mary5030 has quit IRC
[04:35:18] *** MistahKurtz has quit IRC
[04:35:18] *** phuh has quit IRC
[04:36:02] *** c00ljs has quit IRC
[04:36:23] *** chrisbirk has quit IRC
[04:36:33] *** hell_razer has quit IRC
[04:38:05] *** grindmodeon has quit IRC
[04:39:38] *** patrickarlt has joined #angularjs
[04:40:43] *** TyrfingMjolnir has quit IRC
[04:40:57] *** rchavik has quit IRC
[04:41:17] *** dannyc has joined #angularjs
[04:42:25] *** JMZ_DMZ has quit IRC
[04:42:52] *** patricka_ has joined #angularjs
[04:43:17] *** patricka_ has quit IRC
[04:43:45] *** patricka_ has joined #angularjs
[04:44:09] *** BillCriswell has quit IRC
[04:44:58] *** ezakimak has joined #angularjs
[04:45:14] *** patrickarlt has quit IRC
[04:45:16] *** msafi has quit IRC
[04:45:28] *** dannyc_ has joined #angularjs
[04:45:38] *** dannyc has quit IRC
[04:45:41] *** teja has joined #angularjs
[04:45:53] *** chrisbirk has joined #angularjs
[04:46:07] *** anivemin has joined #angularjs
[04:46:44] *** trend has quit IRC
[04:47:06] *** Luser has joined #angularjs
[04:47:08] *** teja has quit IRC
[04:47:10] *** caitp has quit IRC
[04:48:58] *** kotyy has quit IRC
[04:49:53] *** dannyc_ has quit IRC
[04:50:46] *** robdubya has quit IRC
[04:50:59] *** anivemin has quit IRC
[04:51:18] *** Luser has quit IRC
[04:52:04] *** adpirz has quit IRC
[04:53:06] *** dc_ has quit IRC
[04:55:26] *** windsurf_ has quit IRC
[04:56:37] *** Milkweed has joined #angularjs
[04:57:05] *** thebigredgeek has quit IRC
[04:57:08] *** punch has quit IRC
[04:57:16] *** joroc has joined #angularjs
[04:57:30] *** Oddman has quit IRC
[04:58:41] *** nesquerra has joined #angularjs
[04:58:47] *** ron1 has quit IRC
[04:58:50] *** bradmaxs has joined #angularjs
[04:59:14] *** ron1 has joined #angularjs
[04:59:25] *** minimoo1 has quit IRC
[05:00:10] *** wsmoak has quit IRC
[05:00:25] *** mgolawala has quit IRC
[05:00:44] *** bradmaxs has joined #angularjs
[05:01:22] *** tomengland_mbp has joined #angularjs
[05:02:04] *** ron1 has quit IRC
[05:02:14] *** busticated has joined #angularjs
[05:03:12] *** nesquerra has quit IRC
[05:03:23] *** BobbieBarker has joined #angularjs
[05:04:07] <BobbieBarker> so i take it no one has used angular material design?
[05:04:11] <BobbieBarker> i'm about to fool around with it
[05:04:30] *** ron1 has joined #angularjs
[05:04:42] <dsdeiz> hey all, so i have an attribute of data-some-directive="foo".. basically i'm trying to hide the element depending on the value of the attribute. so far i've got this on my directive. one thing i'm not sure is how to call the toggleElement() function.. http://pastebin.com/L3p0zPjY is $observe correct?
[05:05:14] <dsdeiz> trying to follow this btw https://github.com/fnakstad/angular-client-side-auth/blob/master/client/js/directives.js#L19-L22
[05:05:25] <BobbieBarker> if you're trying to hide an element why not just use ng-hide?
[05:05:31] *** tomengland_mbp has quit IRC
[05:05:44] <dsdeiz> oh i'm actually trying to toggle the element
[05:05:56] <BobbieBarker> ng-hide and toggle the varialbe?
[05:06:04] *** ProLoser has joined #angularjs
[05:06:28] *** jhwhite has joined #angularjs
[05:06:34] <BobbieBarker> i personally wouldn't use a library like this for nav related stuff
[05:06:42] *** zzing has joined #angularjs
[05:07:24] *** settinghead has joined #angularjs
[05:08:00] *** sillypuddy has quit IRC
[05:08:46] *** LeBlaaanc has joined #angularjs
[05:09:24] <LeBlaaanc> Hey guys... I'm attempting to understand how to do authentication with Angular and am realizing it's not all that easy after reading this https://medium.com/opinionated-angularjs/techniques-for-authentication-in-angularjs-applications-7bbf0346acec
[05:09:38] <LeBlaaanc> Any links or information to make things less daunting?
[05:09:50] *** chrisbirk has quit IRC
[05:10:43] <BobbieBarker> no
[05:10:48] <BobbieBarker> what you're looking at isn't really that hard
[05:11:18] <Sawbones> What's everyone's opinion on ngRoute vs ui.router?
[05:11:20] <dsdeiz> hm, what would you recommend?
[05:11:24] <BobbieBarker> ui.router is the shit
[05:11:44] *** Cache_Money has joined #angularjs
[05:12:09] <BobbieBarker> dsdeiz: i said that before i realized the library is oath. Do you need oath for all of those services or just 1 in particular?
[05:12:27] <dsdeiz> just for this directive
[05:12:50] *** falcom has quit IRC
[05:12:54] <LeBlaaanc> BobbieBarker: Are there any modules that might be tested a bit to do auth that wrap all of what that article mentioned up?
[05:12:56] *** diegoaguilar has quit IRC
[05:13:03] <dsdeiz> basically what i'm doing is toggling the display of an element depending on the role/access level
[05:13:15] <Sawbones> Has anyone just used angular for it's directives? I can't go back to jquery, I just cant
[05:13:30] <BobbieBarker> no because auth can be handled a dozen different ways based on how you are building yoru app. Like i just built an authorization and account creation service the other day on firebase
[05:13:53] <BobbieBarker> it's ok Sawbones you're reaction is normal. Jquery is disgusting
[05:14:08] <BobbieBarker> also jquery is a library and not a framework
[05:14:23] <Sawbones> BobbieBarker: I want to just load angular into the page and use it for my directives and logic help
[05:14:25] *** busticated has quit IRC
[05:14:32] <LeBlaaanc> BobbieBarker: do you do your login form on a separate page or have a better way to handle the autofill problems?
[05:14:40] <BobbieBarker> that will be more trouble than it is worth. Just embrace the angular way
[05:14:42] <Sawbones> BobbieBarker: I'm aware
[05:14:55] <BobbieBarker> seperate page, how else would you do it?
[05:14:58] *** bundledavid has joined #angularjs
[05:14:58] <Sawbones> BobbieBarker: I can't the project is not angular and rewriting it is not possible
[05:14:59] <BobbieBarker> what is an autofill problem?
[05:15:10] <BobbieBarker> Sawbones: get a differnt job?
[05:15:28] <Sawbones> BobbieBarker: I just wish there was a way I could just have what angular does with html and directives
[05:15:52] <Sawbones> I tried using React but oh god that was painful
[05:15:59] <BobbieBarker> you could probably use the core angular directives for some stuff... that's a very grey area you'd be working in one i wouldn't be familiar with
[05:16:03] <Sawbones> What a load of hype
[05:16:12] <BobbieBarker> reactJS is hype angular will crush them
[05:16:14] <LeBlaaanc> BobbieBarker: towards the end of that article the writer mentions that popping a login dialog has some quarks as password autofillers don't always understand the form has been presented or know how to submit them
[05:16:38] <BobbieBarker> i've never had any complaints
[05:16:42] <BobbieBarker> nor heard of it
[05:16:45] *** nesquerra has joined #angularjs
[05:16:45] <BobbieBarker> but you knwow hat i say about that>?
[05:16:46] <dsdeiz> guess i don't really need to watch/observe anything on my attribute since the value will never change
[05:17:02] <BobbieBarker> fucking sucks for your password auto filler because I don't write apps that support janky browser extensions
[05:17:19] <Sawbones> BobbieBarker: Agreed, I tried it just to make sure I knew what it was like, I was really optimistic with what I heard, but it's practices are all wrong
[05:17:51] <BobbieBarker> Sawbones: to answer your core question the answer is you can use angular on a case by case basis but it will be dicey
[05:18:00] <BobbieBarker> i wouldn't really want to deal with it
[05:18:02] *** night-owl is now known as zz_night-owl
[05:18:27] <BobbieBarker> hey real talk, has anyone looked at this angular material design crap
[05:18:29] <BobbieBarker> it's blowing my mind
[05:19:12] *** jhwhite has quit IRC
[05:19:21] *** bundledavid has quit IRC
[05:19:49] *** Left_Turn has quit IRC
[05:20:30] *** Milkweed has quit IRC
[05:20:30] *** edzez_ has quit IRC
[05:21:05] *** kuadrosx has quit IRC
[05:21:11] *** whunt has quit IRC
[05:21:23] *** edzez_ has joined #angularjs
[05:21:28] *** mary5030_ has quit IRC
[05:21:31] *** burzum2 has joined #angularjs
[05:22:00] *** MaxV has joined #angularjs
[05:22:01] *** burzum has quit IRC
[05:22:02] *** mary5030 has joined #angularjs
[05:22:51] *** mgolawala has joined #angularjs
[05:23:25] *** mary5030_ has joined #angularjs
[05:23:36] *** mary5030 has quit IRC
[05:25:57] *** MaxV has quit IRC
[05:26:31] *** coopaloop has joined #angularjs
[05:27:05] *** Fuzzy has quit IRC
[05:27:16] *** minimoo1 has joined #angularjs
[05:27:35] *** rho has joined #angularjs
[05:27:36] *** rho has joined #angularjs
[05:28:11] *** aviraldg has quit IRC
[05:29:11] *** Aliks has joined #angularjs
[05:29:11] *** chrisbirk has joined #angularjs
[05:30:34] *** joroc has quit IRC
[05:30:43] *** mary5030_ has quit IRC
[05:30:47] *** rileylark has quit IRC
[05:30:58] *** philipd has quit IRC
[05:31:07] *** rileylark has joined #angularjs
[05:31:15] *** mary5030 has joined #angularjs
[05:31:25] *** LeBlaaanc has quit IRC
[05:31:27] *** mary5030 has quit IRC
[05:31:56] *** mary5030 has joined #angularjs
[05:32:37] *** a3gis has joined #angularjs
[05:34:08] *** rho has quit IRC
[05:35:24] *** bhuvanaurora has joined #angularjs
[05:36:22] *** Sawbones has quit IRC
[05:36:28] *** zanea is now known as zanea|away
[05:37:11] *** kuadrosx has joined #angularjs
[05:37:24] *** a3gis has quit IRC
[05:38:18] *** motionman has quit IRC
[05:40:52] *** Circlefusion has quit IRC
[05:41:03] *** Aliks has quit IRC
[05:41:15] *** Luser has joined #angularjs
[05:41:40] *** Aliks has joined #angularjs
[05:41:44] *** dberry37388 has quit IRC
[05:41:44] *** kuadrosx has quit IRC
[05:44:27] *** robbyt has quit IRC
[05:44:27] *** patricka_ has quit IRC
[05:45:38] *** Luser has quit IRC
[05:45:42] *** {DV8} has quit IRC
[05:46:24] *** Aliks has quit IRC
[05:46:57] *** prbc has quit IRC
[05:47:06] *** trend has joined #angularjs
[05:47:32] *** atomical has quit IRC
[05:47:41] *** chintanparikh has joined #angularjs
[05:48:23] *** prbc has joined #angularjs
[05:48:58] *** roven has joined #angularjs
[05:49:01] *** asher^ has quit IRC
[05:49:21] *** lemur has joined #angularjs
[05:50:57] *** asher^ has joined #angularjs
[05:51:42] *** Circlefusion has joined #angularjs
[05:51:48] *** trend has quit IRC
[05:52:27] *** cthrax has joined #angularjs
[05:53:12] *** settinghead has quit IRC
[05:53:54] *** roven has quit IRC
[05:54:19] *** chintanparikh has quit IRC
[05:55:16] *** sacho has joined #angularjs
[05:55:33] *** Fuzzy has joined #angularjs
[05:55:45] *** jmichaelward has joined #angularjs
[05:57:19] *** joroc has joined #angularjs
[05:57:47] *** motionman has joined #angularjs
[05:58:02] *** RedOrangeZ has joined #angularjs
[05:59:02] *** prbc has quit IRC
[05:59:36] *** frkout_ has joined #angularjs
[06:00:22] *** jmichaelward has quit IRC
[06:00:43] *** ron1 has quit IRC
[06:00:44] *** rburns has quit IRC
[06:00:58] *** rburns has joined #angularjs
[06:01:05] *** bmac has joined #angularjs
[06:01:08] *** minimoo1 has quit IRC
[06:01:10] *** ron1 has joined #angularjs
[06:02:11] *** dhrami has quit IRC
[06:02:36] *** frkout has quit IRC
[06:03:00] *** mcastro has joined #angularjs
[06:03:30] *** Fire-Dragon-DoL has quit IRC
[06:04:42] *** dantheta has quit IRC
[06:05:42] *** rileylark has quit IRC
[06:05:43] *** ElysiumNet has quit IRC
[06:05:58] *** jaydubya has quit IRC
[06:06:12] *** bkuberek_ has joined #angularjs
[06:06:29] *** kuadrosx__ has joined #angularjs
[06:06:34] *** jaydubya has joined #angularjs
[06:06:42] *** zzing has quit IRC
[06:07:13] *** ausumpossum has joined #angularjs
[06:07:22] *** mcastro has quit IRC
[06:07:58] *** bkuberek has quit IRC
[06:08:14] *** doginal has joined #angularjs
[06:10:42] *** jaydubya has quit IRC
[06:10:55] *** eBureau has quit IRC
[06:12:04] *** kuadrosx__ has quit IRC
[06:12:32] *** heizkessel has joined #angularjs
[06:12:46] *** kuadrosx__ has joined #angularjs
[06:12:47] *** exp10r3r has joined #angularjs
[06:13:13] *** marshall_ has quit IRC
[06:14:57] *** mgolawala has quit IRC
[06:14:58] *** bkuberek_ has quit IRC
[06:15:01] *** jasonp has quit IRC
[06:15:10] *** flaiks has quit IRC
[06:15:32] *** devhoag has joined #angularjs
[06:15:36] *** ausumpossum is now known as ausum_possum
[06:15:42] *** motionman has quit IRC
[06:16:00] *** gjaldon has joined #angularjs
[06:16:10] *** Orbitrix has quit IRC
[06:16:12] *** ausum_possum is now known as ausumpossum
[06:16:26] *** ausumpossum is now known as ausum_possum
[06:16:29] *** Orbitrix has joined #angularjs
[06:16:37] *** heizkessel is now known as motionman
[06:17:02] *** bkuberek has joined #angularjs
[06:17:20] *** devhoag has quit IRC
[06:17:32] *** ron1 has quit IRC
[06:17:37] *** devhoag has joined #angularjs
[06:17:50] *** kuadrosx__ has quit IRC
[06:18:28] *** kuadrosx__ has joined #angularjs
[06:19:07] *** ron1 has joined #angularjs
[06:20:48] *** JMZ_DMZ has joined #angularjs
[06:20:52] *** sqwk has quit IRC
[06:22:41] *** exp10r3r has quit IRC
[06:24:00] *** mennea has joined #angularjs
[06:24:37] *** kuadrosx has joined #angularjs
[06:24:40] *** kuadrosx__ has quit IRC
[06:24:47] *** whunt has joined #angularjs
[06:25:08] *** mogaj has joined #angularjs
[06:25:16] *** exp10r3r has joined #angularjs
[06:26:03] *** exp10r3r has joined #angularjs
[06:26:45] *** davek_ has joined #angularjs
[06:26:46] *** davek_ has joined #angularjs
[06:27:05] *** josh has joined #angularjs
[06:27:14] *** bkuberek has quit IRC
[06:27:19] *** minimoo1 has joined #angularjs
[06:28:06] *** xxtjaxx has quit IRC
[06:29:08] *** jonr22 has joined #angularjs
[06:29:20] *** NormySan has joined #angularjs
[06:29:44] *** ron1 has quit IRC
[06:30:12] *** ron1 has joined #angularjs
[06:30:13] *** dannyc has joined #angularjs
[06:31:10] *** joroc has quit IRC
[06:31:11] *** rburns has quit IRC
[06:31:20] *** kuadrosx_ has joined #angularjs
[06:31:22] *** rburns has joined #angularjs
[06:31:32] *** woah has joined #angularjs
[06:31:32] *** Sontakey has joined #angularjs
[06:31:58] *** {DV8} has joined #angularjs
[06:34:06] *** jonr22 has quit IRC
[06:34:17] *** kuadrosx has quit IRC
[06:34:41] *** AngularUI has joined #angularjs
[06:34:41] <AngularUI> [bootstrap] stevecavanagh opened pull request #3020: Datepicker min max refactor (master...datepickerMinMaxRefactor) http://git.io/cq51TA
[06:34:41] *** AngularUI has left #angularjs
[06:34:54] *** anivemin has joined #angularjs
[06:35:00] *** dannyc has quit IRC
[06:35:20] *** dc_ has joined #angularjs
[06:35:23] *** kuadrosx_ has quit IRC
[06:35:23] *** NormySan has quit IRC
[06:35:23] *** Luser has joined #angularjs
[06:35:40] *** JMZ_DMZ has quit IRC
[06:35:53] *** kuadrosx_ has joined #angularjs
[06:36:08] *** raj___ has joined #angularjs
[06:36:13] *** ron1 has quit IRC
[06:37:06] *** sinequanon has joined #angularjs
[06:37:11] *** boneskull has quit IRC
[06:39:06] <Lewix> im having a hard time testing with angular, wafflej0ck - how do you test $resource
[06:39:41] *** anivemin has quit IRC
[06:39:52] *** Luser has quit IRC
[06:40:26] *** kuadrosx__ has joined #angularjs
[06:41:01] *** adpirz has joined #angularjs
[06:41:07] *** Sontakey has quit IRC
[06:41:13] *** bradmaxs has quit IRC
[06:41:13] *** Greed has quit IRC
[06:41:18] *** kuadrosx_ has quit IRC
[06:41:28] *** boneskull has joined #angularjs
[06:41:30] *** ron1 has joined #angularjs
[06:42:20] *** bkuberek has joined #angularjs
[06:43:07] *** ron1 has quit IRC
[06:43:13] *** bhuvanaurora has quit IRC
[06:43:44] *** josh3336 has joined #angularjs
[06:43:53] *** woah has quit IRC
[06:44:24] *** Greed has joined #angularjs
[06:44:40] *** rchavik has joined #angularjs
[06:45:21] *** bhuvanaurora has joined #angularjs
[06:45:48] *** adpirz has quit IRC
[06:46:37] *** bkuberek has quit IRC
[06:46:57] *** dannyc has joined #angularjs
[06:47:36] *** Ephemeral has quit IRC
[06:48:09] *** niop has quit IRC
[06:48:12] *** andrew9183 has quit IRC
[06:48:26] *** trend has joined #angularjs
[06:49:40] *** kuadrosx has joined #angularjs
[06:49:42] *** kuadrosx__ has quit IRC
[06:49:48] *** ciwolsey has quit IRC
[06:49:51] *** Shai-Tan has quit IRC
[06:49:52] *** Fifty5Plus has quit IRC
[06:50:11] *** Fifty5Plus has joined #angularjs
[06:50:41] *** josh3336 has quit IRC
[06:50:53] *** Ephemeral has joined #angularjs
[06:51:23] *** rho has joined #angularjs
[06:51:23] *** rho has joined #angularjs
[06:51:30] *** dannyc has quit IRC
[06:53:02] *** trend has quit IRC
[06:53:29] *** kuadrosx has quit IRC
[06:53:33] *** oste has quit IRC
[06:53:45] *** BobbieBarker has quit IRC
[06:53:54] *** kuadrosx has joined #angularjs
[06:54:26] *** Cache_Money has left #angularjs
[06:54:58] *** opiates has quit IRC
[06:55:20] *** zz_night-owl is now known as night-owl
[06:55:22] *** Aliks has joined #angularjs
[06:56:20] *** whunt has quit IRC
[06:56:53] *** d4rklit3 has quit IRC
[06:57:27] *** joroc has joined #angularjs
[06:58:00] *** boneskull has quit IRC
[06:58:42] *** mogaj|2 has joined #angularjs
[06:59:34] *** doginal has quit IRC
[06:59:40] *** threesixes has joined #angularjs
[06:59:57] *** {DV8} has quit IRC
[07:00:05] *** doginal has joined #angularjs
[07:01:19] *** minimoo1 has quit IRC
[07:01:34] *** rburns has quit IRC
[07:01:54] *** mogaj has quit IRC
[07:01:59] *** rburns has joined #angularjs
[07:03:05] *** devhoag has quit IRC
[07:03:57] *** bundledavid has joined #angularjs
[07:04:19] *** VeeWee has joined #angularjs
[07:06:25] *** MistahKurtz has joined #angularjs
[07:06:30] *** josh has quit IRC
[07:07:12] *** aviraldg has joined #angularjs
[07:07:54] *** aviraldg has quit IRC
[07:08:04] *** vita_ has joined #angularjs
[07:08:28] *** aviraldg has joined #angularjs
[07:08:35] <vita_> hello
[07:08:54] *** bundledavid has quit IRC
[07:09:17] *** vita_ is now known as Avita
[07:10:11] *** Lewix has quit IRC
[07:10:19] *** TyrfingMjolnir has joined #angularjs
[07:11:18] *** mgolawala has joined #angularjs
[07:12:06] *** JMZ_DMZ has joined #angularjs
[07:12:13] *** devhoag has joined #angularjs
[07:12:26] *** jgladwill has joined #angularjs
[07:12:27] *** jgladwill has joined #angularjs
[07:12:28] *** niftylettuce has quit IRC
[07:12:50] *** Avita is now known as _Avita
[07:13:04] *** bkuberek has joined #angularjs
[07:14:04] *** slvrbckt has quit IRC
[07:14:27] *** bkuberek has quit IRC
[07:14:53] *** rboyd has quit IRC
[07:14:58] *** mgolawala has quit IRC
[07:15:05] *** bkuberek has joined #angularjs
[07:15:50] *** sinequanon has quit IRC
[07:16:25] *** cthrax has quit IRC
[07:19:31] *** sinequanon has joined #angularjs
[07:21:23] *** a3gis has joined #angularjs
[07:21:58] *** tjsail33 has joined #angularjs
[07:22:26] *** TyrfingMjolnir has quit IRC
[07:22:56] *** mary5030 has quit IRC
[07:23:09] *** doginal has quit IRC
[07:23:24] *** chrisbirk has quit IRC
[07:23:27] *** kp666 has joined #angularjs
[07:23:32] *** mary5030 has joined #angularjs
[07:23:37] *** mennea has quit IRC
[07:24:16] *** mennea has joined #angularjs
[07:24:17] *** sinequanon has quit IRC
[07:24:34] *** sinequanon has joined #angularjs
[07:25:51] *** a3gis has quit IRC
[07:26:25] *** rhp has joined #angularjs
[07:26:31] *** jmichaelward has joined #angularjs
[07:27:32] *** mtsr has joined #angularjs
[07:27:46] *** mary5030 has quit IRC
[07:28:18] *** Embassy has joined #angularjs
[07:28:18] *** sinequanon has quit IRC
[07:28:45] *** plato has quit IRC
[07:28:53] *** xxtjaxx has joined #angularjs
[07:29:02] *** sinequanon has joined #angularjs
[07:29:03] *** plato has joined #angularjs
[07:29:05] *** mtsr has quit IRC
[07:29:11] *** diegoaguilar has joined #angularjs
[07:29:36] *** Luser has joined #angularjs
[07:29:58] *** frkout_ has quit IRC
[07:30:23] *** frkout has joined #angularjs
[07:30:58] *** dannyc has joined #angularjs
[07:31:06] *** jmichaelward has quit IRC
[07:31:42] *** night-owl is now known as zz_night-owl
[07:31:51] *** zz_night-owl is now known as night-owl
[07:32:05] *** sinequanon has quit IRC
[07:32:06] *** rburns has quit IRC
[07:32:22] *** rburns has joined #angularjs
[07:32:23] *** delight has joined #angularjs
[07:33:32] *** plato has quit IRC
[07:33:37] *** xxtjaxx` has joined #angularjs
[07:34:03] *** mays has quit IRC
[07:34:05] *** night-owl is now known as zz_night-owl
[07:34:29] *** Luser has quit IRC
[07:34:57] *** xxtjaxx has quit IRC
[07:35:11] *** plekplek has joined #angularjs
[07:35:38] *** dannyc has quit IRC
[07:36:32] *** bhuvanaurora has quit IRC
[07:37:00] *** brundige has joined #angularjs
[07:37:43] *** one0one has quit IRC
[07:37:53] *** manigoldo has joined #angularjs
[07:38:15] *** Evanion has joined #angularjs
[07:38:55] *** IJNX has joined #angularjs
[07:39:47] *** ausum_possum has quit IRC
[07:40:13] *** TheAceOfHearts has joined #angularjs
[07:40:24] *** doginal has joined #angularjs
[07:41:47] *** bmac has quit IRC
[07:43:06] *** tomengland_mbp has joined #angularjs
[07:43:14] *** bmac has joined #angularjs
[07:43:32] *** gjaldon has quit IRC
[07:43:53] *** rho has quit IRC
[07:44:30] *** whitebook has quit IRC
[07:44:50] *** xxMatiasFCxx has joined #angularjs
[07:45:32] *** oddalot1 has joined #angularjs
[07:46:24] *** plushy has quit IRC
[07:47:25] *** charuru_ has joined #angularjs
[07:47:45] *** dannyc has joined #angularjs
[07:47:53] *** ggrzybek has joined #angularjs
[07:47:54] *** tomengland_mbp has quit IRC
[07:48:05] *** Leon has joined #angularjs
[07:48:16] *** xxMatiasFxx has quit IRC
[07:48:37] *** charuru has quit IRC
[07:48:38] *** charuru_ is now known as charuru
[07:49:02] *** oddalot has quit IRC
[07:49:05] *** TyrfingMjolnir has joined #angularjs
[07:49:50] *** roven has joined #angularjs
[07:50:13] *** slvrbckt has joined #angularjs
[07:50:30] *** djam90 has joined #angularjs
[07:50:51] *** asher^ has quit IRC
[07:51:56] *** mcastro has joined #angularjs
[07:51:57] *** oddalot1 has quit IRC
[07:52:04] *** dannyc has quit IRC
[07:53:03] *** robdubya has joined #angularjs
[07:53:29] *** TyrfingMjolnir has quit IRC
[07:53:38] *** mennea has quit IRC
[07:53:56] *** asher^ has joined #angularjs
[07:54:16] *** mennea has joined #angularjs
[07:54:25] *** adamlau has joined #angularjs
[07:54:41] *** jaydubya has joined #angularjs
[07:54:51] *** tony__ has joined #angularjs
[07:55:03] *** djam90 has quit IRC
[07:55:06] *** roven has quit IRC
[07:55:09] *** TyrfingMjolnir has joined #angularjs
[07:55:17] *** JohnBat26 has joined #angularjs
[07:56:09] <tony__> hi
[07:56:15] *** hehe has joined #angularjs
[07:56:36] *** mcastro has quit IRC
[07:57:22] *** minimoo1 has joined #angularjs
[07:57:27] <elmcrest> good morning everybody. I try to have a delayed false value for hovering a menu. can someone give me a hint? ... I tried several things with $timeout, but it isn't working as wanted :) ... https://dpaste.de/YjFW
[07:57:30] *** Simone\_ has quit IRC
[07:58:07] <elmcrest> the problem so far is that the timeout gets canceled on hover-In over the Menu
[07:58:23] <tjsail33> the return false in the function called by the timeout also returns false for just that function... it wont bubble up
[07:58:33] *** Shrooms has joined #angularjs
[07:58:51] *** jaydubya has quit IRC
[07:59:41] <Fifty5Plus> any ui-router gurus around
[07:59:43] *** Simone\ has joined #angularjs
[08:00:13] *** devhoag has quit IRC
[08:00:25] *** joroc has quit IRC
[08:00:25] *** platonic has joined #angularjs
[08:00:41] *** jonr22 has joined #angularjs
[08:00:52] *** hehe has quit IRC
[08:01:22] *** dnull has quit IRC
[08:01:46] *** minimoo1 has quit IRC
[08:02:31] <TheAceOfHearts> lol, gurus?
[08:02:31] *** rburns has quit IRC
[08:02:38] <TheAceOfHearts> one of the maintainers hangs out here
[08:02:39] *** jonr2219 has joined #angularjs
[08:02:42] *** jonr22 has quit IRC
[08:02:48] *** zz_night-owl is now known as night-owl
[08:02:59] *** rburns has joined #angularjs
[08:03:26] *** Shrooms has quit IRC
[08:03:42] *** mennea has quit IRC
[08:05:10] *** uru|away is now known as uru
[08:06:48] *** night-owl is now known as zz_night-owl
[08:06:49] <Fifty5Plus> TheAceOfHearts: do you use it?
[08:06:52] *** discgo has quit IRC
[08:06:55] *** jonr22 has joined #angularjs
[08:06:55] <TheAceOfHearts> of course
[08:07:22] *** jonr2219 has quit IRC
[08:07:27] <Fifty5Plus> TheAceOfHearts: do you want to look at/fix something on pm
[08:07:34] <tjsail33> Fifty5Plus: what kind of help are you looking for? i'm pretty knowledgable about it
[08:07:41] *** dantheta has joined #angularjs
[08:07:41] <TheAceOfHearts> just post your question here in chat
[08:07:45] *** bhuvanaurora has joined #angularjs
[08:07:56] <TheAceOfHearts> I'll take a look, but I can't promise anything, I'm starting to get my buzz on
[08:08:15] <Fifty5Plus> TheAceOfHearts: then i need to shoot you ( : after you help me : )
[08:08:35] *** jonr22 has quit IRC
[08:08:44] *** Raging_Hog has joined #angularjs
[08:08:48] *** jonr22 has joined #angularjs
[08:09:10] <TheAceOfHearts> lol
[08:09:27] *** thomastuts has joined #angularjs
[08:09:38] *** tfennelly has joined #angularjs
[08:10:30] *** tomengland_mbp has joined #angularjs
[08:10:36] <Fifty5Plus> click on "toggle" then on "news to video" then on "toggle" then on "video to news" and I would expect the desktops not to snap back ... http://plnkr.co/edit/tOgzJP1DlJx7YdjqSXOd?p=preview
[08:10:38] *** Shrooms has joined #angularjs
[08:10:43] *** jonr22 has quit IRC
[08:10:44] *** fixl has joined #angularjs
[08:10:52] *** jonr2219 has joined #angularjs
[08:11:05] *** threesixes has quit IRC
[08:11:49] <TheAceOfHearts> why wouldn't it?
[08:11:56] <Fifty5Plus> TheAceOfHearts tjsail33 ^
[08:12:17] *** mtsr has joined #angularjs
[08:12:38] *** jonr2219 has quit IRC
[08:12:45] *** ProLoser has quit IRC
[08:12:47] *** bhuvanaurora has quit IRC
[08:12:48] <tjsail33> plnkr is so slow for me haha. hold on
[08:13:02] *** jonr22 has joined #angularjs
[08:13:20] <TheAceOfHearts> you're referencing different objects
[08:13:49] *** morenoh149 has joined #angularjs
[08:13:51] <TheAceOfHearts> you should use a service and return an instance with the objects you wanna bind to
[08:13:54] <TheAceOfHearts> but even then
[08:13:56] <TheAceOfHearts> it'll fuck up
[08:14:08] <TheAceOfHearts> the cool thing about ui-router is being able to next states
[08:14:12] <Fifty5Plus> TheAceOfHearts: even with back button it snaps back
[08:14:16] *** tfennelly has quit IRC
[08:14:18] *** jonr22 has quit IRC
[08:14:35] <TheAceOfHearts> because you're returning a factory and you're binding to the result of a function call every time
[08:14:42] <TheAceOfHearts> so you never keep the object reference
[08:14:45] *** jonr22 has joined #angularjs
[08:15:10] <tjsail33> seconded, TheAceOfHearts
[08:15:12] *** soee has joined #angularjs
[08:15:16] *** mcastro has joined #angularjs
[08:15:18] <TheAceOfHearts> this should really be in a directive, anyway; and then you can use a service to control it
[08:15:33] <TheAceOfHearts> that way you don't have to duplicate code
[08:16:00] *** ammar_ has joined #angularjs
[08:16:01] <Fifty5Plus> my mind is spinning ... can you fix it ... as in - so i can learn from it?
[08:16:21] <TheAceOfHearts> too tired to code right now
[08:16:40] <Fifty5Plus> TheAceOfHearts: i am going to shoot you then :)
[08:16:46] <tjsail33> too busy haha. have a big project due saturday thats pushing the realms of possibility
[08:16:49] <TheAceOfHearts> I like shots~
[08:16:56] <TheAceOfHearts> tjsail33: story of my life.
[08:16:57] *** Hanny has joined #angularjs
[08:17:03] <TheAceOfHearts> all projects push the realm of possibility
[08:17:15] <Fifty5Plus> TheAceOfHearts: you guys are playing with me ... thanks for suggestions
[08:17:19] *** jdj_dk has joined #angularjs
[08:17:38] <TheAceOfHearts> the best lesson I've learned is that whenever you think of an estimate, you double it. and then you add half of the amount of time, and even then you might still miss the deadlin because shit happens
[08:18:04] *** joshontheweb has joined #angularjs
[08:18:19] *** jonr22 has quit IRC
[08:18:30] *** numenor has joined #angularjs
[08:18:37] *** Shrooms has quit IRC
[08:18:48] *** jonr22 has joined #angularjs
[08:18:50] <Hanny> DOM manupulation in angular is prefered one or not?
[08:18:56] <TheAceOfHearts> wut?
[08:19:00] <TheAceOfHearts> do DOM manipulation in directives
[08:19:05] *** dseitz has joined #angularjs
[08:19:31] *** tripu has joined #angularjs
[08:19:41] *** Click66 has joined #angularjs
[08:19:42] *** mcastro has quit IRC
[08:20:21] *** jonr22 has quit IRC
[08:20:37] *** rhp has quit IRC
[08:20:54] *** jonr22 has joined #angularjs
[08:21:39] *** Hanny has quit IRC
[08:22:31] *** jonr22 has quit IRC
[08:22:50] *** iksik has quit IRC
[08:22:52] *** jonr22 has joined #angularjs
[08:23:28] *** iksik has joined #angularjs
[08:23:37] *** anivemin has joined #angularjs
[08:23:47] *** Luser has joined #angularjs
[08:24:08] *** threesixes has joined #angularjs
[08:24:24] *** jonr22 has quit IRC
[08:25:05] *** jonr22 has joined #angularjs
[08:25:39] *** Kashinath has joined #angularjs
[08:26:09] *** dan2k3k4 has joined #angularjs
[08:26:56] *** jonr2219 has joined #angularjs
[08:26:59] *** jonr22 has quit IRC
[08:27:26] *** jmichaelward has joined #angularjs
[08:27:30] *** numenor has quit IRC
[08:27:44] *** Kashinath has quit IRC
[08:28:14] *** doginal has quit IRC
[08:28:24] *** Luser has quit IRC
[08:28:40] *** anivemin has quit IRC
[08:28:57] *** jonr22 has joined #angularjs
[08:28:58] *** jonr2219 has quit IRC
[08:29:35] <elmcrest> tjsail33: ok thx, I started all over again and got it working with this http://stackoverflow.com/questions/15279627/angularjs-preventing-mouseenter-event-triggering-on-child-elements :)
[08:29:49] *** adpirz has joined #angularjs
[08:29:55] *** woebtz has quit IRC
[08:30:41] <tjsail33> ah nice
[08:31:01] *** jonr2219 has joined #angularjs
[08:31:19] *** bmac has quit IRC
[08:31:47] *** jmichaelward has quit IRC
[08:32:26] *** doginal has joined #angularjs
[08:32:29] *** dan2k3k4 has quit IRC
[08:32:55] *** dan2k3k4 has joined #angularjs
[08:33:03] *** jonr2219 has quit IRC
[08:33:04] *** rburns has quit IRC
[08:33:05] *** jonr22_ has joined #angularjs
[08:33:07] *** dannyc_ has joined #angularjs
[08:33:22] *** rburns has joined #angularjs
[08:33:37] *** jonr22 has quit IRC
[08:34:05] *** mary5030 has joined #angularjs
[08:34:53] *** adpirz has quit IRC
[08:35:03] *** jonr22_ has quit IRC
[08:35:06] *** jonr22 has joined #angularjs
[08:35:14] <Fifty5Plus> click on the following ... "Bob" then "About" then "Contacts" ... would you not expect such a sample to be on "Bob" ... http://angular-ui.github.io/ui-router/sample
[08:35:54] *** mtsr has quit IRC
[08:35:56] *** zbzzn has joined #angularjs
[08:36:31] *** bmac has joined #angularjs
[08:36:37] *** jacuqesdancona_ has joined #angularjs
[08:37:03] *** jonr22 has quit IRC
[08:37:08] *** jonr2219 has joined #angularjs
[08:37:25] *** yts has joined #angularjs
[08:38:22] *** Prjio has joined #angularjs
[08:38:33] *** Sky[x] has joined #angularjs
[08:38:35] *** Evanion has quit IRC
[08:38:37] *** despai has joined #angularjs
[08:38:46] *** mary5030 has quit IRC
[08:38:49] *** thomastuts has quit IRC
[08:39:02] *** platonic has quit IRC
[08:39:02] *** doginal has quit IRC
[08:39:08] *** jonr22 has joined #angularjs
[08:39:21] *** jonr2219 has quit IRC
[08:39:40] *** mtsr has joined #angularjs
[08:40:13] *** despai has quit IRC
[08:40:28] *** Sontakey has joined #angularjs
[08:40:49] <tjsail33> Fifty5Plus: why would it be on Bob? youre returning to the root of the COntact tab by clicking the link to it
[08:41:05] *** evilaliv3 has joined #angularjs
[08:41:45] *** opiates has joined #angularjs
[08:41:47] <Fifty5Plus> because it's a desktop application and not a web page ;)
[08:42:33] *** tjsail33 has quit IRC
[08:43:12] *** jonr2219 has joined #angularjs
[08:43:17] *** Prjio has quit IRC
[08:43:17] *** jonr22 has quit IRC
[08:44:24] *** bengillies has quit IRC
[08:44:44] *** jonr2219 has quit IRC
[08:44:55] *** Sontakey has quit IRC
[08:45:13] *** jonr22 has joined #angularjs
[08:47:15] *** Embassy has quit IRC
[08:47:17] *** jonr2219 has joined #angularjs
[08:47:43] *** jonr22 has quit IRC
[08:48:09] *** bmac has quit IRC
[08:48:37] *** dannyc has joined #angularjs
[08:48:44] *** roven has joined #angularjs
[08:49:04] *** nfroidure has joined #angularjs
[08:49:34] *** MistahKurtz has quit IRC
[08:49:41] *** babadofar has joined #angularjs
[08:49:42] *** frankblizzar has joined #angularjs
[08:50:02] *** DrMabuse has joined #angularjs
[08:51:20] *** jonr22 has joined #angularjs
[08:51:31] *** jonr2219 has quit IRC
[08:51:47] *** coopaloop has quit IRC
[08:52:44] *** ammar_ has quit IRC
[08:52:47] *** bundledavid has joined #angularjs
[08:53:16] *** dannyc has quit IRC
[08:53:40] *** Nijikokun has quit IRC
[08:54:02] *** platonic has joined #angularjs
[08:54:37] *** DrMabuse has quit IRC
[08:54:52] *** platonic has quit IRC
[08:54:58] *** tarnus has quit IRC
[08:55:26] *** jonr2219 has joined #angularjs
[08:55:50] <soee> good morning
[08:56:18] *** larsgk has joined #angularjs
[08:56:57] *** jonr2219 has quit IRC
[08:57:07] *** bundledavid has quit IRC
[08:57:12] *** learner has joined #angularjs
[08:57:15] *** larsam has joined #angularjs
[08:57:27] *** jonr2219 has joined #angularjs
[08:57:48] *** jonr22 has quit IRC
[08:57:54] *** DrMabuse has joined #angularjs
[08:58:18] *** chintanparikh has joined #angularjs
[08:59:15] *** lite has joined #angularjs
[08:59:22] *** tomengland_mbp has quit IRC
[08:59:29] *** jonr22 has joined #angularjs
[08:59:54] *** jonr2219 has quit IRC
[08:59:57] *** pandayang has joined #angularjs
[09:01:01] *** jonr22 has quit IRC
[09:01:30] *** jonr22 has joined #angularjs
[09:01:31] <fairuz> Hi guys. I have $scope.base.navTitle = 'Booking' in my controller where base object is defined in the parent controller. My unit testing failed expect(scope.base.navTitle).toBe('Booking'); where it said something about undefined is not an object. How can I fix this? Thanks
[09:01:43] *** fbenoit has joined #angularjs
[09:02:09] <pandayang> hi everyone, I have a problem, please help. Why angular.extend({},direction[0],{link:function(){}}) cannot replace the link function of parent?
[09:02:32] *** asher^ has quit IRC
[09:03:16] *** ProLoser has joined #angularjs
[09:03:21] *** jonr22 has quit IRC
[09:03:33] *** jonr22 has joined #angularjs
[09:03:33] *** rburns has quit IRC
[09:03:55] *** Sontakey has joined #angularjs
[09:03:58] *** rburns has joined #angularjs
[09:04:25] *** GeneralChoomin has joined #angularjs
[09:04:25] *** GeneralChoomin has joined #angularjs
[09:05:05] *** laurensclaessen has joined #angularjs
[09:05:16] *** jonr22 has quit IRC
[09:05:19] <Grokling> fairuz: I'd be working backwards in your test to determine what level of scope.base.navTitle is missing. Try scope.base, then try scope..
[09:05:23] *** mtsr has quit IRC
[09:05:34] *** jonr22 has joined #angularjs
[09:05:34] *** lemur has quit IRC
[09:06:06] *** lemur has joined #angularjs
[09:06:21] *** rileylark has joined #angularjs
[09:07:01] *** fbenoit has quit IRC
[09:07:25] *** jonr22 has quit IRC
[09:07:36] *** jonr22 has joined #angularjs
[09:07:53] *** mennea has joined #angularjs
[09:08:58] *** larsgk has quit IRC
[09:09:07] *** sajt has joined #angularjs
[09:09:24] *** jonr22 has quit IRC
[09:09:24] *** StryKaizer has joined #angularjs
[09:09:30] <fairuz> Grokling: ah yeah. It was scope.base. Adding scope.base = {} in inject(.. ) do the trick
[09:09:38] *** jonr22 has joined #angularjs
[09:10:07] *** a3gis has joined #angularjs
[09:10:10] *** technickul has quit IRC
[09:10:19] *** mtsr has joined #angularjs
[09:10:20] *** thomastuts has joined #angularjs
[09:10:37] *** mtsr has quit IRC
[09:10:53] *** lemur has quit IRC
[09:10:53] *** rileylark has quit IRC
[09:10:57] *** raj___ has quit IRC
[09:11:31] *** raj___ has joined #angularjs
[09:11:41] *** jonr2219 has joined #angularjs
[09:11:42] *** jonr22 has quit IRC
[09:11:57] *** marcjs___ has joined #angularjs
[09:12:53] *** Geertje123_ has joined #angularjs
[09:13:18] *** bhuvanaurora has joined #angularjs
[09:13:19] *** fbenoit has joined #angularjs
[09:13:39] *** edzez_ is now known as edzez
[09:13:44] *** jonr22 has joined #angularjs
[09:13:46] *** marcjs__ has quit IRC
[09:13:48] *** jonr2219 has quit IRC
[09:13:49] *** doc|mobile has joined #angularjs
[09:14:03] *** nesquerra has quit IRC
[09:14:54] *** a3gis has quit IRC
[09:15:01] <jacuqesdancona_> ugh
[09:15:05] <jacuqesdancona_> we're semi live
[09:15:31] <jacuqesdancona_> express somehow not serving static files
[09:15:46] *** jonr2219 has joined #angularjs
[09:15:56] *** joshontheweb has quit IRC
[09:16:06] *** mennea has quit IRC
[09:16:50] *** cacts|wtf has joined #angularjs
[09:16:55] *** phzon has joined #angularjs
[09:17:38] *** Alina-malina has quit IRC
[09:17:46] <TheAceOfHearts> using express as a file-server for a production system seems stupid in most cases
[09:17:49] *** jonr22_ has joined #angularjs
[09:17:56] *** Luser has joined #angularjs
[09:18:00] *** niklasmodess has joined #angularjs
[09:18:15] *** jonr2219 has quit IRC
[09:18:16] *** tangorri has joined #angularjs
[09:18:17] *** jonr22 has quit IRC
[09:18:42] *** bhuvanaurora has quit IRC
[09:19:13] *** dan2k3k4 has quit IRC
[09:19:30] *** Sky[x] has quit IRC
[09:19:51] *** jonr22_ has quit IRC
[09:19:57] *** Sky[x] has joined #angularjs
[09:20:04] *** jonr22 has joined #angularjs
[09:20:12] *** Alina-malina has joined #angularjs
[09:20:13] *** Alina-malina has joined #angularjs
[09:20:41] *** cheef1 has joined #angularjs
[09:21:19] *** nesquerra has joined #angularjs
[09:21:26] *** phzon has quit IRC
[09:21:34] *** jonr22 has quit IRC
[09:21:45] *** doug64k has quit IRC
[09:21:51] *** jonr22 has joined #angularjs
[09:21:56] *** larsgk has joined #angularjs
[09:22:53] *** Luser has quit IRC
[09:23:25] *** jonr22 has quit IRC
[09:23:39] *** e0ipso|away is now known as e0ipso
[09:23:53] *** jonr22 has joined #angularjs
[09:24:08] *** sk87 has joined #angularjs
[09:24:15] <davek_> TheAceOfHearts, wha? Express static file serving is just as stable as any backend.
[09:25:05] <TheAceOfHearts> CDN :P?
[09:25:22] *** nemothekid has quit IRC
[09:25:51] *** jonr22 has quit IRC
[09:25:56] *** jonr2219 has joined #angularjs
[09:26:20] <TheAceOfHearts> but you probably shouldn't be binding node to port 80 anyway, and you'd have it behind something like nginx
[09:26:24] <TheAceOfHearts> so why not have nginx serving files instead?
[09:26:47] *** phzon has joined #angularjs
[09:27:03] *** marcjs____ has joined #angularjs
[09:27:09] *** andrew9183 has joined #angularjs
[09:27:58] *** jonr22 has joined #angularjs
[09:28:03] *** jonr2219 has quit IRC
[09:28:12] *** Poppabear has quit IRC
[09:28:35] *** soee has quit IRC
[09:28:41] *** sajt has quit IRC
[09:29:08] *** soee has joined #angularjs
[09:29:13] <ytsejam> Good Morning.Does anyone use wordpress backend and angular-js as frontend?
[09:30:05] *** jonr2219 has joined #angularjs
[09:30:21] *** jonr22 has quit IRC
[09:30:29] *** frankbli_ has joined #angularjs
[09:30:34] *** Evanion has joined #angularjs
[09:31:06] *** marcjs___ has quit IRC
[09:31:28] *** mogaj|2 has quit IRC
[09:31:33] *** jonr2219 has quit IRC
[09:31:44] *** edy has joined #angularjs
[09:31:55] *** mogaj|2 has joined #angularjs
[09:31:57] *** IJNX has quit IRC
[09:32:14] *** jonr22 has joined #angularjs
[09:32:49] *** pandayang has quit IRC
[09:32:49] *** TheAceOfHearts has quit IRC
[09:33:08] *** frankblizzar has quit IRC
[09:33:28] *** sanni has joined #angularjs
[09:33:41] *** sikor_sxe has joined #angularjs
[09:34:01] *** brundige has quit IRC
[09:34:02] *** rburns has quit IRC
[09:34:04] *** jonr2219 has joined #angularjs
[09:34:13] *** jonr22 has quit IRC
[09:34:23] *** rburns has joined #angularjs
[09:34:49] *** raj___ has quit IRC
[09:34:49] *** dannyc_ has quit IRC
[09:34:56] *** sanni has left #angularjs
[09:35:54] *** soee has quit IRC
[09:36:05] *** jonr22 has joined #angularjs
[09:36:22] *** soee has joined #angularjs
[09:36:24] *** juristr has joined #angularjs
[09:36:36] *** jonr2219 has quit IRC
[09:36:43] *** larsgk has quit IRC
[09:37:00] *** gundry has joined #angularjs
[09:37:09] *** aks has joined #angularjs
[09:37:17] *** kuadrosx has quit IRC
[09:37:19] *** ColombusDev has joined #angularjs
[09:37:23] <ColombusDev> hellooo
[09:37:37] *** jonr22 has quit IRC
[09:37:41] *** trend has joined #angularjs
[09:37:47] *** kuadrosx has joined #angularjs
[09:38:00] *** ColombusDev is now known as ColumbusDev
[09:38:06] *** jonr22 has joined #angularjs
[09:38:30] *** martianboy has joined #angularjs
[09:38:54] *** mennea has joined #angularjs
[09:39:16] *** Prjio has joined #angularjs
[09:39:26] *** anivemin has joined #angularjs
[09:39:41] *** arpu has joined #angularjs
[09:40:07] *** MaxV has joined #angularjs
[09:40:08] *** jonr22 has quit IRC
[09:40:17] *** jonr2219 has joined #angularjs
[09:40:23] <ColumbusDev> I have a question... I want to make unit tests to a module I have. the problem is when I do angular.mock.module(MODULE_NAME) it automatically runs the .run function in that module. But I don't want it to run on my controller tests... How can I override this function, or I how can I mock the service before this function is executed?
[09:42:11] *** trend has quit IRC
[09:42:19] *** jonr22 has joined #angularjs
[09:42:26] *** jonr2219 has quit IRC
[09:42:34] *** marcjs____ has quit IRC
[09:42:40] <cheef1> you can mock whatevers in your run fn by registering a mock module with module(function($provide){...})
[09:42:54] <cheef1> depends how complex it is a i guess
[09:43:03] *** arpu has quit IRC
[09:43:18] *** marcjs____ has joined #angularjs
[09:43:18] *** roven has quit IRC
[09:43:38] *** jaydubya has joined #angularjs
[09:43:43] *** ron1 has joined #angularjs
[09:43:44] *** jonr22 has quit IRC
[09:44:01] *** Prjio has quit IRC
[09:44:18] *** anivemin has quit IRC
[09:44:18] *** Sudu has joined #angularjs
[09:44:22] *** jonr22 has joined #angularjs
[09:44:48] *** Sudu has left #angularjs
[09:45:12] *** kevinxu has joined #angularjs
[09:45:15] *** dimetron has quit IRC
[09:45:35] *** kevinxu is now known as Guest82670
[09:46:37] *** slashroot_ has quit IRC
[09:46:55] *** apertoire has joined #angularjs
[09:47:17] *** gh0st has joined #angularjs
[09:47:18] *** tfennelly has joined #angularjs
[09:47:49] *** jonr22 has quit IRC
[09:47:52] *** jaydubya has quit IRC
[09:48:18] *** jonr22 has joined #angularjs
[09:48:18] *** ron1 has quit IRC
[09:48:32] *** saucey has joined #angularjs
[09:48:41] *** gurke_ has joined #angularjs
[09:49:06] *** chintanparikh has quit IRC
[09:49:21] <ColumbusDev> cheef1, when I use "module('NameModule')" I always get '[object Object]' is not a function (evaluating 'module('NameModule')')
[09:49:21] *** dannyc has joined #angularjs
[09:49:26] <ColumbusDev> I use mocha
[09:49:35] <ColumbusDev> do you know what this can be?
[09:49:47] <ColumbusDev> I usually use angular.mock.module('NameModule')
[09:49:50] *** jonr22 has quit IRC
[09:49:55] *** dc_ has quit IRC
[09:50:09] *** Oxynum has joined #angularjs
[09:50:19] *** jonr22 has joined #angularjs
[09:50:50] <cheef1> got a plnkr?
[09:50:56] <cheef1> be easier to look at!
[09:51:02] <cheef1> i normally use mocha
[09:51:08] *** instence has joined #angularjs
[09:51:26] *** poacher2k has joined #angularjs
[09:51:54] *** jonr22 has quit IRC
[09:52:00] *** instence_ has quit IRC
[09:52:23] *** jonr22 has joined #angularjs
[09:53:35] <ColumbusDev> http://plnkr.co/edit/c37LeVtaC8nYogTpq94r?p=info
[09:53:56] *** dannyc has quit IRC
[09:54:22] *** marcjs____ has quit IRC
[09:54:24] <cheef1> cheers
[09:54:25] *** jonr2219 has joined #angularjs
[09:54:36] *** jonr22 has quit IRC
[09:54:43] <ColumbusDev> :)
[09:54:45] *** motionman is now known as cocktalker
[09:55:13] *** Sontakey has quit IRC
[09:55:31] <cheef1> which describe or it is failing?
[09:55:36] *** platonic has joined #angularjs
[09:55:45] <cheef1> ah i see, commented out ;p
[09:56:24] *** adamlau has quit IRC
[09:56:26] *** IJNX has joined #angularjs
[09:56:28] *** jonr22 has joined #angularjs
[09:56:28] <cheef1> can you put the auth module in there?
[09:56:36] <cheef1> or at least some sort of stub that shows its definition?
[09:56:39] <cheef1> just making a tea
[09:56:48] *** jonr2219 has quit IRC
[09:56:49] *** bundledavid has joined #angularjs
[09:57:15] <lite> im writing some e2e testing and have come across a problem that i havent been able to "think" my way out of. Ive written a test that ensures that the Header of a page is the name of the user, "Foo 123". I then use an input control to change the name to "Bar 333" and validate that the header changes to "Bar 333". The problem is that the next time the test is run the name will stil be "Bar 333" due to the fact that nothing is mocked out and the ch
[09:57:16] <lite> anges being made during the test are stored.
[09:57:56] <lite> I could of course write some "cleanup" after the test has completed but what if something unexpected happens halfway through the completion of the test and the cleanup is never run?
[09:57:57] <ColumbusDev> cheef1, added the auth-controller and auth-module
[09:58:18] <lite> so my generic question is: How do I make sure that I always "clean up" after myself during e2e testing
[09:58:49] *** ahtik has joined #angularjs
[09:59:07] <cheef1> are you persisting changes to a db lite?
[09:59:12] *** mchammer has joined #angularjs
[09:59:20] <cheef1> ColumbusDev: Thanks, are you just tesing the controller?
[09:59:21] <ColumbusDev> nop
[09:59:30] <ColumbusDev> yes, just testing the controller
[09:59:43] *** Soothsayer has joined #angularjs
[09:59:52] <ColumbusDev> the "nop" was for the previous question... about db lite :p
[10:00:12] *** platonic has quit IRC
[10:00:16] <cheef1> Cool, my advice would be to change your module definition slightly so you don't have to initialise the auth module when you're just testing the controller
[10:00:20] *** jagga has joined #angularjs
[10:00:37] *** jonr2219 has joined #angularjs
[10:00:39] *** jonr22 has quit IRC
[10:00:42] <ColumbusDev> hummm
[10:00:46] <ColumbusDev> how could I do that?
[10:01:04] <cheef1> assuming module name module.auth, then make the controller module.auth.controllers, and then include module.auth.controllers as a dependency of module.auth
[10:01:05] <ColumbusDev> I have been strugling with the mocks to isolate the components I'm testing
[10:01:17] *** toin0u|away is now known as toin0u
[10:01:46] <cheef1> that way you can just load the module.auth.controllers module and avoid having run phase code executing
[10:01:49] *** Alina-malina has quit IRC
[10:02:12] *** grindmodeon has joined #angularjs
[10:02:14] <cheef1> suspect the issue with code currently is that idleService needs to be mocked
[10:02:37] *** jonr22 has joined #angularjs
[10:02:56] *** frobs has joined #angularjs
[10:03:50] *** cocktalker has quit IRC
[10:04:01] <cheef1> what line does that error get raised on?
[10:04:13] *** doc|mobile has quit IRC
[10:04:43] *** jonr22_ has joined #angularjs
[10:04:44] *** ingsoc has joined #angularjs
[10:04:44] *** rburns has quit IRC
[10:05:00] *** rburns has joined #angularjs
[10:05:09] *** jonr22 has quit IRC
[10:05:32] <ColumbusDev> cheef1, ya I need to mock that service
[10:05:39] *** andrew9183 has quit IRC
[10:05:46] <lite> cheef1: yup. the changes made during the tests are persisted
[10:05:48] <ColumbusDev> but the .run function gets executed when I do angular.mock.module
[10:05:52] *** Alina-malina has joined #angularjs
[10:05:52] *** Alina-malina has joined #angularjs
[10:05:54] *** jonr2219 has quit IRC
[10:05:58] <cheef1> ye it will do
[10:05:58] *** foofoobar has joined #angularjs
[10:06:27] <ColumbusDev> I'll check what you said about just load the module.auth.controller :)
[10:06:53] <cheef1> so you either have to mock out that functionality, so idleService.start() does something you'd expect, but if you're testing just the controller or just some other component in isolation you're going to have a load of bloat around setting your tests up that way
[10:07:09] <cheef1> controllers (and their tests) are generally very slim
[10:07:25] <cheef1> lite: I would suggest you mock out the backened then
[10:07:35] <cheef1> more of a midway test that e2e test
[10:07:41] <lite> cheef1: that makes the tests less e2e :p
[10:07:58] <cheef1> where are those tests running? dev machine or CI environment ?
[10:08:05] <soee> ui-router always requires some defautl state do be defined ?
[10:08:08] <lite> dec machines
[10:08:14] <lite> dev machines for starters
[10:08:17] *** marr has joined #angularjs
[10:08:43] <lite> we're thinking of mocking out some of the services(the db included) and getting them to run in our CI environment
[10:08:43] *** jonr22 has joined #angularjs
[10:08:44] <cheef1> i dont see how it makes the e2e test any less valid as you're asserting at the protocol layer
[10:08:46] *** dannyc has joined #angularjs
[10:09:03] <cheef1> we do the same, once the api is defined can write e2e tests that dont need a back end
[10:09:12] *** NoNMaDDeN has quit IRC
[10:09:17] *** jonr22_ has quit IRC
[10:09:22] *** jlebrech has joined #angularjs
[10:09:26] <cheef1> otherwise you need some cleanup operation onyou're db that resets its state
[10:09:35] <cheef1> in a before/after for the e2e test spec
[10:09:52] *** kuadrosx_ has joined #angularjs
[10:09:56] <lite> right. thats what I was contemplating
[10:10:02] <cheef1> never like exposing that sort of operation on an API
[10:10:06] *** davek_ has quit IRC
[10:10:17] *** kuadrosx has quit IRC
[10:10:20] <cheef1> http/some/path/delete/all/my/data
[10:10:24] <cheef1> yikes!
[10:10:46] *** jonr2219 has joined #angularjs
[10:10:59] *** jonr22 has quit IRC
[10:11:36] <Soothsayer> In UI-Router, for a state, if one of my resolves do not resolve their promise (say I am resolving a product via $http).. then my next resolve is never called. In this case, how do I catch that a product does not exist and return a 404 not found to the user?
[10:12:06] *** Luser has joined #angularjs
[10:12:28] *** jonr2219 has quit IRC
[10:13:00] *** jonr22 has joined #angularjs
[10:13:16] <cheef1> normally i wouldnt write e2e tests to run on a dev machine but if theres nothing to properly integrate with in a CI environment then it does provide some confidence that the UI works under those circumstances
[10:13:20] <cigol_> Hi I want to use translate-compile. Docs advice me to use like this: <ANY translate="TRANSLATION_ID" translate-compile></ANY>
[10:13:25] <cheef1> Hence the midway approach
[10:13:35] <cheef1> You'll need some magic in the build to get it working though :D
[10:13:54] *** NoNMaDDeN has joined #angularjs
[10:13:56] *** AciD`` has joined #angularjs
[10:13:58] <cigol_> but I have like this: <td ng-bind-html="('notification.' + row.event.name) | translate : row.metadata"></td> . how to enable post-compile in that case ?
[10:14:12] *** Shrooms has joined #angularjs
[10:14:13] *** Shrooms has quit IRC
[10:14:13] *** Shrooms has joined #angularjs
[10:14:51] *** jonr22 has quit IRC
[10:15:09] *** jonr22 has joined #angularjs
[10:15:37] *** intellix has joined #angularjs
[10:15:50] *** andrew9183 has joined #angularjs
[10:15:56] *** dannyc_ has joined #angularjs
[10:16:00] *** jmichaelward has joined #angularjs
[10:16:10] *** bengillies has joined #angularjs
[10:16:13] *** thomasreggi has quit IRC
[10:16:17] *** Luser has quit IRC
[10:16:41] *** jonr22 has quit IRC
[10:16:51] *** jonr22 has joined #angularjs
[10:16:53] <jlebrech> anyone know of guides to make railsy models in angularjs rather than the services pattern (i'm using restangular)
[10:17:27] *** anivemin has joined #angularjs
[10:17:49] *** jgladwill has quit IRC
[10:18:07] *** anivemin has quit IRC
[10:18:43] *** adpirz has joined #angularjs
[10:19:42] *** m8 has joined #angularjs
[10:20:27] *** jmichaelward has quit IRC
[10:20:46] *** grindmodeon has quit IRC
[10:20:49] *** JERE has quit IRC
[10:21:00] *** caitp has joined #angularjs
[10:22:02] *** ogdabou has joined #angularjs
[10:22:58] *** jonr2219 has joined #angularjs
[10:23:01] *** jonr22 has quit IRC
[10:23:12] *** tech2 has joined #angularjs
[10:23:54] *** adpirz has quit IRC
[10:24:08] *** Alina-malina has quit IRC
[10:24:09] *** _45kb has joined #angularjs
[10:24:36] <_45kb> guys sorry but i am in trouble i need your help, is there anyone so kind to help me on this issue https://github.com/720kb/angular-datepicker/issues/7
[10:24:46] *** jonr2219 has quit IRC
[10:25:05] *** jonr22 has joined #angularjs
[10:25:11] *** crunch-choco has joined #angularjs
[10:25:17] *** cacts|wtf has quit IRC
[10:25:35] *** crunch-choco is now known as Guest62657
[10:26:36] *** jonr22 has quit IRC
[10:26:52] *** gunn has quit IRC
[10:27:02] *** jonr22 has joined #angularjs
[10:27:18] *** caitp has quit IRC
[10:28:54] *** jonr22 has quit IRC
[10:29:04] *** jonr22 has joined #angularjs
[10:30:36] *** jonr22 has quit IRC
[10:30:40] *** kas84 has joined #angularjs
[10:31:05] *** jonr22 has joined #angularjs
[10:32:09] *** Anton_ has quit IRC
[10:33:32] *** posixpascal has joined #angularjs
[10:34:51] *** cornerma1 has joined #angularjs
[10:35:00] *** azizur has joined #angularjs
[10:35:00] *** rburns has quit IRC
[10:35:23] *** rburns has joined #angularjs
[10:36:39] *** jonr22 has quit IRC
[10:37:06] *** motto has joined #angularjs
[10:37:20] *** grindmodeon has joined #angularjs
[10:37:30] *** motto is now known as Guest1202
[10:37:53] *** cornerman has quit IRC
[10:37:54] *** cornerma1 is now known as cornerman
[10:38:30] *** sheplu has quit IRC
[10:39:16] *** raj___ has joined #angularjs
[10:39:27] *** m8 has quit IRC
[10:39:29] *** nesquerra has quit IRC
[10:39:32] *** kuadrosx_ has quit IRC
[10:39:53] *** Prjio has joined #angularjs
[10:40:06] *** dc_ has joined #angularjs
[10:40:43] *** startupality has joined #angularjs
[10:40:44] *** Iravan has quit IRC
[10:41:41] *** davidreis has joined #angularjs
[10:43:08] *** epantzar has joined #angularjs
[10:43:39] *** tarnus has joined #angularjs
[10:43:44] *** intellix has quit IRC
[10:43:52] <foofoobar> So I have a field which contains a URL in one of this formats: schema://foobar.com/foo/bar/xyz or just foobar.com
[10:44:28] <foofoobar> I want to colorize the first part of this path (schema://foobar.com/ and in the second example foobar.com)
[10:44:37] <foofoobar> What is a good way to do this? Use a dirctive and regular expressions?
[10:44:40] *** dc_ has quit IRC
[10:44:43] *** gunn has joined #angularjs
[10:45:30] *** Prjio has quit IRC
[10:45:57] *** caitp has joined #angularjs
[10:46:19] <_45kb> foofoobar: a filter if you printing that in views as string
[10:46:21] <_45kb> or html
[10:46:31] <_45kb> {{myString | colorizeUrl}}
[10:46:46] <foofoobar> _45kb: and then something like a regular expression?
[10:46:47] *** raj___ has quit IRC
[10:46:54] <foofoobar> how should my filter return html output?
[10:46:58] *** raj___ has joined #angularjs
[10:47:06] <_45kb> foofoobar: sure or a replace if you know that part is always the same
[10:47:13] <_45kb> replace() or regexp yeah
[10:47:35] <andrew9183> anyone know why my title isn’t being applied in my directive: https://gist.github.com/andrewho83/202b04511e0bd956ae53
[10:48:12] <foofoobar> _45kb: but how should I colorize with a filter? The output is escaped
[10:48:30] *** tarnus has quit IRC
[10:48:37] <_45kb> foofoobar: you can use angular sanitize
[10:48:40] <_45kb> google it ;)
[10:48:49] *** comboy_ is now known as comboy
[10:48:54] <foofoobar> all right, thank you.
[10:49:39] <Grokling> Replace the colorized piece with a <span class="color">http://whatever</span> perhaps?
[10:49:57] <foofoobar> Grokling: Yeah this is what I am trying to do.
[10:50:08] <foofoobar> I first ahve to write a mechanism now which splits the url
[10:50:11] *** t1mmen has joined #angularjs
[10:50:16] <foofoobar> because the url does not always has the same format
[10:50:23] *** grindmodeon has quit IRC
[10:50:27] <foofoobar> sometimes it’s just a host without a scheme/path
[10:50:59] *** Sebastien-L has joined #angularjs
[10:51:08] *** rburns has quit IRC
[10:52:26] *** intellix has joined #angularjs
[10:54:31] <andrew9183> ah it was ‘@‘ and not ‘='
[10:54:45] *** chrisbirk has joined #angularjs
[10:55:33] *** xxtjaxx` has quit IRC
[10:57:27] *** kuadrosx_ has joined #angularjs
[10:58:24] *** raj____ has joined #angularjs
[10:58:53] *** a3gis has joined #angularjs
[10:58:54] *** raj___ has quit IRC
[10:59:35] *** settinghead has joined #angularjs
[10:59:42] *** raj____ has quit IRC
[11:00:12] *** raj___ has joined #angularjs
[11:01:01] *** Aliks has quit IRC
[11:01:07] *** nesquerra has joined #angularjs
[11:01:19] *** Guest1202 has quit IRC
[11:01:36] *** Aliks has joined #angularjs
[11:02:59] *** c00ljs has joined #angularjs
[11:03:07] *** kuadrosx_ has quit IRC
[11:03:28] *** kuadrosx_ has joined #angularjs
[11:03:36] *** a3gis has quit IRC
[11:04:04] *** AngularUI has joined #angularjs
[11:04:04] <AngularUI> [ui-router] just-boris opened pull request #1585: fix($urlRouter): resolve clashing of routes (master...master) http://git.io/LA4-SA
[11:04:04] *** AngularUI has left #angularjs
[11:04:15] *** Eric__ has quit IRC
[11:04:48] *** grindmodeon1 has joined #angularjs
[11:04:58] *** ciro_nunes has joined #angularjs
[11:05:18] <cigol_> how to pass variables to ui-sref in angular-translate: At the moment I have "<a ui-sref="view-company({ id: {{ employer.id }} })">{{ employer.name }}</a>" and it works BUT I got parse syntax in console ?
[11:05:28] *** ciro_nunes is now known as Guest55124
[11:05:44] *** AlSquire has joined #angularjs
[11:06:12] *** Aliks has quit IRC
[11:06:13] *** Luser has joined #angularjs
[11:06:39] *** tech2 has quit IRC
[11:06:41] *** raj___ has quit IRC
[11:07:00] *** nesquerra has quit IRC
[11:07:14] <Grokling> cigol_: ui-sref="view-company({ id: employer.id })"
[11:07:18] *** Guest55124 is now known as ciro_nunes
[11:07:25] *** mlpug has joined #angularjs
[11:07:34] *** TyrfingMjolnir has quit IRC
[11:08:34] *** s00pcan has joined #angularjs
[11:08:43] *** cannap has quit IRC
[11:08:57] <cigol_> Grokling: but angular-translate can't parse it and the result is: <a ui-sref="view-company({ id: employer.id })" class="ng-scope" href="#/view-company/id/">WpiszKod</a> :/
[11:09:19] *** nesquerra has joined #angularjs
[11:09:42] <cigol_> Grokling: but if I do {{ employer.id }} then works but parse error in console
[11:09:49] <cigol_> omg...
[11:10:21] *** ColumbusDev has quit IRC
[11:10:46] *** Luser has quit IRC
[11:11:20] *** Lewix has joined #angularjs
[11:12:24] *** waverider has joined #angularjs
[11:12:24] *** waverider has joined #angularjs
[11:12:59] *** k-dawg has joined #angularjs
[11:13:04] *** m8 has joined #angularjs
[11:13:06] *** kuadrosx_ has quit IRC
[11:13:28] *** chrisbirk has quit IRC
[11:13:37] *** kuadrosx__ has joined #angularjs
[11:13:56] *** nesquerra has quit IRC
[11:13:56] <cigol_> Grokling: I fixed it :D <a ui-sref="view-company({ id: \'{{ employer.id }}\' })">{{ employer.name }}</a> works :D
[11:15:08] <Grokling> cigol_: I know nothing about angular-translate, but I'm glad you got it working!
[11:15:42] *** Lewix has quit IRC
[11:16:26] <sacho> cigol_, what does this have to do with angular-translate?
[11:16:37] *** raj___ has joined #angularjs
[11:17:46] *** dsdeiz has quit IRC
[11:17:50] *** kuadrosx has joined #angularjs
[11:18:04] *** kuadrosx__ has quit IRC
[11:18:26] *** asdf has joined #angularjs
[11:18:36] <asdf> hello guys
[11:18:44] <asdf> i have a question about angular seo
[11:18:59] <asdf> is anybody familiar with this topic?
[11:19:32] *** moritzs has joined #angularjs
[11:19:37] <asdf> ok i will just ask
[11:19:41] <cigol_> sacho: that I wanted to use directive "ui-sref" in translations
[11:19:51] <cigol_> directive with parameters
[11:20:03] <Grokling> asdf: !ask
[11:20:03] <UniBot> asdf, Don't ask to ask. Just state your question (with a !bin code sample) and wait for an answer
[11:20:16] <asdf> my boss wants me to find the best practices about writing angulur seo code
[11:20:24] <cigol_> but works I am glad. I am really impressed of angular translate job
[11:20:35] <asdf> i found this
[11:20:36] <asdf> https://developers.google.com/webmasters/ajax-crawling/docs/specification
[11:20:44] <asdf> but it explains how to make you pages crawlable
[11:20:53] <asdf> i need the best practices when writing code
[11:20:54] *** dspe has joined #angularjs
[11:20:56] <cigol_> asdf: I configured nginx for that
[11:21:04] *** dsdeiz has joined #angularjs
[11:21:06] <sacho> cigol_, none of the code you pasted uses angular-translate
[11:21:07] *** Guest82670 has quit IRC
[11:21:09] <asdf> what is this
[11:21:47] <asdf> i mean can you give me a resource
[11:21:51] <asdf> where it is described
[11:21:56] <asdf> how to write code
[11:22:04] <asdf> to be optimally optimized for search engines
[11:22:10] <asdf> how to write angular code*
[11:23:03] <cigol_> sacho: url: '<a ui-sref="view-company({ id: \'{{ id }}\' })">{{ name }}</a>'
[11:23:03] <cigol_> but I doesn't matter now
[11:23:19] <cigol_> asdf: https://prerender.io/
[11:23:31] *** Mad-C has joined #angularjs
[11:23:56] <asdf> cigol_ thanks
[11:24:04] <asdf> is this enough?
[11:24:06] <cigol_> asdf: you don't have to use it but there are many useful info https://prerender.io/getting-started#nginx
[11:24:15] <Grokling> asdf: There's a heap of good stuff on this site: http://lmgtfy.com/angular+seo
[11:24:20] *** sk87 has quit IRC
[11:24:21] <sacho> cigol_, yes, none of that is angular-translate
[11:24:43] <cigol_> ok, sacho... you are right
[11:24:48] <cigol_> this is only json
[11:24:49] <asdf> grokling the url you gave me doesnt work :(
[11:25:00] *** bhuvanaurora has joined #angularjs
[11:25:13] <asdf> i found a tutorial in angular documentation
[11:25:28] <cigol_> sacho: but this json is related to angular translate
[11:25:34] <asdf> http://www.yearofmoo.com/2012/11/angularjs-and-seo.html
[11:25:36] <asdf> this one
[11:25:43] <asdf> but it is lastly modified 2013
[11:25:55] <fizbani> Anyone has a good idea how the hell do I "reset" my browser state with protractor
[11:26:03] <asdf> and i know google has changed the way of indexing angular in 2014 May
[11:26:10] <cigol_> asdf: you can cache page using phantomjs or make alternative webpages in html which is visible for google bots
[11:26:14] <Grokling> asdf: Sorry - try this one: http://lmgtfy.com/?q=angular+seo
[11:26:18] *** Prjio has joined #angularjs
[11:26:24] <asdf> yes i know that
[11:26:30] <asdf> i mean
[11:26:30] <fizbani> Running tests one after the other will dirty the application state, I'd like to start fresh between some tests T.T
[11:26:33] <cigol_> asdf: do you know how to check if my page is optimised for google ?
[11:26:40] *** bhuvanaurora has joined #angularjs
[11:26:42] <cigol_> asdf: do you know some tools ?
[11:26:43] *** amar has joined #angularjs
[11:26:44] <amar> hi
[11:26:46] *** trend has joined #angularjs
[11:26:50] <asdf> you in google web developer tools
[11:26:52] <asdf> yes
[11:26:58] <asdf> but you know my boss
[11:27:02] <amar> i have problem with hhtps//
[11:27:05] *** amar is now known as Guest20592
[11:27:05] <asdf> wants to find best practices
[11:27:06] *** kuadrosx has quit IRC
[11:27:16] <asdf> not how to make an angular app cralwable
[11:27:31] *** Guest20592 has left #angularjs
[11:27:31] <asdf> crawlable
[11:27:59] <asdf> grokling i
[11:28:04] <asdf> i searched this topic
[11:28:08] <_45kb> asdf: once its crawlable the SEo structure is the same as for any other websites
[11:28:25] *** foofoobar has quit IRC
[11:28:32] <_45kb> *practices
[11:28:33] <asdf> ok, but should i write the code in another way or not
[11:28:44] <asdf> i will make the page crawlable
[11:28:52] <asdf> there are so many tutorials about this
[11:29:15] <asdf> but i cant find best practices about writing angular code to be maximum seo optimized
[11:29:23] <asdf> for example
[11:29:36] <_45kb> asdf: no, i mean, you make a static page crawlable not a part of it, you just need to serve bots a static page with your content, then SEO structure and practices are the same for all
[11:29:59] <asdf> ok
[11:30:03] <asdf> i understand this
[11:30:07] <_45kb> <title><h1> etc :D
[11:30:13] *** sk87 has joined #angularjs
[11:30:30] <asdf> so i dont need the write for example the directives
[11:30:30] *** Colombus has joined #angularjs
[11:30:32] *** raj___ has quit IRC
[11:30:35] <asdf> in some another way
[11:30:40] <asdf> to be more seo optimized
[11:30:56] <Grokling> You don't have directives in a static page..
[11:30:57] <_45kb> asdf: what you serve to the bots is a static page when angular finished rendering that view
[11:31:03] <_45kb> so you dont need anything of this
[11:31:06] *** foofoobar has joined #angularjs
[11:31:09] *** mkusher has joined #angularjs
[11:31:16] <asdf> ok thank you
[11:31:22] *** trend has quit IRC
[11:31:26] <Grokling> Pre-render the page, serve that result to the bots.
[11:31:38] <asdf> and final question
[11:31:56] <asdf> i read that in 2014 may google started to execute ajax requests
[11:32:06] <asdf> google crawler*
[11:32:11] <_45kb> if you have <directive></directive> in your page, whats inside of that directive is what the bot will read imho
[11:32:29] <_45kb> togheter with the rest of the page you serve :P
[11:32:31] <asdf> does this changes the flow of work or i have to present static page again
[11:32:38] *** jaydubya has joined #angularjs
[11:32:38] *** sk87 has quit IRC
[11:32:41] *** galdorvardamir has joined #angularjs
[11:32:46] *** raj___ has joined #angularjs
[11:33:46] <asdf> i mean that if now the google crawler can execute ajax requests
[11:33:50] <_45kb> asdf: a directive usually puts html in html so why you worry about it :)
[11:34:05] <asdf> should i present static html pages again
[11:34:15] <_45kb> when angular finished rendered all your code you will end up with a cool staticp age to serve, done :)
[11:34:18] *** foofoobar has quit IRC
[11:34:28] <asdf> yes thanks about this i understand it now
[11:34:33] <asdf> but after this date
[11:34:34] <asdf> 2014 may
[11:34:41] <asdf> should i do this like you told me
[11:34:49] <asdf> to give the google crawler a static page
[11:35:15] <asdf> cuz i read that it can execute ajax requests now
[11:35:29] <Grokling> execute ajax requests != run client-side javascript
[11:35:39] <sinclair_> Grokling: sup
[11:35:47] <_45kb> asdf: google reads your url, then it strictly depends on what that specific url returns
[11:36:11] <asdf> ok so if i follow this
[11:36:12] <asdf> https://developers.google.com/webmasters/ajax-crawling/docs/getting-started
[11:36:12] *** azizur has quit IRC
[11:36:18] <asdf> i will be ok?
[11:36:44] *** fedenunez has joined #angularjs
[11:36:47] <_45kb> asdf: sec time ago i found a great angular-seo did you searched for that on github ?
[11:36:57] <_45kb> it was really simple to use mmm let me search
[11:37:02] *** jaydubya has quit IRC
[11:37:03] *** dsdeiz has quit IRC
[11:37:14] <asdf> no i didnt search there :(
[11:37:23] <_45kb> so yeah this should be the logic https://github.com/steeve/angular-seo
[11:37:39] <sinclair_> asdf: should i give up on code and become a 80's guitar lord?
[11:37:44] *** a3gis has joined #angularjs
[11:37:55] <sinclair_> i think i would probably get more women as a 80's guitar lord
[11:37:59] *** tech2 has joined #angularjs
[11:38:15] <asdf> yes you would
[11:38:27] <sinclair_> asdf: here is a demo track i made https://s3-ap-southeast-2.amazonaws.com/sinclair-media/music/sinclair-catfood.mp3
[11:38:34] *** JMZ_DMZ has quit IRC
[11:38:36] <sinclair_> asdf: its about catfood
[11:38:46] <asdf> thanks guys for the answers
[11:38:57] *** kuadrosx has joined #angularjs
[11:38:59] *** asdf has left #angularjs
[11:39:06] <_45kb> you're welcome!!
[11:39:26] <sinclair_> its maybe not 80's enough tho
[11:39:37] <sinclair_> more late 70's
[11:39:39] *** sheplu has joined #angularjs
[11:40:35] *** _45kb has quit IRC
[11:40:37] <sinclair_> asdf: in all, i figured, if i don't start pursuing the 80's guitar lord career thing, i might miss out
[11:40:52] <sinclair_> perhaps need to work on the perm
[11:41:16] <sinclair_> and some gold medallions couldn't hurt
[11:41:47] *** aks has quit IRC
[11:41:54] *** JMZ_DMZ has joined #angularjs
[11:42:24] *** Prjio_ has joined #angularjs
[11:44:09] *** sybarite has joined #angularjs
[11:44:15] *** roven has joined #angularjs
[11:44:19] *** platonic has joined #angularjs
[11:44:25] *** epantzar has quit IRC
[11:45:14] *** DrMabuse_ has joined #angularjs
[11:45:28] *** kuadrosx has quit IRC
[11:46:02] *** thalfeld has joined #angularjs
[11:46:10] *** pfmachado has joined #angularjs
[11:46:38] *** laurensclaessen has quit IRC
[11:47:17] *** caitp has quit IRC
[11:47:21] <thalfeld> trying to get a url parameter like ?t=xxx with $routeParams , but im only getting an empty object but no error - what am I missing?
[11:47:32] *** wsmoak has joined #angularjs
[11:48:07] *** fairuz has quit IRC
[11:48:24] *** juampy has joined #angularjs
[11:48:26] *** kuadrosx_ has joined #angularjs
[11:48:34] *** pfmachado has quit IRC
[11:48:39] *** DrMabuse has quit IRC
[11:48:46] *** Prjio_ has quit IRC
[11:48:46] *** Anton_ has joined #angularjs
[11:48:48] *** pfmachado has joined #angularjs
[11:49:06] *** roven has quit IRC
[11:49:14] *** glassir has joined #angularjs
[11:49:18] *** platonic has quit IRC
[11:50:22] *** sajt has joined #angularjs
[11:50:45] *** aks has joined #angularjs
[11:51:11] *** cotko has joined #angularjs
[11:51:19] *** plekplek has quit IRC
[11:51:43] *** plekplek has joined #angularjs
[11:52:06] *** moritzs has quit IRC
[11:52:53] *** JMZ_DMZ has quit IRC
[11:52:55] *** glassir has quit IRC
[11:53:11] *** laurensclaessen has joined #angularjs
[11:53:33] <Grokling> thalfeld: You're missing ui-router for a start..
[11:53:47] *** caitp has joined #angularjs
[11:54:15] *** bhuvanaurora has quit IRC
[11:54:23] *** mchapman has quit IRC
[11:54:29] *** aks has quit IRC
[11:54:29] *** Left_Turn has joined #angularjs
[11:54:37] *** m8 has quit IRC
[11:55:06] *** mdedetrich has quit IRC
[11:55:11] *** m8 has joined #angularjs
[11:55:20] *** jagga has quit IRC
[11:56:48] *** marcjs____ has joined #angularjs
[11:56:59] *** jagga has joined #angularjs
[11:57:00] *** aks has joined #angularjs
[11:57:05] *** bhuvanaurora has joined #angularjs
[11:57:30] *** NeedleEgg has joined #angularjs
[11:58:18] *** ElysiumNet has joined #angularjs
[11:58:23] <thalfeld> .. well thats a pretty good start
[11:58:28] <thalfeld> thx
[11:58:34] *** kuadrosx_ has quit IRC
[11:59:29] <Grokling> thalfeld: You're probably going to need it sooner or later ;-)
[12:00:14] *** robdubya has quit IRC
[12:00:42] *** mennea_ has joined #angularjs
[12:01:01] *** aks has quit IRC
[12:01:28] *** mlpug has quit IRC
[12:01:33] *** grindmodeon1 has quit IRC
[12:01:46] *** kuadrosx_ has joined #angularjs
[12:01:47] *** azizur has joined #angularjs
[12:02:04] *** aks has joined #angularjs
[12:02:10] *** s00pcan has quit IRC
[12:02:43] *** storresi has joined #angularjs
[12:03:00] *** bhuvanaurora has quit IRC
[12:03:08] *** s00pcan has joined #angularjs
[12:03:53] *** mennea has quit IRC
[12:03:56] *** elyssonmr has joined #angularjs
[12:03:59] *** sinclair_ has quit IRC
[12:04:45] *** jmichaelward has joined #angularjs
[12:06:31] *** roven has joined #angularjs
[12:07:14] *** kuadrosx_ has quit IRC
[12:07:48] *** adpirz has joined #angularjs
[12:08:45] *** bealtine has quit IRC
[12:08:55] *** kuadrosx_ has joined #angularjs
[12:09:16] *** sebhoss has joined #angularjs
[12:09:26] *** jmichaelward has quit IRC
[12:09:31] *** babadofar has quit IRC
[12:09:34] *** caitp has quit IRC
[12:10:44] *** mlpug has joined #angularjs
[12:12:23] *** adpirz has quit IRC
[12:12:36] *** jaznow has joined #angularjs
[12:12:49] *** kuadrosx_ has quit IRC
[12:13:30] *** ogdabou has quit IRC
[12:14:57] *** aks has quit IRC
[12:16:11] *** aks has joined #angularjs
[12:17:42] *** robksawyer has quit IRC
[12:17:47] *** omolin4 has joined #angularjs
[12:18:13] <arkin> Struggling to figure out the logic, I want to update a 2nd input field based on current but only if its dirty... how would I do this
[12:18:42] *** sahbeewah has joined #angularjs
[12:19:22] *** soee has quit IRC
[12:19:33] *** jtimon has joined #angularjs
[12:19:52] *** elyssonmr has quit IRC
[12:20:07] *** jonr22 has joined #angularjs
[12:20:10] <Grokling> arkin: ng-change
[12:20:33] <arkin> yea more how do i access the other field
[12:20:35] *** soee has joined #angularjs
[12:20:48] <arkin> without using jquery
[12:21:27] <Grokling> You don't. You change the value bound to the other field.
[12:21:43] *** elyssonmr has joined #angularjs
[12:22:08] *** sahbeewah has quit IRC
[12:22:10] <Grokling> Beware the primitives.
[12:22:25] *** soee has quit IRC
[12:23:13] *** kevinxu has joined #angularjs
[12:23:18] *** jeffisabelle has joined #angularjs
[12:23:33] *** raj___ has quit IRC
[12:23:37] *** kevinxu is now known as Guest22614
[12:23:45] *** DrMabuse_ has quit IRC
[12:24:09] *** soee has joined #angularjs
[12:24:12] *** Guest22614 has quit IRC
[12:25:12] *** jonr22 has quit IRC
[12:25:22] *** jas- has joined #angularjs
[12:25:47] *** jas- has quit IRC
[12:26:02] <arkin> I only want to change that value if the other field has not been altered aka pristine
[12:28:09] *** babadofar has joined #angularjs
[12:28:41] <Grokling> arkin: I keep feeling like there should be a nicer way to do that, but I always end up putting an ng-change on the second field, so that if it changes I can manually mark it as dirty, and make the update conditional on that flag.
[12:28:42] *** fedenunez has quit IRC
[12:29:02] <arkin> hmm yea seems long
[12:29:12] <arkin> I was hoping to more just check if the second field is dirty, then update the value if it isnt
[12:29:39] *** glassir has joined #angularjs
[12:29:48] *** bhuvanaurora has joined #angularjs
[12:29:51] <Grokling> Yeah. I don't think there's a way to automatically mark it as dirty at a level you can check.
[12:30:02] *** n00badofar has joined #angularjs
[12:31:32] *** qdk has quit IRC
[12:31:43] *** mlpug has quit IRC
[12:32:44] *** tarnus has joined #angularjs
[12:32:57] *** babadofar has quit IRC
[12:33:06] *** Colombus has quit IRC
[12:33:17] *** tangorri has quit IRC
[12:33:19] *** dspe has quit IRC
[12:34:09] *** ogdabou has joined #angularjs
[12:34:24] *** macobo has joined #angularjs
[12:34:28] *** tangorri has joined #angularjs
[12:35:18] <andrew9183> https://gist.github.com/andrewho83/d34f2da02b6b9316d96e
[12:35:38] <andrew9183> would you guys know why my campaign edit view is not working properly
[12:36:01] *** grindmodeon has joined #angularjs
[12:36:12] <GeneralChoomin> some sort of error i would guess due to bad programming?
[12:36:23] *** brettfrable has joined #angularjs
[12:36:30] *** intellix has quit IRC
[12:37:30] *** tarnus has quit IRC
[12:38:21] *** Colombus has joined #angularjs
[12:38:44] <andrew9183> it was because i used campaigns.edit and not campaigns_edit
[12:38:47] <andrew9183> ffs
[12:38:58] *** jtimon has quit IRC
[12:39:17] *** jtimon has joined #angularjs
[12:40:16] *** ProLoser has quit IRC
[12:40:46] <andrew9183> GeneralChoomin: why bother responding with a useless response ?
[12:41:06] <GeneralChoomin> it wasnt useless
[12:41:18] <GeneralChoomin> it was a correct response
[12:41:31] *** cvig__ has joined #angularjs
[12:41:33] *** dc_ has joined #angularjs
[12:41:34] <andrew9183> nevemind, i dont know why i bother, good night.
[12:42:37] *** doodlehaus has joined #angularjs
[12:42:55] *** edy has quit IRC
[12:43:15] *** omolin4 has quit IRC
[12:43:19] *** RangerRick has quit IRC
[12:43:38] *** settinghead has quit IRC
[12:43:40] *** RangerRick has joined #angularjs
[12:44:31] *** \du has joined #angularjs
[12:44:31] *** \du has joined #angularjs
[12:44:32] *** strive has joined #angularjs
[12:44:33] *** calmbird has joined #angularjs
[12:44:42] *** sahbeewah has joined #angularjs
[12:44:54] *** Prjio_ has joined #angularjs
[12:44:57] *** n00badofar has quit IRC
[12:45:03] *** platonic has joined #angularjs
[12:45:18] *** apertoire has quit IRC
[12:45:44] <calmbird> Hi :) Do you mby know how to get attribute name not pointed value in directive, scope? return: { scope: modelData: 'valueName' }
[12:45:53] *** dc_ has quit IRC
[12:45:57] *** tjf_ has joined #angularjs
[12:46:28] *** bhuvanaurora has quit IRC
[12:47:59] *** sahbeewah has quit IRC
[12:49:05] *** tjf_ has quit IRC
[12:49:24] *** Prjio_ has quit IRC
[12:49:52] *** platonic has quit IRC
[12:50:42] *** kas84 has quit IRC
[12:50:48] *** bhuvanaurora has joined #angularjs
[12:51:17] *** raj___ has joined #angularjs
[12:51:21] *** bhuvanaurora has quit IRC
[12:51:22] *** rburns has joined #angularjs
[12:51:46] *** sebhoss has quit IRC
[12:52:31] *** jtimon has quit IRC
[12:53:34] *** bhuvanaurora has joined #angularjs
[12:55:21] *** platonic has joined #angularjs
[12:55:45] *** jas- has joined #angularjs
[12:57:26] *** DarrenCraig has joined #angularjs
[12:57:28] *** Solid1 has joined #angularjs
[12:58:19] *** Guest62657 has quit IRC
[12:58:47] *** gundry has quit IRC
[12:59:02] *** waverider has quit IRC
[12:59:03] <DarrenCraig> Is there anyone here that'd be kind enough to let me pick their brains in a PM for a while. I'm new to Angular and need some help architecting my User Authentication/Management in a decent way...
[12:59:13] *** raj___ has quit IRC
[13:00:15] *** platonic has quit IRC
[13:01:42] *** finnley has joined #angularjs
[13:01:52] *** finnley has quit IRC
[13:02:43] *** numenor has joined #angularjs
[13:03:10] *** quantax- has quit IRC
[13:04:17] *** edy has joined #angularjs
[13:04:46] *** rygalski has joined #angularjs
[13:04:58] *** rygalski has quit IRC
[13:05:18] *** DrMabuse has joined #angularjs
[13:06:48] *** settinghead has joined #angularjs
[13:07:28] *** bhuvanaurora has quit IRC
[13:07:50] *** alsheimer has joined #angularjs
[13:08:04] *** Christer has joined #angularjs
[13:08:27] *** IvailoStoianov has joined #angularjs
[13:08:46] *** jas- has quit IRC
[13:09:06] *** alsheimer has quit IRC
[13:09:08] <Christer> Hi, is there any event thrown when a factory is unloaded?
[13:09:23] *** aks has quit IRC
[13:09:24] *** edy has quit IRC
[13:09:33] *** bhuvanaurora has joined #angularjs
[13:09:41] <sacho> factories aren't unloaded
[13:10:07] *** bhuvanaurora has quit IRC
[13:10:24] *** aks has joined #angularjs
[13:10:33] *** raj___ has joined #angularjs
[13:11:00] <jcool> I have got a delete method in my controller and I am trying to call that method from button of ui grid
[13:11:06] <jcool> but that method is not being called
[13:11:35] *** rchavik has quit IRC
[13:11:40] *** clase has joined #angularjs
[13:12:00] *** clase has quit IRC
[13:12:42] *** mcastro has joined #angularjs
[13:12:42] *** laurensclaessen has quit IRC
[13:12:45] <jcool> no error messages.nothing. ng-click is not working I suppose.
[13:13:15] *** Makpoc has joined #angularjs
[13:13:36] <Christer> jcool, can you paste the code for the UI and controller ?
[13:13:48] <jcool> Christer, sure.
[13:13:54] *** laurensclaessen has joined #angularjs
[13:14:00] *** omolin4 has joined #angularjs
[13:14:03] *** epantzar has joined #angularjs
[13:14:27] *** sebhoss has joined #angularjs
[13:14:30] <jcool> Christer, http://www.hastebin.com/iweducijur.sm
[13:15:04] *** rburns has quit IRC
[13:15:14] *** aks has quit IRC
[13:15:29] *** trend has joined #angularjs
[13:16:29] *** cheef1 has quit IRC
[13:17:12] *** cheef1 has joined #angularjs
[13:17:21] *** kevinxu has joined #angularjs
[13:17:45] *** kevinxu is now known as Guest5945
[13:18:32] *** Guest5945 has quit IRC
[13:18:44] *** foofoobar has joined #angularjs
[13:18:49] *** IvailoStoianov has quit IRC
[13:19:12] <jcool> Christer, UI is just a single line as we use in ui grid.
[13:19:19] *** sinclair_ has joined #angularjs
[13:19:21] <sacho> what does getExternalScopes() do?
[13:19:30] *** mmealling has quit IRC
[13:19:55] *** trend has quit IRC
[13:19:55] <Christer> jcool, have you tried removing "getExternalScopes().deleteBlStatus(row);" and replaced it with "myViewModel.deleteBlStatus(row)"
[13:20:00] *** canthugeverycat has joined #angularjs
[13:20:12] <jcool> sacho, gets a method from some other scope. in this case myViewmodel.
[13:20:23] <jcool> Christer, let me try that.
[13:20:59] <sacho> where did you define getExternalScopes()?
[13:21:36] *** jaydubya has joined #angularjs
[13:21:47] <jcool> sacho, I read it somewhere on ui grid reference that we can use that method to call scopes like the way I have defined.
[13:22:23] <jcool> Christer, same.
[13:22:29] <jcool> not calling.
[13:22:42] <sacho> try making a plunker
[13:23:03] <jcool> sacho, sure.
[13:23:51] *** edy has joined #angularjs
[13:25:22] *** Soothsayer has quit IRC
[13:26:20] *** jaydubya has quit IRC
[13:26:41] *** Oxynum has quit IRC
[13:26:49] *** Oxynum has joined #angularjs
[13:26:53] *** jaydubya has joined #angularjs
[13:26:59] *** PrinceAMD has joined #angularjs
[13:27:26] *** Oxynum has quit IRC
[13:27:43] *** sebhoss has quit IRC
[13:28:47] *** jlebrech has quit IRC
[13:28:59] *** wsmoak_ has joined #angularjs
[13:29:28] *** Colombus has quit IRC
[13:29:53] *** wsmoak has quit IRC
[13:29:53] *** wsmoak_ is now known as wsmoak
[13:29:59] *** sybarite has quit IRC
[13:30:33] *** sebhoss has joined #angularjs
[13:30:56] *** a3gis has quit IRC
[13:31:00] *** jlebrech_ has joined #angularjs
[13:31:07] *** dspe has joined #angularjs
[13:32:36] *** Oxynum has joined #angularjs
[13:34:25] *** mariusz has joined #angularjs
[13:36:09] *** whitebook has joined #angularjs
[13:36:46] <foofoobar> docs down?
[13:37:00] <foofoobar> Getting a 500 internal server error.
[13:37:47] *** a3gis has joined #angularjs
[13:37:58] *** DrMabuse_ has joined #angularjs
[13:38:08] *** boberober has joined #angularjs
[13:38:21] *** a3gis has quit IRC
[13:38:37] *** Prjio has quit IRC
[13:38:48] *** kirfu has joined #angularjs
[13:39:18] *** raj___ has quit IRC
[13:39:41] *** raj___ has joined #angularjs
[13:40:03] <sacho> on which page?
[13:41:08] *** Colombus has joined #angularjs
[13:41:31] *** DrMabuse has quit IRC
[13:41:52] *** macobo has quit IRC
[13:42:20] *** mfunkie has joined #angularjs
[13:42:51] *** frankbli_ has quit IRC
[13:43:00] *** fixl has quit IRC
[13:43:16] *** beckyconning_ has joined #angularjs
[13:44:49] *** sebhoss has quit IRC
[13:44:50] *** doodlehaus has quit IRC
[13:44:54] *** elyssonmr has quit IRC
[13:45:29] *** elyssonmr has joined #angularjs
[13:45:35] *** phzon has quit IRC
[13:46:02] *** Prjio has joined #angularjs
[13:46:07] *** azizur has quit IRC
[13:47:02] *** intellix has joined #angularjs
[13:47:47] *** Shrooms has quit IRC
[13:47:56] *** whitebook has quit IRC
[13:48:14] *** NeedleEgg has quit IRC
[13:48:49] *** DrMabuse_ has quit IRC
[13:48:56] *** raj___ has quit IRC
[13:49:05] *** cakirke has joined #angularjs
[13:49:54] *** Alina-malina has joined #angularjs
[13:49:59] *** Alina-malina has joined #angularjs
[13:50:04] *** DrMabuse has joined #angularjs
[13:50:11] *** Prjio has quit IRC
[13:50:53] *** Colombus has quit IRC
[13:51:10] *** grindmodeon has quit IRC
[13:51:24] *** grindmodeon has joined #angularjs
[13:51:50] *** grindmodeon has quit IRC
[13:52:41] *** piela has joined #angularjs
[13:53:37] *** grindmodeon has joined #angularjs
[13:55:30] *** Lewix has joined #angularjs
[13:56:38] *** adpirz has joined #angularjs
[13:57:00] *** anapitupulu_ has quit IRC
[13:57:52] *** sebhoss has joined #angularjs
[13:58:38] *** exp10r3r has quit IRC
[13:59:05] *** mfunkie has quit IRC
[13:59:45] *** aks has joined #angularjs
[14:00:26] *** tarnus has joined #angularjs
[14:00:41] *** Sebastien-L has quit IRC
[14:00:58] <foofoobar> sacho: it’s working again.
[14:01:02] *** adpirz has quit IRC
[14:01:05] *** BaconOverflow has joined #angularjs
[14:01:14] <foofoobar> Does someone know why this filter still escapes the html output? http://hastebin.com/ahuraporej.js
[14:01:50] *** atomical has joined #angularjs
[14:02:13] *** il-audioburn has quit IRC
[14:02:37] *** elyssonmr has quit IRC
[14:02:37] *** vonnegut has joined #angularjs
[14:02:51] *** whitebook has joined #angularjs
[14:02:59] *** bundledavid has quit IRC
[14:03:04] <kostiak> what's the simplest way to trigger a UI notification from within a service?
[14:03:21] *** elyssonmr has joined #angularjs
[14:05:29] *** mogaj|2 has quit IRC
[14:06:01] *** startupality has quit IRC
[14:06:26] *** mennea_ has quit IRC
[14:07:34] *** Colombus has joined #angularjs
[14:07:43] *** ryst has joined #angularjs
[14:08:03] *** spatialbrew has joined #angularjs
[14:08:47] *** tristanp has joined #angularjs
[14:08:54] *** DrMabuse has quit IRC
[14:09:08] *** jonr22 has joined #angularjs
[14:09:40] <jlebrech_> kostiak: what do you mean?
[14:09:55] <kostiak> let's say for example I have a
[14:10:16] <kostiak> "loader" service, and I want the service to display a "loading complete" notification when it's done doing something
[14:12:04] *** settinghead has quit IRC
[14:12:27] *** mrwn has joined #angularjs
[14:12:38] *** TuRnaD0 has joined #angularjs
[14:12:43] *** IJNX has quit IRC
[14:13:26] *** exp10r3r has joined #angularjs
[14:14:12] *** lite has quit IRC
[14:14:18] *** jonr22 has quit IRC
[14:14:25] *** andrew9183 has quit IRC
[14:15:12] *** startupality has joined #angularjs
[14:15:14] *** JERE has joined #angularjs
[14:17:11] *** janaus has joined #angularjs
[14:17:40] *** toan_ has joined #angularjs
[14:18:44] *** fedenunez has joined #angularjs
[14:19:19] *** kirfu has quit IRC
[14:19:25] *** cakirke has quit IRC
[14:19:47] *** DrMabuse has joined #angularjs
[14:19:56] *** moritzs has joined #angularjs
[14:20:14] *** ryst has quit IRC
[14:20:26] *** jhwhite has joined #angularjs
[14:20:48] <toan_> dumb question:if i have this json dataset: {house: [{"2244","Kingswood dr"}, {"33", "kingston dr}]}
[14:20:56] *** hswolff has quit IRC
[14:20:59] <toan_> how to i iterate of the addresses?
[14:21:14] *** hswolff has joined #angularjs
[14:21:16] *** grindmodeon has quit IRC
[14:21:33] <toan_> in my js file, i set the data to $scope.mydata = jsongetquery
[14:21:49] <toan_> but not sure how to pull that data from my template file
[14:22:10] *** loverajoel has joined #angularjs
[14:22:38] *** deranged_user is now known as deranged
[14:25:01] *** phzon has joined #angularjs
[14:25:12] *** mennea has joined #angularjs
[14:25:24] *** quantax- has joined #angularjs
[14:25:28] *** evanjs has joined #angularjs
[14:25:33] *** IvailoStoianov has joined #angularjs
[14:26:22] *** azizur has joined #angularjs
[14:26:27] *** DrMabuse has quit IRC
[14:26:40] *** kanzure_ has joined #angularjs
[14:26:48] *** ybit has joined #angularjs
[14:27:18] *** kanzure_ has quit IRC
[14:27:39] *** ybit has quit IRC
[14:28:37] *** mrwn has quit IRC
[14:29:19] *** whitebook has quit IRC
[14:29:21] <jlebrech_> kostiak: you mean something like angular-ladda?
[14:29:24] *** mccarrontr1ck has joined #angularjs
[14:29:40] *** kanzure has quit IRC
[14:29:52] *** moo360 has quit IRC
[14:29:53] *** ybit3 has quit IRC
[14:30:07] *** Colombus has quit IRC
[14:30:10] <kostiak> no
[14:30:30] <kostiak> i mean like one of those typical ui notifications that appear at the top of the app
[14:30:50] <kostiak> except I want to "trigger" one from inside a service (as apposed to controller/directive)
[14:31:06] *** caitp has joined #angularjs
[14:31:08] <jlebrech_> kostiak: like this https://github.com/jacqueslareau/angular-pnotify
[14:31:38] *** kanzure has joined #angularjs
[14:31:40] *** fairuz has joined #angularjs
[14:31:48] *** ybit3 has joined #angularjs
[14:31:58] *** Sebastien-L has joined #angularjs
[14:32:07] *** doodlehaus has joined #angularjs
[14:32:35] <kostiak> well first of all it looks like it works from a controller, and second I want something clean and minimal, don't want to add bootstrap/jQueryUI if I don't have to
[14:32:56] *** mmealling has joined #angularjs
[14:33:06] *** doodlehaus has quit IRC
[14:33:40] <jlebrech_> add something to root controller, and use that in a notifications controller?
[14:34:03] *** htmelvis has joined #angularjs
[14:34:40] *** dsdeiz has joined #angularjs
[14:34:44] <kostiak> would that work from inside a service?
[14:34:53] *** adpirz has joined #angularjs
[14:35:07] *** g3funk is now known as braidn
[14:36:21] *** brettfrable has quit IRC
[14:36:29] *** plato has joined #angularjs
[14:36:53] *** dannyc has quit IRC
[14:37:18] *** s00pcan has quit IRC
[14:38:18] *** trahma has left #angularjs
[14:38:29] *** aks has quit IRC
[14:38:59] *** exp10r3r has quit IRC
[14:39:34] *** Shrooms has joined #angularjs
[14:39:43] *** fbenoit_ has joined #angularjs
[14:40:25] *** IvailoStoianov has quit IRC
[14:42:05] *** ybit3 has quit IRC
[14:42:30] *** kanzure has quit IRC
[14:42:36] *** eBureau has joined #angularjs
[14:42:43] *** fbenoit has quit IRC
[14:42:57] *** Raging_Hog has quit IRC
[14:43:06] *** kanzure has joined #angularjs
[14:43:18] *** jhwhite has quit IRC
[14:43:32] *** ybit3 has joined #angularjs
[14:43:38] *** rileylark has joined #angularjs
[14:44:05] *** Artagan has left #angularjs
[14:44:14] *** danecando has quit IRC
[14:44:21] *** TyrfingMjolnir has joined #angularjs
[14:44:36] *** vonnegut has quit IRC
[14:45:00] *** NeedleEgg has joined #angularjs
[14:45:30] *** marcjs____ has quit IRC
[14:45:52] *** marcjs____ has joined #angularjs
[14:46:20] *** anapitupulu_ has joined #angularjs
[14:46:52] *** Prjio has joined #angularjs
[14:47:07] *** evanjs has quit IRC
[14:47:42] *** DrMabuse has joined #angularjs
[14:49:23] *** c00ljs has quit IRC
[14:50:22] *** vonnegut has joined #angularjs
[14:51:09] *** evanjs_ has joined #angularjs
[14:51:09] *** c00ljs has joined #angularjs
[14:51:24] *** Prjio has quit IRC
[14:51:29] *** sk87 has joined #angularjs
[14:51:48] *** plato has quit IRC
[14:52:10] *** c00ljs has quit IRC
[14:52:16] *** omolin4 has quit IRC
[14:52:25] *** omolin4 has joined #angularjs
[14:52:25] *** miica has quit IRC
[14:52:27] *** amatecha has quit IRC
[14:52:27] *** imanc has quit IRC
[14:52:28] *** numenor has quit IRC
[14:52:38] *** lexek_ has joined #angularjs
[14:52:49] *** hguux_ has quit IRC
[14:52:49] *** Seich has quit IRC
[14:52:57] *** lexek_ has quit IRC
[14:53:17] *** miica has joined #angularjs
[14:53:40] *** bkuberek has quit IRC
[14:53:50] *** imanc has joined #angularjs
[14:54:21] *** diffalot has quit IRC
[14:54:29] *** hekep2 has joined #angularjs
[14:55:00] *** ybit has joined #angularjs
[14:55:06] *** aks has joined #angularjs
[14:55:17] *** Shrooms has quit IRC
[14:55:21] *** hekep has quit IRC
[14:55:27] *** lexek_ has joined #angularjs
[14:55:31] *** Seich has joined #angularjs
[14:55:45] *** hguux_ has joined #angularjs
[14:56:18] *** moritzs has quit IRC
[14:56:39] <\du> in mobile, it is possible to do a fixed div in the bottom be covered by the keyboard?
[14:56:40] *** morenoh149 has quit IRC
[14:57:02] *** BaconOverflow has quit IRC
[14:57:04] *** k-dawg has quit IRC
[14:57:37] <jcool> sacho, sorry for delayed response. Here is plunker for that: http://plnkr.co/edit/ix6bnpqD47GmQ22C9JyG?p=preview
[14:57:40] *** rileylark has quit IRC
[14:58:28] *** ybit3 has quit IRC
[14:58:34] *** CaShY has quit IRC
[14:58:35] *** kanzure_ has joined #angularjs
[14:58:39] *** Colombus has joined #angularjs
[14:58:54] *** kanzure has quit IRC
[14:58:57] *** BaconOverflow has joined #angularjs
[14:59:05] *** diffalot has joined #angularjs
[14:59:24] *** amatecha has joined #angularjs
[14:59:39] <sacho> you're missing the external-scopes attribute
[15:00:47] *** Shrooms has joined #angularjs
[15:00:47] *** Shrooms has joined #angularjs
[15:01:12] *** CaShY has joined #angularjs
[15:01:15] *** n00badofar has joined #angularjs
[15:01:32] *** dannyc has joined #angularjs
[15:01:34] *** dantheta has quit IRC
[15:02:04] *** dantheta has joined #angularjs
[15:02:09] <sacho> jcool, http://plnkr.co/edit/4BnwMRLXgCagXK4uyGBs?p=preview
[15:02:19] *** VeeWee has quit IRC
[15:03:09] *** thanpolas_ is now known as thanpolas
[15:03:11] <thanpolas> once i update a model that an element is binded to, is there a way to know when the element has updated with the new model data?
[15:03:14] <Lewix> so iwould like to make fake http calls
[15:03:15] *** bundledavid has joined #angularjs
[15:03:22] <Lewix> examples on how to implement this?
[15:03:34] <Lewix> then test on the fake responses
[15:03:43] <sacho> $httpBackend?
[15:04:02] *** omolin4 has quit IRC
[15:04:14] *** trend has joined #angularjs
[15:04:17] *** cvig__ has quit IRC
[15:05:23] *** sheplu has quit IRC
[15:05:45] *** plato has joined #angularjs
[15:05:56] *** prosper_ has joined #angularjs
[15:06:06] *** sheplu has joined #angularjs
[15:06:18] *** twelverobots has left #angularjs
[15:06:48] *** Khruu has quit IRC
[15:06:48] *** aks has quit IRC
[15:06:52] *** hapiwondrr has joined #angularjs
[15:07:05] *** omolin4 has joined #angularjs
[15:07:06] *** dantheta has quit IRC
[15:07:36] *** aks has joined #angularjs
[15:07:40] *** zz_night-owl is now known as night-owl
[15:07:42] *** ingsoc has quit IRC
[15:08:09] *** CaShY has quit IRC
[15:08:32] *** beckyconning_ has quit IRC
[15:08:32] *** sirkitree|afk|af has quit IRC
[15:08:38] *** kanzure_ is now known as kanzure
[15:08:55] *** trend has quit IRC
[15:08:55] *** lrvick has quit IRC
[15:09:14] *** macobo has joined #angularjs
[15:09:20] *** rikkipitt has joined #angularjs
[15:09:50] <ioudas> Can anyone tell me how to escape a value such as " or ' in a ng-show/hide?
[15:10:04] *** amtiskaw has quit IRC
[15:10:10] *** juanpablo_ has joined #angularjs
[15:10:13] *** CaShY has joined #angularjs
[15:10:22] *** beckyconning_ has joined #angularjs
[15:10:50] *** night-owl is now known as zz_night-owl
[15:11:55] *** basiclaser_ has quit IRC
[15:12:08] *** amtiskaw has joined #angularjs
[15:12:09] *** whitebook has joined #angularjs
[15:12:14] *** rileylark has joined #angularjs
[15:12:17] *** TuRnaD0 has quit IRC
[15:12:26] *** Khruu has joined #angularjs
[15:12:49] *** sirkitree|afk has joined #angularjs
[15:12:52] *** evilaliv3 has quit IRC
[15:12:54] *** aviraldg has quit IRC
[15:13:13] *** BillCriswell has joined #angularjs
[15:13:22] *** danecando has joined #angularjs
[15:13:44] <sacho> don't write a complicated expression into ng-show, just use a function
[15:14:11] *** atomical has quit IRC
[15:14:38] *** micks_9093 has joined #angularjs
[15:14:45] *** toan_ has quit IRC
[15:15:27] *** lrvick has joined #angularjs
[15:16:14] *** ehalas has joined #angularjs
[15:17:06] *** adpirz has quit IRC
[15:17:06] <jcool> sacho, excellent one. thanks :)
[15:17:13] *** IvailoStoianov has joined #angularjs
[15:17:23] *** Colombus has quit IRC
[15:17:34] *** cboden has joined #angularjs
[15:18:07] *** doodlehaus has joined #angularjs
[15:19:05] *** darrin has joined #angularjs
[15:19:16] *** e0ipso has quit IRC
[15:19:18] *** toan_ has joined #angularjs
[15:19:19] *** dantheta has joined #angularjs
[15:19:39] *** sirkitree|afk has quit IRC
[15:20:02] *** lrvick has quit IRC
[15:20:47] *** evanjs_ has quit IRC
[15:21:06] *** prosper_ has quit IRC
[15:21:10] *** ron1 has joined #angularjs
[15:21:16] *** frankblizzar has joined #angularjs
[15:22:03] *** macabre has joined #angularjs
[15:22:09] *** moritzs has joined #angularjs
[15:22:14] *** whitebook has quit IRC
[15:22:48] *** encryptd_fractl has joined #angularjs
[15:22:58] *** e0ipso has joined #angularjs
[15:24:05] *** fourq has quit IRC
[15:24:08] *** ingsoc has joined #angularjs
[15:24:41] *** fourq has joined #angularjs
[15:25:12] *** Shrooms has quit IRC
[15:25:40] *** richiebkr has joined #angularjs
[15:25:44] *** JMZ_DMZ has joined #angularjs
[15:25:54] *** dsdeiz has quit IRC
[15:25:55] *** cthrax has joined #angularjs
[15:25:56] *** AngularUI has joined #angularjs
[15:25:56] <AngularUI> [ng-grid] pedroclayman opened pull request #2237: added an 'aggregationLabel' attribute on colDef (master...master) http://git.io/d8IjgA
[15:25:57] *** AngularUI has left #angularjs
[15:26:49] *** sirkitree|afk has joined #angularjs
[15:26:53] *** prbc has joined #angularjs
[15:27:19] *** lrvick has joined #angularjs
[15:28:48] *** macabre has quit IRC
[15:28:49] *** cthrax has quit IRC
[15:30:06] *** JMZ_DMZ has quit IRC
[15:30:12] *** richiebkr has quit IRC
[15:30:17] *** leonbienek has joined #angularjs
[15:30:26] <leonbienek> Hey all
[15:30:47] *** Colombus has joined #angularjs
[15:31:17] *** tfennelly has quit IRC
[15:31:21] *** AngularUI has joined #angularjs
[15:31:21] <AngularUI> [bootstrap] rdinicut opened pull request #3022: feat(timepicker): add seconds support (master...master) http://git.io/rWS2MA
[15:31:21] *** AngularUI has left #angularjs
[15:31:32] *** kanzure has quit IRC
[15:31:32] *** ybit has quit IRC
[15:31:55] *** grindmodeon has joined #angularjs
[15:33:05] *** discgo has joined #angularjs
[15:33:12] *** Fishy__ has joined #angularjs
[15:33:25] *** moritzs has quit IRC
[15:33:39] *** sheplu has quit IRC
[15:34:30] *** vassagus has joined #angularjs
[15:34:31] *** samuel02 has joined #angularjs
[15:34:53] *** mmealling has quit IRC
[15:35:04] *** whitebook has joined #angularjs
[15:35:45] *** kwaledesign has joined #angularjs
[15:36:08] *** diffalot has quit IRC
[15:36:18] *** webthingee has joined #angularjs
[15:36:35] *** Evanion has quit IRC
[15:36:52] *** e4rt5 has joined #angularjs
[15:37:38] *** MJD has quit IRC
[15:37:40] *** lrvick has quit IRC
[15:38:03] *** apipkin has quit IRC
[15:38:10] *** macabre has joined #angularjs
[15:38:22] *** dspe has quit IRC
[15:38:26] *** lrvick has joined #angularjs
[15:38:52] *** webthingee has quit IRC
[15:39:10] *** diffalot has joined #angularjs
[15:39:25] *** minimoo1 has joined #angularjs
[15:39:52] <minimoo1> hey, is there a page to show examples of using angular 1.3 bindonce? like ngSrc, ngClass...
[15:40:02] *** yandos has joined #angularjs
[15:40:08] *** MJD has joined #angularjs
[15:40:43] *** webthingee has joined #angularjs
[15:41:04] *** htmelvis has quit IRC
[15:41:14] *** ederign is now known as ederign_lunch
[15:41:15] *** apipkin_ has joined #angularjs
[15:41:18] *** caitp has quit IRC
[15:41:51] *** getn_outchea has joined #angularjs
[15:41:53] *** glassir has quit IRC
[15:42:07] *** Sky[x] has quit IRC
[15:42:11] *** htmelvis has joined #angularjs
[15:42:15] *** jmichaelward has joined #angularjs
[15:42:20] *** plekplek has quit IRC
[15:42:25] *** lgk has joined #angularjs
[15:43:02] *** e0ipso has quit IRC
[15:43:03] *** whitebook has quit IRC
[15:43:32] *** jhwhite has joined #angularjs
[15:43:52] *** jhwhite has left #angularjs
[15:43:59] *** lgk is now known as larsgk
[15:45:05] *** wiherek has joined #angularjs
[15:45:08] <wiherek> hi
[15:45:13] *** e0ipso has joined #angularjs
[15:45:15] <wiherek> with ui-sortable
[15:45:33] <wiherek> how can I get the model of what is sorted
[15:45:41] *** shackleford has joined #angularjs
[15:45:49] *** shackleford has quit IRC
[15:45:58] <wiherek> on ‘update’ callback, can I get a scope model of the item?
[15:46:16] *** settinghead has joined #angularjs
[15:46:26] *** shackleford has joined #angularjs
[15:46:29] *** Seich has quit IRC
[15:46:52] *** lrvick has quit IRC
[15:46:53] *** dberry37388 has joined #angularjs
[15:47:02] *** Seich has joined #angularjs
[15:47:18] *** jmichaelward has quit IRC
[15:47:33] *** dmack has joined #angularjs
[15:47:37] *** Prjio has joined #angularjs
[15:48:02] *** Seich has quit IRC
[15:48:10] *** lite has joined #angularjs
[15:48:36] *** elrabin has joined #angularjs
[15:48:58] *** EricWeb has joined #angularjs
[15:49:38] *** lrvick has joined #angularjs
[15:50:07] *** whitebook has joined #angularjs
[15:50:09] *** martianboy has quit IRC
[15:50:33] *** bayousoft has joined #angularjs
[15:50:34] *** mmealling has joined #angularjs
[15:51:00] <EricWeb> Morning everyone.
[15:51:04] *** dman777_alter has joined #angularjs
[15:51:05] *** e0ipso has quit IRC
[15:51:05] *** sirkitree|afk has quit IRC
[15:51:10] *** moritzs has joined #angularjs
[15:51:11] *** Colombus has quit IRC
[15:51:19] *** cacts|wtf has joined #angularjs
[15:51:28] *** eBureau has quit IRC
[15:51:38] *** sheplu has joined #angularjs
[15:52:06] *** Prjio has quit IRC
[15:52:18] *** GPH|work has joined #angularjs
[15:52:58] *** digisky has joined #angularjs
[15:53:26] *** e0ipso has joined #angularjs
[15:53:27] *** knownasilya has joined #angularjs
[15:54:20] *** e0ipso has quit IRC
[15:54:32] *** lrvick has quit IRC
[15:54:46] *** marcjs_____ has joined #angularjs
[15:55:04] *** soee has quit IRC
[15:55:10] *** moritzs has quit IRC
[15:55:10] *** e0ipso has joined #angularjs
[15:55:18] *** Xenmen has quit IRC
[15:55:18] *** diffalot has quit IRC
[15:55:40] *** Seich has joined #angularjs
[15:56:04] *** toan_ has quit IRC
[15:56:32] *** marcjs____ has quit IRC
[15:56:58] *** jlebrech_ has quit IRC
[15:57:17] *** jlebrech has joined #angularjs
[15:57:46] *** diffalot has joined #angularjs
[15:57:46] *** diffalot has joined #angularjs
[15:58:12] *** Siecje has joined #angularjs
[15:58:18] *** jonr22 has joined #angularjs
[15:58:45] *** knownasilya has quit IRC
[15:59:41] *** lrvick has joined #angularjs
[15:59:45] *** e0ipso has quit IRC
[15:59:51] *** sirkitree|afk has joined #angularjs
[16:00:01] *** e0ipso has joined #angularjs
[16:00:24] *** knownasilya has joined #angularjs
[16:00:40] *** Seich has quit IRC
[16:01:10] *** Seich has joined #angularjs
[16:01:19] *** s00pcan has joined #angularjs
[16:01:24] *** wiherek has left #angularjs
[16:01:28] *** nerder has joined #angularjs
[16:01:30] <dmack> mornin
[16:02:03] *** Lewix has quit IRC
[16:02:17] *** nerder has quit IRC
[16:02:18] *** sheplu has quit IRC
[16:02:47] *** jonr22 has quit IRC
[16:03:53] *** jdj_dk has quit IRC
[16:04:39] *** joroc has joined #angularjs
[16:05:21] *** settinghead has quit IRC
[16:05:43] *** bradmaxs has joined #angularjs
[16:06:14] *** jdcasey has joined #angularjs
[16:06:16] *** jonr22 has joined #angularjs
[16:06:53] *** minimoo1 has quit IRC
[16:06:58] *** toin0u is now known as toin0u|away
[16:07:19] *** bundledavid has quit IRC
[16:07:24] *** larsgk has quit IRC
[16:08:16] *** cedricziel has quit IRC
[16:08:21] *** bundledavid has joined #angularjs
[16:09:46] *** sarinov has joined #angularjs
[16:10:00] <t1mmen> I have an <ul><li> list with X items, and I want to replace the <li> that I clicked with a ui-router subroute's template, is that possible? What is it called?
[16:10:03] *** threesixes has quit IRC
[16:10:37] *** sheplu has joined #angularjs
[16:11:04] <bradmaxs> I am still learning the ins and out of angular. Can I update the parameters in my wineries function in my factory with my regionsList directive? Is that not a good idea, rather recreate it in my controller (which I have done called updateRegion). Thanks. http://plnkr.co/edit/kQYpLjOuAI8jVXhCi0Dk?p=info
[16:11:21] *** juampy is now known as juampy_backlater
[16:12:13] *** moritzs has joined #angularjs
[16:12:33] *** JSONB has joined #angularjs
[16:12:43] <sarinov> Hi, I have a string such as '<div class="class"><p>……….</p></div>' and I want to end up with '<div class="class"><blockquote><p>……….</p></blockquote></div>'. How would you do that without Jquery ?
[16:13:17] *** cedricziel has joined #angularjs
[16:13:42] *** lrvick has quit IRC
[16:14:10] *** omolin4 has quit IRC
[16:16:18] <Christer> Has anyone run into a problem when calling $window.alert('my message') on an iOS device, where its impossible to click the OK button on the alert message?!
[16:16:23] *** MJD has quit IRC
[16:16:25] *** Snugug has joined #angularjs
[16:16:58] *** tristanp has quit IRC
[16:17:18] *** azizur has quit IRC
[16:17:28] *** evilaliv3 has joined #angularjs
[16:17:46] *** MJD has joined #angularjs
[16:17:47] *** sirkitree|afk is now known as sirkitree
[16:17:51] <jaydubya> just made every penny I spent on the Apple Time Machine a worthy investment ... I had accidentally deleted my current project of 7 months but after panic and thoughts of suicide abated, I was able to restore it.
[16:17:56] *** marktraceur is now known as markSWATteur
[16:17:57] *** kotyy has joined #angularjs
[16:18:17] *** lrvick has joined #angularjs
[16:18:25] *** mcastro has quit IRC
[16:18:45] *** mary5030 has joined #angularjs
[16:18:47] *** mary5030 has quit IRC
[16:18:56] <Christer> jaydubya, Wouldnt want to be you when at the start of that process ^^,
[16:18:58] *** jasonp has joined #angularjs
[16:19:10] *** ahtik has quit IRC
[16:19:16] <Christer> *panic part*
[16:19:20] *** mary5030 has joined #angularjs
[16:19:20] <jaydubya> lol
[16:19:24] <joroc> hey, is there a page to show examples of using angular 1.3 bindonce? like ngSrc, ngClass...
[16:20:08] *** omolin4 has joined #angularjs
[16:20:39] *** jonr22 has quit IRC
[16:20:48] *** Click66 has quit IRC
[16:20:53] *** lgk has joined #angularjs
[16:21:08] *** shinnya has joined #angularjs
[16:21:26] *** lgk is now known as larsgk
[16:21:38] *** grindmodeon has quit IRC
[16:22:17] *** kotyy has quit IRC
[16:22:34] *** slvrbckt has left #angularjs
[16:22:44] *** azizur has joined #angularjs
[16:23:09] <sarinov> anyone ?
[16:23:20] <zomg> jaydubya: and this is why it's also a good idea to push your git repos to a separate machine :D
[16:24:44] *** toan_ has joined #angularjs
[16:26:23] *** toan_ has quit IRC
[16:27:30] *** Seich has quit IRC
[16:28:01] *** moritzs has quit IRC
[16:28:12] *** foofoobar has quit IRC
[16:28:13] *** Seich has joined #angularjs
[16:28:22] <tangorri> are constant proper to each modules ?
[16:28:42] *** ray___ has joined #angularjs
[16:28:47] *** mcastro has joined #angularjs
[16:28:53] *** tristanp has joined #angularjs
[16:28:57] *** Christer has quit IRC
[16:29:07] *** ray___ has quit IRC
[16:30:52] *** Colombus has joined #angularjs
[16:31:37] *** delight_ has joined #angularjs
[16:31:58] <tangorri> how can I create constant/value restristed to a module ?
[16:32:06] *** bmac has joined #angularjs
[16:32:31] *** delight has quit IRC
[16:32:31] *** delight_ is now known as delight
[16:32:56] *** yhsiang_ is now known as yhsiang
[16:33:17] *** Milkweed has joined #angularjs
[16:34:24] *** ederign_lunch is now known as ederign
[16:34:38] *** minimoo1 has joined #angularjs
[16:34:46] *** oste has joined #angularjs
[16:35:21] *** Snugug has quit IRC
[16:35:49] <jaydubya> zomg: I haven't pushed in over a week because I am working on a branch and didn't want to contaminate
[16:35:55] *** AJ_ has joined #angularjs
[16:35:57] *** tfennelly has joined #angularjs
[16:36:15] <zomg> yeah I have the same problem :P lazy with pushing branches
[16:36:37] <zomg> I'll have to stop using rebase if I push it because someone else might have pulled it!
[16:37:08] *** ehalas has quit IRC
[16:37:23] *** joroc has quit IRC
[16:37:40] <jaydubya> I figured out how to create branches but still haven't figured out how to merge the branch back into master, so in my mind, the branch has become master and I only push when I am sure ... not Git at its finest but I just don't have time to learn Git better right now
[16:37:55] *** ctanga has joined #angularjs
[16:38:06] <zomg> When in master, you just do `git merge yourbranch` :)
[16:38:21] <jaydubya> noooo, that easy?
[16:38:25] <zomg> usually yeah :D
[16:38:40] <AJ_> Git too easy
[16:38:43] <zomg> sometimes you may need to resolve some conflicts if other people have worked on master while you were working on your branch
[16:38:45] <IvailoStoianov> guys, share some of your mad skillZ with me... I am trying to send a GET request to an API, which works fine... when I am not logged in my site, when I log in I get THE CORS block, I tried everything... I don't have route as it's client side
[16:38:46] <jaydubya> crap, but how do I get "back" in Master
[16:38:53] <zomg> `git checkout master`
[16:39:30] *** ctanga has quit IRC
[16:39:57] <jaydubya> LOL, I read an article about HEAD^3 and rebase and stuff and just closed it but I missed that ez way
[16:40:02] <zomg> heh
[16:40:59] <jaydubya> once this restore is completed, I will merge and re-branch and go back to pushing every hour like I usually do
[16:41:11] *** morenoh149 has joined #angularjs
[16:41:26] *** Raging_Hog has joined #angularjs
[16:41:31] *** ctanga has joined #angularjs
[16:41:37] *** boberober has quit IRC
[16:42:29] <AJ_> jaydubya and zomg, you guys working on a project together?
[16:43:01] *** iamjmw has joined #angularjs
[16:43:01] <jaydubya> AJ_: no
[16:43:02] <zomg> no
[16:43:07] *** thalfeld has quit IRC
[16:43:17] *** fedenunez has quit IRC
[16:43:18] <Fifty5Plus> I am using ui-router and I need to save the model then restore it when switching between usrl/states ... so, is there a good best practices example of how to use services for this (with getters and setters if supported) ?
[16:43:19] *** aboudreault has quit IRC
[16:43:20] *** dacuca has joined #angularjs
[16:43:40] <jaydubya> I am just waiting -- have another 53 minutes before my project is restored -- just hanging out and learning GIT from a master
[16:43:41] *** ctanga has quit IRC
[16:43:57] *** kuadrosx_ has joined #angularjs
[16:44:18] *** mennea has quit IRC
[16:45:13] <e4rt5> i have a question: I use getElementById() inside a controller (a) and it works fine. If i change routes to another controller (b) and change back to (a) this still works. But if i change from (a) to another instance of Controller (a) (with different set of contents but the same DOM-Elements) getElementbyid seems to grab the "old" element instead of the newly rendered Element with the same ID. Am i doing something wrong? im using ang
[16:45:39] <e4rt5> i need getElementById to attach events to a video-element
[16:45:39] *** sarinov has quit IRC
[16:45:42] *** morenoh149 has quit IRC
[16:45:59] <TweedleDee> anyone here have experience with bootstrap and the 'pill button' component? I replaced all the yes / no dropdowns on my site with these and didn't think about the ability of a user to come to the site and be able to fill out the form with keyboard only.. now if they try to tab through the controls, it doesn't hit these at all
[16:46:07] *** Luser has joined #angularjs
[16:46:24] *** Luser has joined #angularjs
[16:46:57] *** n00badofar has quit IRC
[16:47:05] *** fedenunez has joined #angularjs
[16:47:17] *** conan_the_destro has joined #angularjs
[16:47:22] *** iamjmw has quit IRC
[16:47:44] *** Fire-Dragon-DoL has joined #angularjs
[16:48:06] <zomg> e4rt5: you should use a directive as it will get a reference to the dom element directly
[16:48:23] *** Prjio has joined #angularjs
[16:48:27] <zomg> generally any DOM-related functionality should go into a directive
[16:48:32] *** prbc has quit IRC
[16:48:35] *** Seich has quit IRC
[16:48:35] *** lrvick has quit IRC
[16:49:03] *** prbc has joined #angularjs
[16:49:03] *** atomical has joined #angularjs
[16:49:33] *** Oddman has joined #angularjs
[16:50:07] *** MJD has quit IRC
[16:50:15] *** IJNX has joined #angularjs
[16:50:16] *** jplussier has joined #angularjs
[16:50:20] *** MJD has joined #angularjs
[16:50:37] *** dmack has quit IRC
[16:51:07] *** lrvick has joined #angularjs
[16:51:09] *** nandoflorestan has joined #angularjs
[16:51:17] *** Seich has joined #angularjs
[16:52:15] *** leonbienek has quit IRC
[16:52:26] <scav> how do i get the data from a promise returned from a $resource ?
[16:52:29] <Weezey> When I submit my form I've got a list of objects tied to checkboxes so I'm creating an new object with one element for each of those $scope.newobj[item] = { loading: true, data: null } and doing an ng-repeat for each of them while each one runs an asynchronous lookup, but when my service hands back data, I'm unable to set $scope.newobj[item].loading = false; I'm getting a $scope.newobj[item]
[16:52:29] <Weezey> is undefined error.
[16:52:35] *** jaydubya has quit IRC
[16:52:37] *** Prjio has quit IRC
[16:52:52] *** lexek__ has joined #angularjs
[16:52:58] *** trend has joined #angularjs
[16:52:59] *** CHC has joined #angularjs
[16:53:05] <Weezey> I'm assuming that's because they're being run asynchronously and $scope.newobj[item] doesn't exist when the function is created.
[16:53:22] *** evanjs has joined #angularjs
[16:53:26] *** aboudreault has joined #angularjs
[16:53:44] *** AWAW has joined #angularjs
[16:53:54] *** prbc has quit IRC
[16:53:54] *** moritzs has joined #angularjs
[16:53:55] *** mmealling has quit IRC
[16:55:30] *** discgo has quit IRC
[16:55:32] *** Evanion has joined #angularjs
[16:55:34] *** Foxandxss has joined #angularjs
[16:55:55] *** lexek_ has quit IRC
[16:55:59] *** bigorangemachine has joined #angularjs
[16:56:40] <bigorangemachine> Hey guys, I know I asked yesterday
[16:56:55] <bigorangemachine> Does anyone know how to get bootstrap modals scrolling on mobile devices?
[16:57:01] *** DoubleAW has quit IRC
[16:57:50] *** mchammer has quit IRC
[16:58:18] *** TyrfingMjolnir has quit IRC
[16:58:53] *** ioudas has quit IRC
[16:59:16] <TweedleDee> Not to spam, just frustrated at lack of search results -- is there a way to tabstop on a bootstrap btn-group? and activate it via keyboard?
[16:59:25] *** kp666 has quit IRC
[16:59:31] *** trend has quit IRC
[16:59:36] *** DrShoggoth has joined #angularjs
[17:00:00] *** ioudas has joined #angularjs
[17:00:06] *** discgo has joined #angularjs
[17:00:14] *** Solid1 is now known as Solid1_afk
[17:00:16] <TweedleDee> nm i'm a dumbass
[17:00:21] *** kuadrosx_ is now known as kuadrosx
[17:00:28] *** Raging_Hog has quit IRC
[17:01:12] *** caitp has joined #angularjs
[17:01:17] *** rhp has joined #angularjs
[17:01:33] *** anapitupulu__ has joined #angularjs
[17:02:04] *** tfennell_ has joined #angularjs
[17:02:42] *** bkuberek has joined #angularjs
[17:03:29] *** oste has quit IRC
[17:03:46] *** technickul has joined #angularjs
[17:03:49] *** brettfrable has joined #angularjs
[17:04:17] *** tfennell_ has quit IRC
[17:04:27] *** bhuvanaurora has joined #angularjs
[17:04:33] *** anapitupulu_ has quit IRC
[17:04:42] *** glassir has joined #angularjs
[17:04:48] *** joroc has joined #angularjs
[17:04:57] *** tfennelly has quit IRC
[17:05:21] *** charlenopires has joined #angularjs
[17:05:30] *** azizur has quit IRC
[17:05:54] *** mcastro has quit IRC
[17:06:03] *** adpirz has joined #angularjs
[17:06:12] *** Fenikkusu has joined #angularjs
[17:06:36] *** tfennelly has joined #angularjs
[17:07:22] *** minimoo1 has quit IRC
[17:07:30] *** charlenopires has left #angularjs
[17:07:35] *** _45kb has joined #angularjs
[17:07:53] <Fenikkusu> I have a promise.then(func(), func()) in which the reject is returning a value. However, this return value is undoing my reject. I need to return a value, but still maintain the rejection state. Thoughts?
[17:08:09] *** StryKaizer has quit IRC
[17:08:20] *** macabre has quit IRC
[17:08:38] <_45kb> Would someone help me on a little github angularjs project ?
[17:08:44] *** ehynds has joined #angularjs
[17:08:53] *** loverajoel has quit IRC
[17:09:04] *** rileylark has quit IRC
[17:09:40] *** omolin4 has quit IRC
[17:10:47] *** angularUser400 has joined #angularjs
[17:11:09] *** adpirz has quit IRC
[17:11:19] <IvailoStoianov> guys, share some of your mad skillZ with me... I am trying to send a GET request to an API, which works fine... when I am not logged in my site, when I log in I get THE CORS block, I tried everything... I don't have route as it's client side
[17:11:22] *** KAsp3rd has joined #angularjs
[17:11:33] *** crunch-choco has joined #angularjs
[17:11:37] *** cheef1 has quit IRC
[17:11:39] *** elrabin has quit IRC
[17:11:51] *** rileylark has joined #angularjs
[17:12:19] *** busticated has joined #angularjs
[17:12:26] *** ctanga has joined #angularjs
[17:12:32] *** azizur has joined #angularjs
[17:12:43] *** bhuvanaurora has quit IRC
[17:12:43] *** elrabin has joined #angularjs
[17:13:26] *** bhuvanaurora has joined #angularjs
[17:14:01] *** TheAceOfHearts has joined #angularjs
[17:14:07] <angularUser400> I have some simple html which display a variable value from angular scope and hooks function from scope event to an ng-click. I can see the value displayed but I get "TypeError: undefined is not a function" when ng-click tries to hook my function in my scope. This all works perfectly in a Plunker, but in my situation i have my html inside the content of an asp.net master page. Even if i open batarang and look at my scope, i
[17:14:12] <angularUser400> but my function is null
[17:14:39] *** ihsw has left #angularjs
[17:14:41] *** ihsw has joined #angularjs
[17:14:42] <KAsp3rd> anyone familiar with ui-router and getting active tabs to properly stay highlighted when navigating/refreshing? I've attempted ui-sref-active however this does set the proper activetabs but also leaves the default initial tabs highlighted
[17:14:42] *** epantzar has quit IRC
[17:15:01] *** prbc has joined #angularjs
[17:15:02] <angularUser400> anyone have any idea why the function i declared in my scope is null?
[17:15:38] <TweedleDee> post some code dude
[17:15:39] <jplussier> KAsp3rd: sessionStore?
[17:15:51] <TweedleDee> pastebin.org
[17:15:57] *** webthingee is now known as webthingee|otp
[17:16:05] *** Oddman is now known as Oddman|away
[17:16:16] <scav> how do i get the data from a promise?
[17:16:18] *** instence_ has joined #angularjs
[17:16:22] <KAsp3rd> jplussier: not attempted that yet, I'll lok into it. Thanks for the recommendation
[17:16:41] *** dhrami has joined #angularjs
[17:16:42] *** instence has quit IRC
[17:16:46] <jplussier> Could be an easy way to ignore having to read from some other property of the request
[17:16:50] <jplussier> no problem :)
[17:16:57] *** diegoaguilar has quit IRC
[17:17:14] <TweedleDee> KAsp3rd: ngStorage is dope too
[17:17:26] *** tjsail33 has joined #angularjs
[17:17:26] <TweedleDee> https://github.com/gsklee/ngStorage
[17:17:50] *** prbc_ has joined #angularjs
[17:17:52] *** boberober has joined #angularjs
[17:17:54] <TweedleDee> thats what I use
[17:18:06] *** faddah has quit IRC
[17:18:07] <jplussier> Probably a bit more purpose suited :)
[17:18:10] *** bhuvanaurora has quit IRC
[17:18:17] *** IJNX has quit IRC
[17:18:30] <TweedleDee> well .. it is a wrapper for sessionStore so you weren't wrong
[17:18:31] <KAsp3rd> jplussier: I was hoping it would work right within the bootstrap tabs and ui-router as to not have to use ui.bootstrap. TweedleDee that's the first link I found. Thank you
[17:18:58] *** azizur has quit IRC
[17:19:13] <angularUser400> here is a plunker of what my code: http://plnkr.co/edit/G6X7NcDBTTbEdwz6iCiX?p=preview it works perfectly here, but if i move html to the content of my asp.net master page, the ng-click blows up
[17:19:17] *** prbc has quit IRC
[17:19:26] <TweedleDee> whats the error?
[17:19:40] *** mikemols has joined #angularjs
[17:19:43] <KAsp3rd> TweedleDee: he has an undefined function onces it's moved
[17:19:52] <KAsp3rd> *once it is
[17:19:57] *** saucey has quit IRC
[17:20:04] <angularUser400> "TypeError: undefined is not a function"
[17:20:06] *** folippi has joined #angularjs
[17:20:21] *** edzez has quit IRC
[17:20:25] *** Mad-C has quit IRC
[17:20:42] <angularUser400> " at Scope.$eval (http://localhost/vctr23/JS/angular.js?ver=2.3.5443.17369:11986:44) <div ng-click="myfirstevent()">"
[17:20:48] *** markSWATteur is now known as marktraceur
[17:21:17] *** juristr has quit IRC
[17:21:22] <folippi> I have a div with ng-click="myFunc()". Is there some way to make all it's child elements run that functionwhen clicked? Now I have to click that element, but not the divs or text which are nested under that first div.
[17:21:25] *** richardlitt has joined #angularjs
[17:21:33] *** edzez has joined #angularjs
[17:22:08] <TweedleDee> try using the controller as syntax and make sure your bootstrapped correctly wrap the whole page in something like this <div ng-app="myApp" ng-controller="TheControllerYouWantToUse as ctrl" then in your ng-click call ng-click="ctrl.myFristEvent()"
[17:22:25] <TweedleDee> not sure why it wouldn't be found if those are correctly done..
[17:22:36] <TweedleDee> $scope all over the place is ugly as hell
[17:22:42] *** boberober has quit IRC
[17:22:45] *** elrabin has quit IRC
[17:22:48] <KAsp3rd> folippi: you can have mutliple functions on a sinlge slick; either wrap them in one function in your controller or call each of them ng-click="myfirstevent();mysecondevent()
[17:22:53] <TweedleDee> and when you nest scopes you'll be looking at shit like $parentScope.$scope and its just ugly
[17:23:12] *** Geertje123_ has quit IRC
[17:23:19] <folippi> KAsp3rd: I mean, I have only one function and I want the whole DOM subtree to activate that function when clicked
[17:23:20] *** jaydubya has joined #angularjs
[17:23:30] <beckyconning_> hi! if you are using a service to communicate between directives can you just list the service as a dependency in the module that each directive is in or do you need to load it in the "app" module?
[17:23:42] <KAsp3rd> folippi see TweedleDee's response above mine
[17:24:14] <ingsoc> hey, I have asked this before but not got any response. I was wondering if anyone is currently using angular material on a live project ?
[17:24:24] <TweedleDee> of course
[17:24:31] *** boberober has joined #angularjs
[17:24:32] *** elrabin has joined #angularjs
[17:24:40] <TweedleDee> ingsoc, you're asking if I'm using angular in production, correct?
[17:24:56] <ingsoc> "angular material"
[17:24:57] <TweedleDee> or is angular material some shit I don't know about? lol
[17:25:26] <KAsp3rd> ingsoc: angular material = angular with google's material design for android?
[17:25:27] <TweedleDee> never heard of it just googled it
[17:25:29] *** Guest22 has joined #angularjs
[17:26:03] <KAsp3rd> I am actually implementing the slide out side menu in one of my projects down the road
[17:26:10] <angularUser400> TweedleDee: what do you mean "correctly wrap the whole page in something like this <div ng-app="myApp" Shouldnt we be able to just add ng-app on a single div and not on whole page?
[17:26:19] <ingsoc> https://material.angularjs.org it looks like it is an effort by some angular and ionic core developers to put together a google material design reference implementation
[17:26:31] *** juanpablo_ has quit IRC
[17:26:44] <ingsoc> it doesn't seem to have been announced anywhere
[17:26:51] <ingsoc> YET...
[17:26:59] *** juanpablo_ has joined #angularjs
[17:27:11] <TweedleDee> I mean you could... but you said its saying undefined, i'm trying to debug your error
[17:27:12] *** arabot has joined #angularjs
[17:27:18] <ingsoc> I think this is what angular needs as bootstrap angular is imho not cutting it with tablets and mobile
[17:27:23] <TweedleDee> so lets back it up, wrap it up and see if your shit will work
[17:27:38] *** vlcn has quit IRC
[17:27:58] <angularUser400> TweedleDee: i cant wrap the whole page, because i am only in the content of a master page. The master page is defined somewhere else.
[17:28:02] <TweedleDee> i havn't used a master page in years..
[17:28:24] <TweedleDee> is this a new project? why not MVC with _layout
[17:28:30] <angularUser400> The thing is that batarang can see my scope perfectly and can see my variable and its value, but "myfirstevent" is null in batarang
[17:28:39] *** grindmodeon has joined #angularjs
[17:28:58] <angularUser400> so i dont think its a problem with scope
[17:28:59] <TweedleDee> hard to debug from afar my man, sounds like you have at least an understanding of the basics, probably something small and stupid
[17:30:09] *** tripu has quit IRC
[17:30:38] *** doug64k has joined #angularjs
[17:30:43] *** moogey has joined #angularjs
[17:31:23] *** anapitupulu__ has quit IRC
[17:31:42] *** boberober has quit IRC
[17:31:54] *** zz_night-owl is now known as night-owl
[17:32:08] *** posixpascal has quit IRC
[17:32:23] *** anapitupulu has joined #angularjs
[17:33:20] *** galdorvardamir has quit IRC
[17:33:28] *** calmbird has quit IRC
[17:33:48] <ingsoc> KAsp3rd: did you see the link to the "official" angular material design site
[17:33:53] *** tfennell_ has joined #angularjs
[17:33:56] <ingsoc> https://material.angularjs.org
[17:34:00] <KAsp3rd> ingsoc: yes I have
[17:34:11] <ingsoc> looks promising
[17:34:17] <ingsoc> don't you think ?
[17:34:33] *** saucey has joined #angularjs
[17:34:49] *** Aliks has joined #angularjs
[17:35:02] <KAsp3rd> ingsoc: very much so, as I mentioned earlier I intend to use part of it for a webapp that I'm writing for work, even though it's going to be on pc
[17:35:10] <ingsoc> KAsp3rd: might be worth checking out if you are implementing stuff from material design contents
[17:35:16] <ingsoc> ah ok
[17:35:19] *** moogey has quit IRC
[17:35:30] <ingsoc> i thought you were implementing some material design elements on your own
[17:35:35] *** prbc_ has quit IRC
[17:35:43] *** moogey has joined #angularjs
[17:35:45] <KAsp3rd> ingsoc: I actually believe this is what the google play store is currently written on
[17:36:11] *** prbc has joined #angularjs
[17:36:34] <ingsoc> KAsp3rd: http://fezvrasta.github.io/bootstrap-material-design/
[17:36:51] *** DoubleAW has joined #angularjs
[17:36:52] *** mchammer has joined #angularjs
[17:36:57] <ingsoc> there's also a bootstrap theme being built that might be easier to integrate in an app if you already use bootstrap
[17:37:01] <ingsoc> (i do currently)
[17:37:12] *** tfennelly has quit IRC
[17:37:16] <KAsp3rd> ingsoc: I do as well :) thank you for he bootstrap link on that one
[17:37:24] *** intellix has quit IRC
[17:37:36] *** AJ_ has quit IRC
[17:37:36] <ingsoc> yeah, I kinda like it
[17:37:42] <ingsoc> and it seems pretty smooth/fast
[17:37:44] *** vlcn has joined #angularjs
[17:38:17] <ingsoc> https://github.com/vasyabigi/angular-nouislider
[17:38:35] <KAsp3rd> since we need as much screen real-estate as we can get for our webapp I intend to actually use a bit of their material design (at least the sidebars/menu implementation) as containers for objects
[17:38:43] <ingsoc> for an angular directive that is skinned by the material bootstrap theme
[17:39:11] *** AWAW has quit IRC
[17:39:12] *** Poppabear has joined #angularjs
[17:39:13] <ingsoc> KAsp3rd: the thing that is critical for me (should be for everyone ?) is mobile support
[17:39:15] *** patrickarlt has joined #angularjs
[17:39:33] <ingsoc> andf the current bootstrap/angular projects just don't cut it imho
[17:39:51] *** thomastuts has quit IRC
[17:39:57] *** spatialbrew has quit IRC
[17:40:08] *** night-owl is now known as zz_night-owl
[17:40:18] <ingsoc> btw, flexbox is VERY cool which is the underlying tec h for the material angular layout although it is only supported on more modern browsers
[17:40:19] *** rho has joined #angularjs
[17:40:19] *** rho has joined #angularjs
[17:40:23] <KAsp3rd> ingsoc: not so much for my currently implmentation (it's a corp project)
[17:40:23] *** juanpablo_ has quit IRC
[17:41:00] *** prbc has quit IRC
[17:41:03] *** laurensclaessen has quit IRC
[17:41:04] *** josh has joined #angularjs
[17:41:06] *** juanpablo_ has joined #angularjs
[17:41:10] *** s3shs has quit IRC
[17:41:15] *** intellix has joined #angularjs
[17:41:21] <ingsoc> ok, but I think that even in the slow backwards world of the enterprise tablets and smartphones are making headway. I think what is holding them back is a lot of shitty legacy apps that only work on windows desktop
[17:41:58] *** delight has quit IRC
[17:42:29] *** sonofdirt has joined #angularjs
[17:43:12] *** juanpablo__ has joined #angularjs
[17:43:22] *** juanpablo_ has quit IRC
[17:43:46] <moogey> I can't remember who now. But there was some dev company who decided that it was cheaper for them to purchase new computers for their customers rather than support old software. That would be nice to do for old browsers.
[17:44:57] <KAsp3rd> ingsoc: I agree, however what I am working on will be an actual replacement for our current network designs submitted to our network engineers for verification, instead of paying for microsoft visio we are actually going to use the databinding in angular to allow our sales engineers to actually map out the network to display exactly what they are selling to the customer as well as the cost of all material
[17:45:00] <KAsp3rd> involved without having to get the network engineers involved to verify if the path they are even wanting to use has available bandwidth for the customer
[17:45:02] *** plushy has joined #angularjs
[17:45:12] *** ciwolsey has joined #angularjs
[17:45:42] *** macobo has quit IRC
[17:46:06] <ingsoc> moogey: pretty extreme stuff but I spose for certain things it may make sense.
[17:46:11] <beckyconning_> hi! is there any way to make this so that the scHeader directive displays the details defined in the scDetails directive? http://plnkr.co/edit/EGysfFx0ReVQ2OnbUN11?p=preview
[17:46:23] <beckyconning_> displays the name defined in the scDetails directive
[17:46:28] *** azizur has joined #angularjs
[17:46:51] *** ben_dev has joined #angularjs
[17:46:56] *** bmac has quit IRC
[17:47:06] *** Fenikkusu has quit IRC
[17:47:09] *** jonr22 has joined #angularjs
[17:47:45] <beckyconning_> should be pretty fun to work out i just haven't quite done it yet
[17:47:47] *** strive has quit IRC
[17:48:33] *** bmac has joined #angularjs
[17:48:53] <KAsp3rd> beckyconning_: you are wanting the name to display where "Name" is on the html side?
[17:49:13] *** Prjio has joined #angularjs
[17:49:21] <beckyconning_> yeah thats right also, i've just remembered that having a controller on a directive stops the scope thing from working
[17:49:45] <beckyconning_> so currently the details scope is setting name and age on the service to undefined
[17:50:03] *** ChadStrat has joined #angularjs
[17:50:03] <beckyconning_> is there a way to get a reference to the service in a link function?
[17:50:26] *** _45kb has quit IRC
[17:50:56] *** edy has quit IRC
[17:50:59] *** BaconOverflow has quit IRC
[17:51:01] <Foxandxss> inject it into the direcive
[17:51:03] <Foxandxss> directive*
[17:51:07] <Foxandxss> and you can access it from the link
[17:51:23] <bigorangemachine> Anyone have any experience with overthrow angular-bootstrap and angular mobile ui? I have a modal box that will not scroll :(
[17:51:27] *** cuebix-wk has joined #angularjs
[17:51:28] *** caitp has quit IRC
[17:51:29] <beckyconning_> Foxandxss: thanks!
[17:51:39] <youngnico> has anyone else here monkey patched angular to add a global timeout to $http?
[17:51:43] *** ome has quit IRC
[17:51:59] *** jonr22 has quit IRC
[17:52:04] *** caitp has joined #angularjs
[17:52:10] <cuebix-wk> Question, in a directive, what does it mean when a scope variable is set up like this: scope: { blah: '=?' }
[17:52:11] <youngnico> $http seems to proxy it's requests to $httpBackend provider, which I could probably tap into and bind a global timeout default...
[17:52:13] <youngnico> but...
[17:52:15] <youngnico> https://github.com/angular/angular.js/blob/master/src/ngMock/angular-mocks.js#L1149
[17:52:20] <cuebix-wk> I know = is a two-way binding. is =? one way or something?
[17:52:43] <youngnico> it looks like vojta has a TODO to change the arg signature... removing timeout... anyone know what that's about or can point me to a thread with this conversation?
[17:53:01] *** cacts|wtf has quit IRC
[17:53:04] <Foxandxss> cuebix-wk: optional
[17:53:10] <cuebix-wk> ah, thanks
[17:53:17] *** Prjio has quit IRC
[17:53:18] <beckyconning_> so KAsp3rd and Foxandxss this is where i'm at now http://plnkr.co/edit/9Tuj1SLLy6mxjPzQ02Oc?p=preview
[17:53:36] *** tfennell_ has quit IRC
[17:53:41] <cuebix-wk> does that apply to the other types too (@? and &?)
[17:53:43] *** stillbourne has joined #angularjs
[17:53:43] *** dweave has joined #angularjs
[17:53:45] <youngnico> @cuebix-wk you can do that ? for controller requires too, and "@" is more of a 1 day binding
[17:53:49] <Foxandxss> cuebix-wk: no
[17:53:54] *** larsgk has quit IRC
[17:53:56] *** fbenoit_ has quit IRC
[17:54:01] *** ben_dev has quit IRC
[17:54:06] *** Solid1_afk is now known as Solid1
[17:54:18] *** yts has quit IRC
[17:54:25] <cuebix-wk> youngnico cool good to know
[17:54:29] *** htmelvis has quit IRC
[17:54:41] <dweave> if I want to “add a directive” to my element from within my custom directive why can’t i just do that in my compile function. Am I missing something?
[17:54:41] *** pen has quit IRC
[17:54:48] <cuebix-wk> thanks Foxandxss
[17:55:08] *** greengriminal has quit IRC
[17:55:22] <Foxandxss> dweave: you can
[17:55:29] <dweave> this isn’t working
[17:55:29] *** trend has joined #angularjs
[17:55:30] <dweave> http://pastebin.com/86G4x2Fg
[17:55:52] <dweave> do I need to explicitly $compile? thought that’s what the compile method did
[17:55:53] *** Colombus has quit IRC
[17:55:54] *** Sky[x] has joined #angularjs
[17:56:04] <Foxandxss> beckyconning_: you're overriding references
[17:56:09] <Foxandxss> that is why the other won't see anything
[17:56:15] <beckyconning_> ?
[17:56:23] *** clarkk has joined #angularjs
[17:56:33] <beckyconning_> do i need a single loading of the service on the app module?
[17:56:42] <Foxandxss> no
[17:56:51] <Foxandxss> a = 10; b = a; a = 20
[17:56:56] <Foxandxss> console.log(b);
[17:56:57] *** bradmaxs has quit IRC
[17:57:00] *** rishy has joined #angularjs
[17:57:02] <Foxandxss> what does that log beckyconning_ ?
[17:57:53] <beckyconning_> 20 right?
[17:57:57] <Foxandxss> no
[17:57:59] <dweave> no
[17:58:14] <beckyconning_> http://puu.sh/d6ovy/3067503f63.png
[17:58:21] <Foxandxss> no
[17:58:24] <beckyconning_> oops lol
[17:58:24] <Foxandxss> print b now
[17:58:36] <beckyconning_> yeah 10 obvs sorry
[17:58:42] *** iamjmw has joined #angularjs
[17:58:44] <youngnico> oh nvm i was looking at the $httpBackend mock... need... moar.... coffee...
[17:58:46] <Foxandxss> that is what happen on your plunker
[17:59:04] *** ben_dev has joined #angularjs
[17:59:07] <Foxandxss> you have to grab the reference of the most durable object
[17:59:12] <Foxandxss> the one which won't change its reference
[17:59:19] <dweave> Fox any idea what my prob is in my compile?
[17:59:26] *** discgo has quit IRC
[17:59:30] *** nfroidure has quit IRC
[17:59:41] <Foxandxss> dweave: can't divide my mind, sorry, need to tackle one by one
[17:59:46] <dweave> k
[18:00:30] *** trend has quit IRC
[18:00:36] *** e4rt5 has quit IRC
[18:00:39] *** ogdabou has quit IRC
[18:01:13] <beckyconning_> where am i overloading?
[18:01:22] *** sebhoss has quit IRC
[18:01:23] <Foxandxss> wait wait
[18:01:24] *** a3gis has joined #angularjs
[18:01:26] <beckyconning_> sorry i'm pretty tired but i really want to figure this out : ) thanks for helping
[18:01:27] <Foxandxss> hell of asleep
[18:01:36] <Foxandxss> me too
[18:01:40] <beckyconning_> haha : )
[18:01:46] <Foxandxss> first
[18:01:54] <Foxandxss> details expects a property on the scope
[18:01:58] <Foxandxss> that is what `=` means
[18:02:12] <Foxandxss> Billy or 74 is not a property on any scope
[18:02:14] <Foxandxss> they are strings
[18:03:09] *** crunch-choco has quit IRC
[18:03:21] *** iamjmw has quit IRC
[18:03:46] *** qdk has joined #angularjs
[18:03:46] *** tjsail33 has quit IRC
[18:03:51] *** eBureau has joined #angularjs
[18:03:54] <Foxandxss> & won't help either :P
[18:04:02] *** mica has joined #angularjs
[18:04:14] <beckyconning_> ohh!
[18:04:16] <beckyconning_> oh!
[18:04:19] *** tjsail33 has joined #angularjs
[18:04:22] *** johnbender has joined #angularjs
[18:04:23] <beckyconning_> i get it : )
[18:04:30] <beckyconning_> i'll fix that bit first
[18:04:34] *** mmealling has joined #angularjs
[18:04:43] *** robdubya has joined #angularjs
[18:04:58] <beckyconning_> http://plnkr.co/edit/9Tuj1SLLy6mxjPzQ02Oc?p=preview is that any better?
[18:04:59] *** JMZ_DMZ has joined #angularjs
[18:05:05] *** DarrenCraig has quit IRC
[18:05:05] * ElysiumNet wonders if he should rather be looking at UI frameworks rather than javascript frameworks for administration stuff
[18:05:47] *** mica has left #angularjs
[18:06:37] *** dhrami has quit IRC
[18:06:38] *** cliluw has quit IRC
[18:07:21] *** dhrami has joined #angularjs
[18:07:22] <Foxandxss> beckyconning_: no
[18:07:24] <Foxandxss> you need @
[18:07:27] <Foxandxss> that is for simple strings
[18:07:31] *** a3gis has quit IRC
[18:07:32] <beckyconning_> ok
[18:07:38] <johnbender> Question about minification: I've consulted the docs, and declared everything that appears to be a provider using the "array method" but I can't get the TodoMVC angularjs example to minify
[18:07:42] *** bundledavid has quit IRC
[18:07:45] *** MaxV has quit IRC
[18:07:58] <TweedleDee> is there an alternative ( i'm positive there is ) for the MVC bundleconfig.cs for and if so, what do you guys use?
[18:07:59] *** larsgk has joined #angularjs
[18:08:10] <johnbender> example to look at here: http://107.170.208.194:3000/angularjs/#/
[18:08:17] *** bundledavid has joined #angularjs
[18:08:19] <Foxandxss> TweedleDee: wrong channel
[18:08:31] <johnbender> any help on getting the declarations sorted out properly would be greatly appreciated
[18:08:32] *** jonathanpglick has joined #angularjs
[18:08:45] <stillbourne> Does anyone else feel like you are reading the sounds of flatulence when looking at table markup?
[18:08:46] <TweedleDee> yeah wrong tab my fault
[18:08:57] <Foxandxss> johnbender: you need array notation, $inject or ng-annotation
[18:09:02] <TweedleDee> if someone knows the answer private msg me anyways tho
[18:09:10] <Foxandxss> TweedleDee: np, just pointed it out to not make you wait for nothing
[18:09:10] <johnbender> Foxandxss: thanks! I have that there as far as I can tell
[18:09:14] <beckyconning_> Foxandxss: http://plnkr.co/edit/Zp1rEm87Ty5L1XUTdItD?p=preview
[18:09:14] *** mmealling has quit IRC
[18:09:18] <johnbender> which is why I'm here to get help :)
[18:09:19] *** loverajoel has joined #angularjs
[18:09:34] <beckyconning_> Foxandxss: you are popular tonight!
[18:09:51] *** Dave321 has joined #angularjs
[18:09:55] *** ElysiumNet has quit IRC
[18:10:19] <Foxandxss> that is better yes
[18:10:24] *** marcjs_____ has quit IRC
[18:10:27] <johnbender> Foxandxss: http://107.170.208.194:3000/angularjs/js/controllers/todoCtrl.js
[18:10:33] <johnbender> as an example, at the top
[18:10:40] *** marcjs has joined #angularjs
[18:10:49] *** d10n-work has joined #angularjs
[18:10:50] <Foxandxss> that is perfect johnbender
[18:11:36] <Foxandxss> dweave: I wouldn't use compile
[18:11:39] <yandos> johnbender: your resolve doesn’t include array notation
[18:11:42] <Foxandxss> better link + $compile
[18:11:42] <johnbender> Foxandxss: I've got that set up pretty much everywhere but switching to the min version gives me a provider error :(
[18:11:49] <johnbender> yandos: oh!
[18:11:49] *** stirlingw has joined #angularjs
[18:11:58] *** grindmodeon has quit IRC
[18:11:59] <yandos> store: function (todoStorage) {
[18:12:00] <dweave> Foxandxss what you suggest?
[18:12:09] <Foxandxss> link + $compile
[18:12:13] <dweave> ok
[18:12:20] <dweave> lemme give that a quick try
[18:12:22] <Foxandxss> compile was useful in the past
[18:12:25] <yandos> johnbender: see http://stackoverflow.com/questions/15762691/angularjs-correct-minify-able-syntax-when-using-resolve-with-controllers
[18:12:33] <Foxandxss> but nowadays, there is no performance hit and link works for everything
[18:12:58] *** niklasmodess has quit IRC
[18:13:22] <johnbender> yandos: looking now, thanks!
[18:13:42] *** loverajoel has quit IRC
[18:13:50] *** MistahKurtz has joined #angularjs
[18:14:17] *** mcastro has joined #angularjs
[18:14:22] <dweave> Foxandxss do I need to replace the element with the newly compiled one?
[18:14:36] <Foxandxss> no, you modify your element in the way you like
[18:14:41] *** omolin4 has joined #angularjs
[18:14:42] <Foxandxss> then you compile its content
[18:14:50] <Foxandxss> $compile(element.contents())(scope)
[18:14:51] <dweave> http://pastebin.com/t7n47zHV
[18:14:53] <Foxandxss> or something like that
[18:14:58] *** bayousoft has quit IRC
[18:14:59] <dweave> ok
[18:15:25] *** folippi has quit IRC
[18:15:32] *** jplussier has quit IRC
[18:15:40] *** bayousoft has joined #angularjs
[18:15:42] <johnbender> yandos: Foxandxss: thank you both very, much. All is well!
[18:15:53] <yandos> *high fives screen*
[18:17:01] *** Colombus has joined #angularjs
[18:17:20] *** tfennelly has joined #angularjs
[18:17:59] <moogey> !hf
[18:18:09] <moogey> boo
[18:18:17] *** ingsoc has quit IRC
[18:18:58] *** mlpug has joined #angularjs
[18:19:13] *** whitebook has quit IRC
[18:19:23] <tristanp> any way to get angular to tell you which module failed to inject when it has that common injection failed error?
[18:19:28] *** johnbender has left #angularjs
[18:19:58] <Foxandxss> beckyconning_: being asleep wasn't a joke mate
[18:20:10] <dweave> Foxandxss i’m trying to compile the actual element not it’s contents
[18:20:14] <dweave> would that make a difference
[18:20:23] <dweave> i’m not seeing the new attribute reflected in the dom
[18:20:24] *** larsgk has quit IRC
[18:20:26] <Foxandxss> beckyconning_: http://plnkr.co/edit/AnlVtcfujdjoAz27PKKe?p=preview
[18:21:13] *** zB0hs has joined #angularjs
[18:21:16] *** m8 has quit IRC
[18:21:35] <beckyconning_> Foxandxss: omg thats so cool
[18:21:38] <beckyconning_> Foxandxss: thanks!
[18:22:00] <tjsail33> tristanp: not that i know of. its usually the last one you added though haha
[18:22:33] <tristanp> tjsail33: yeah, it's usually not an issue but i just am checking out a new angular app that someone else wrote, and the first time i try to run it it fails on injection
[18:22:50] <tjsail33> remove remove remove hahahaha
[18:22:50] *** gjaldon has joined #angularjs
[18:22:52] <tristanp> there are tons of things being injected so it will be extremely tedious to go through and figure this out
[18:23:07] *** fedenunez1 has joined #angularjs
[18:23:09] <tjsail33> do it like a bisect. narrow it down by removing half at once
[18:23:19] *** bhuvanaurora has joined #angularjs
[18:23:28] *** frobs has quit IRC
[18:23:31] *** fedenunez has quit IRC
[18:24:04] *** phzon has quit IRC
[18:24:22] *** doginal has joined #angularjs
[18:25:11] *** richiebkr has joined #angularjs
[18:25:18] *** Fuzzy has quit IRC
[18:25:40] *** mmealling has joined #angularjs
[18:26:30] *** greengriminal has joined #angularjs
[18:26:34] *** aks has quit IRC
[18:26:40] *** lewdev has joined #angularjs
[18:27:04] <Foxandxss> dweave: try with attrs.$set
[18:28:47] *** zz_night-owl is now known as night-owl
[18:28:55] *** VeeWee has joined #angularjs
[18:30:05] *** punch has joined #angularjs
[18:30:07] *** morenoh149 has joined #angularjs
[18:30:22] *** jonr22 has joined #angularjs
[18:30:39] *** mennea has joined #angularjs
[18:30:51] *** sacho has quit IRC
[18:31:01] *** aks has joined #angularjs
[18:31:03] *** moritzs has quit IRC
[18:31:37] *** loverajoel has joined #angularjs
[18:32:19] *** sk87 has quit IRC
[18:32:22] *** intellix has quit IRC
[18:33:52] *** lolmaus has joined #angularjs
[18:33:57] *** prbc has joined #angularjs
[18:34:10] *** ingsoc has joined #angularjs
[18:34:33] *** prbc has quit IRC
[18:34:53] *** morenoh149 has quit IRC
[18:35:11] <lolmaus> I used to keep my helper methods in a service of type Value. But now i need to use a helper method in my app's config, and it's not available there. Is there a way to make it available there other than converting my helper service from Value to Provider?
[18:36:02] *** jdcasey has quit IRC
[18:36:13] *** jdcasey has joined #angularjs
[18:36:32] <Foxandxss> lolmaus: use constant
[18:36:39] *** bundledavid has quit IRC
[18:36:41] <Foxandxss> same as value but available there
[18:36:52] <dman777_alter> http://dpaste.com/1BTEENB Would I be better off attaching these primitive data members to just one object in service and attaching that object to the scope?
[18:37:06] <lolmaus> Foxandxss: wow, thank you!
[18:37:36] *** NeedleEgg has quit IRC
[18:37:36] *** jaydubya has quit IRC
[18:37:54] *** technickul has quit IRC
[18:38:53] *** Ajans has quit IRC
[18:39:42] *** frem has joined #angularjs
[18:40:00] *** punch has quit IRC
[18:40:15] *** dnewkerk has joined #angularjs
[18:40:23] *** sikor_sxe has quit IRC
[18:41:34] *** larsgk has joined #angularjs
[18:42:20] *** tangorri has quit IRC
[18:42:20] <IvailoStoianov> guys, share some of your mad skillZ with me... I am trying to send a GET request to an API, which works fine... when I am not logged in my site, when I log in I get THE CORS block, I tried everything... I don't have route as it's client side
[18:42:44] *** richardlitt has quit IRC
[18:43:14] *** joshontheweb has joined #angularjs
[18:44:05] *** punch has joined #angularjs
[18:44:09] *** Oddman|away is now known as Oddman
[18:44:21] *** doginal has quit IRC
[18:44:56] *** mchammer has quit IRC
[18:45:06] <cythrawll> IvailoStoianov, do you do some magic like reroute through https when logged in or that stuff?
[18:45:15] *** RobinBAwesome has joined #angularjs
[18:45:20] <IvailoStoianov> no
[18:45:25] <TheAceOfHearts> Foxandxss: Treasure Data is importing 400,000 records per second.
[18:45:26] <TheAceOfHearts> To put this into perspective, in 2013 Twitter's had an average of 5,700 tweets per second. :p
[18:45:31] *** punch has quit IRC
[18:45:47] <Foxandxss> uhh, who are they?
[18:45:54] <TheAceOfHearts> I work for Treasure Data lol
[18:46:14] *** NanoArro1 has quit IRC
[18:46:16] *** michaeltresseras has joined #angularjs
[18:46:20] <Foxandxss> hell if I know :P
[18:46:37] <Foxandxss> it is cool data tho
[18:46:47] <Foxandxss> which technology achieves that?
[18:47:08] *** larsgk has quit IRC
[18:47:15] <TheAceOfHearts> well
[18:47:21] <TheAceOfHearts> it's all a custom built storage engine
[18:47:24] *** DrMabuse has quit IRC
[18:47:34] *** jlebrech has quit IRC
[18:47:41] <Foxandxss> I see
[18:47:43] <TheAceOfHearts> but it's built on top of s3
[18:47:44] *** ben_dev has quit IRC
[18:47:47] *** GeneralChoomin has quit IRC
[18:47:48] <TheAceOfHearts> and it can interface with lotsa query engines
[18:47:54] <TheAceOfHearts> like hadoop lol
[18:48:11] *** DrMabuse_ has joined #angularjs
[18:48:16] *** saucey has quit IRC
[18:48:21] *** dc_ has joined #angularjs
[18:49:10] *** Guest22 is now known as atomiccc
[18:49:53] *** Prjio has joined #angularjs
[18:50:12] *** punch has joined #angularjs
[18:50:41] <Foxandxss> I see
[18:50:53] <Foxandxss> damn, I need to put serious myself and do good stuff
[18:51:14] *** Solid1 is now known as Solid1_afk
[18:51:18] *** say2joe has joined #angularjs
[18:51:23] *** Colombus has quit IRC
[18:52:10] *** Oxynum has quit IRC
[18:52:21] *** angularUser400 has quit IRC
[18:52:23] *** xaxisx has joined #angularjs
[18:52:33] *** dc_ has quit IRC
[18:52:54] *** DrMabuse_ has quit IRC
[18:53:04] *** morenoh149 has joined #angularjs
[18:53:19] *** delight has joined #angularjs
[18:53:22] *** Oxynum has joined #angularjs
[18:53:34] *** ausum_possum has joined #angularjs
[18:53:40] *** iribarne has joined #angularjs
[18:53:42] *** doginal has joined #angularjs
[18:53:53] *** stephen has joined #angularjs
[18:54:32] *** Prjio has quit IRC
[18:54:59] *** adpirz has joined #angularjs
[18:55:34] *** Oxynum has quit IRC
[18:56:02] *** digisky has quit IRC
[18:56:37] *** cheef1 has joined #angularjs
[18:56:46] *** moritzs has joined #angularjs
[18:56:52] *** jaznow has quit IRC
[18:57:46] *** morenoh149 has quit IRC
[18:57:49] *** patrick99e99 has joined #angularjs
[18:59:25] *** adpirz has quit IRC
[18:59:40] *** areologist has joined #angularjs
[18:59:54] *** webthingee|otp is now known as webthingee
[19:00:15] *** mennea has quit IRC
[19:00:31] *** jareddlc has joined #angularjs
[19:00:51] *** mennea has joined #angularjs
[19:00:52] *** jonr22 has quit IRC
[19:01:22] *** NanoArro1 has joined #angularjs
[19:01:59] *** mlpug has quit IRC
[19:02:25] <robdubya> morning children
[19:02:50] <zomg> what's the difference between morning children and normal children?
[19:03:45] *** brettfrable has quit IRC
[19:03:59] *** Johnny13371337 has joined #angularjs
[19:04:01] *** Johnny13371337 has left #angularjs
[19:04:20] *** a3gis has joined #angularjs
[19:04:20] <moogey> morning children need to shut the hell up right now! Normal children just need to generally bring the volume down.
[19:04:43] *** a3gis has quit IRC
[19:04:49] *** ehynds has quit IRC
[19:05:00] *** bhuvanaurora has quit IRC
[19:05:01] *** ngbot has joined #angularjs
[19:05:01] <ngbot> [angular.js] pkozlowski-opensource pushed 1 new commit to master: http://git.io/ZKdVTg
[19:05:01] <ngbot> angular.js/master 0caa5ad Georgios Kalpakas: docs(CHANGELOG): remove * component...
[19:05:01] *** ngbot has left #angularjs
[19:05:18] <tristanp> I'm taking a look at Mean.io's directory structure: https://github.com/linnovate/mean. Where do you think they put directives?
[19:05:50] <tristanp> a lot of directives are shared, so do they really belong under a particular package?
[19:05:57] <fixxxermet> Hey everyone. I'm having trouble with setting $scope variables. I'm getting 'missing name afer . operator' on line #8 of my code @ http://pastie.org/9745230
[19:06:14] *** say2joe has quit IRC
[19:06:21] *** ngbot has joined #angularjs
[19:06:21] <ngbot> [angular.js] pkozlowski-opensource pushed 1 new commit to master: http://git.io/1HRG_w
[19:06:21] <ngbot> angular.js/master 41dc7d5 Or Neeman: docs(ngRoute): clarify JSDoc for caseInsensitiveMatch...
[19:06:21] *** ngbot has left #angularjs
[19:06:27] *** Prjio has joined #angularjs
[19:06:35] *** Colombus has joined #angularjs
[19:07:26] <tristanp> fixxxermet: wouldn't it be $scope[id], not $scope.[id]
[19:07:32] <tristanp> or do both ways work
[19:08:11] *** trolling42 has joined #angularjs
[19:08:25] <fixxxermet> tristanp: $scope[id].zmc gives me a different error: '$scope[id] is undefined"
[19:09:06] *** dantheta has quit IRC
[19:09:36] *** moritzs has quit IRC
[19:09:48] *** boberober has joined #angularjs
[19:10:01] <tristanp> fixxxermet: probably need to change it to: https://gist.github.com/tristanpendergrass/9a9940cc5644675c6cc6
[19:10:14] *** mcastro has quit IRC
[19:10:20] *** dannyc has quit IRC
[19:10:23] *** lolmaus has quit IRC
[19:10:28] *** dannyc_ has quit IRC
[19:10:34] *** OddDuck has joined #angularjs
[19:10:35] *** OddDuck has joined #angularjs
[19:11:06] <TheAceOfHearts> has anyone heard of RaveJS?
[19:11:17] <tristanp> the reason is that if you do foo = {}; foo.bar.baz = 3; it will fail because it doesn't automatically create an empty object under foo.bar.
[19:11:27] *** tech2 has quit IRC
[19:11:55] *** ausum_possum has quit IRC
[19:12:07] *** robksawyer has joined #angularjs
[19:12:20] *** xdotcommer has joined #angularjs
[19:12:25] *** despai has joined #angularjs
[19:12:28] *** doginal has quit IRC
[19:12:46] *** epantzar has joined #angularjs
[19:12:51] *** ioudas has quit IRC
[19:13:24] *** owl7 has joined #angularjs
[19:13:44] *** ioudas has joined #angularjs
[19:13:48] *** doginal has joined #angularjs
[19:14:29] <zomg> TheAceOfHearts: I've heard people talk about it lately but haven't really looked at it that much myself
[19:15:25] *** tristanp has quit IRC
[19:15:26] *** omolin4 has quit IRC
[19:15:30] *** lexek__ has quit IRC
[19:15:38] *** omolin4 has joined #angularjs
[19:15:40] *** Fuzzy has joined #angularjs
[19:16:49] <robdubya> untiss untiss untiss baby
[19:17:09] *** dnewkerk has quit IRC
[19:17:46] *** Colombus has quit IRC
[19:18:28] <trolling42> Hi, if I am trying to track the location params using a query format like ?test=query, is $location good for that or using ui-router a better choice?
[19:19:13] *** helen_ has joined #angularjs
[19:19:18] *** xdotcommer has quit IRC
[19:20:19] *** mcastro has joined #angularjs
[19:21:03] *** htmelvis has joined #angularjs
[19:21:06] *** bengillies has quit IRC
[19:21:33] *** bengillies has joined #angularjs
[19:21:50] *** whitebook has joined #angularjs
[19:22:06] *** il-audioburn has joined #angularjs
[19:22:09] <TheAceOfHearts> zomg: it looks neat
[19:22:13] <TheAceOfHearts> I might try it out at some point
[19:22:29] *** moritzs has joined #angularjs
[19:22:31] *** Solid1_afk is now known as Solid1
[19:22:44] <Foxandxss> robdubya: buh
[19:22:57] *** nairys has joined #angularjs
[19:23:05] <nickeddy> robdubya: boots & cats & boots & cats
[19:23:17] *** skyx_ has joined #angularjs
[19:23:29] *** bhuvanaurora has joined #angularjs
[19:23:50] *** vassagus has quit IRC
[19:23:58] <nickeddy> happy thanksgiving all
[19:24:01] *** stephen has quit IRC
[19:24:21] *** stephen has joined #angularjs
[19:24:32] *** bhuvanaurora has quit IRC
[19:25:05] *** cliluw has joined #angularjs
[19:25:08] *** RobinBAwesome has quit IRC
[19:25:35] *** davidreis has quit IRC
[19:25:38] *** TheAceOfHearts has quit IRC
[19:25:48] *** yandos has quit IRC
[19:25:53] *** bengillies has quit IRC
[19:25:53] *** Sky[x] has quit IRC
[19:26:08] *** Fishy has quit IRC
[19:26:24] <stephen> Howdy
[19:28:12] *** TheAceOfHearts has joined #angularjs
[19:28:27] *** edy has joined #angularjs
[19:28:36] *** micks_9093 has quit IRC
[19:29:06] *** jaydubya has joined #angularjs
[19:29:14] *** CaseyThursday has joined #angularjs
[19:29:53] <TheAceOfHearts> I always just use link directly, I've never had to use compile or preLink
[19:30:00] <TheAceOfHearts> postLink is good enough
[19:30:00] *** xaxisx has quit IRC
[19:30:02] <TheAceOfHearts> for my stuff
[19:30:18] *** micks_9093 has joined #angularjs
[19:30:18] *** leonbienek has joined #angularjs
[19:30:30] *** mennea has quit IRC
[19:30:38] *** RobinBAwesome has joined #angularjs
[19:30:52] *** mennea has joined #angularjs
[19:30:52] *** epantzar has quit IRC
[19:31:03] <stephen> So, question:
[19:31:04] *** glassir has quit IRC
[19:31:15] *** xaxisx has joined #angularjs
[19:31:29] <stephen> Many of us here are familiar with wrapping http calls inside a factory/service.
[19:32:04] <stephen> And the second step of using that singleton to hold the data to create an object store.
[19:32:12] <Foxandxss> TheAceOfHearts: that is completely true for today
[19:32:16] <leonbienek> Hey all
[19:32:20] <jaydubya> is it possible to merge a branch back to master on Github?
[19:32:32] <stephen> In this way data can be shared among different controllers/directives/whatever.
[19:33:07] <stephen> My question is: What is everyone's experience in doing that vs slim view models?
[19:33:34] *** Solid1 is now known as Solid1_afk
[19:33:43] <tjsail33> jaydubya: do you mean completely replace master or just merge changes?
[19:33:50] <jaydubya> merge changes
[19:33:59] <tjsail33> git checkout master
[19:34:03] *** pretzel80 has joined #angularjs
[19:34:04] <tjsail33> git pull origin <brnachname>
[19:34:07] *** trend has joined #angularjs
[19:34:08] *** glassir has joined #angularjs
[19:34:09] <jaydubya> on the Github website?
[19:34:25] <tjsail33> oh. issue a pull request to the master branch i think would do it
[19:34:33] *** dacuca has quit IRC
[19:34:48] <jaydubya> my local project no longer has a git folder and is throwing an error
[19:35:12] <tjsail33> seems like something got messed up somewhere then
[19:35:18] <jaydubya> I want to merge the branch back to master and then somehow reestablish a link to the github repo
[19:35:28] <robdubya> stephen thats what controllers are for, imo
[19:35:35] *** rikkipitt has quit IRC
[19:35:47] <tjsail33> without a link to github or a .git folder, you wont be able to do any git functions
[19:36:01] <leonbienek> Can anyone help witha quick $resource question?
[19:36:10] *** jonr22 has joined #angularjs
[19:36:35] <stephen> robdubya, controllers are for slim vm, or for object stores?
[19:36:44] *** SKZC has joined #angularjs
[19:36:57] *** epantzar has joined #angularjs
[19:36:57] *** punch has quit IRC
[19:37:03] *** Nijikokun has joined #angularjs
[19:37:06] *** thomasreggi has joined #angularjs
[19:37:28] *** punch has joined #angularjs
[19:37:28] *** herzyo has joined #angularjs
[19:37:46] *** epantzar has quit IRC
[19:38:07] *** epantzar has joined #angularjs
[19:38:10] *** Aerospark has joined #angularjs
[19:39:00] *** d4rklit3 has joined #angularjs
[19:39:22] <robdubya> "view model" isn't really a term i like tbh
[19:39:31] *** kwaledesign has quit IRC
[19:39:38] <robdubya> you could describe the controller as a viewmodel but that sorta blurs the lines
[19:39:43] *** JERE has quit IRC
[19:39:50] <leonbienek> If i have a service using $resource, is there any way to automatically run a function on any returned data. I want to parse a date property into a momentjs object on each returned object
[19:39:51] *** epantzar has quit IRC
[19:40:12] *** herzyo has quit IRC
[19:40:45] *** sacho has joined #angularjs
[19:41:09] *** jonr22 has quit IRC
[19:41:13] *** pfmachado has quit IRC
[19:41:40] *** AlSquirrel has joined #angularjs
[19:42:05] *** jonn has joined #angularjs
[19:42:07] *** merobertsjr has joined #angularjs
[19:42:24] *** boxmein has joined #angularjs
[19:42:47] <jonn> Hey
[19:42:48] *** skyx_ has quit IRC
[19:42:52] <robdubya> leonbienek look at the transformResponse key
[19:42:54] <jonn> I cant access my model variables
[19:43:33] <jonn> I have a controller and set it on the scope
[19:43:52] <jonn> when I set it in the controller, I can see the set value in the textbox
[19:44:00] <jonn> But when I try to reset it to ''
[19:44:03] <jonn> It wont change it
[19:44:41] *** frem_ has joined #angularjs
[19:44:51] <stephen> jonn, how are you setting it?
[19:45:13] <jonn> $scope.performSearch = function(event) { $scope.searchQuery = 'foo';
[19:45:18] *** snurfery has quit IRC
[19:45:20] <jonn> but now thats not even working
[19:45:21] <fixxxermet> Can I use the ternary operator to evaluate two variables? Like: "var1 || var2 ? 'true' : 'false'"
[19:45:22] <stephen> how are you setting it ''
[19:45:23] <stephen> ?
[19:45:29] <jonn> <input type="text" name="search" data-ng-keyup="performSearch($event)" data-ng-model="searchQuery">
[19:45:30] *** AlSquire has quit IRC
[19:45:37] *** sirkitree is now known as sirkitree|afk
[19:45:55] *** epantzar has joined #angularjs
[19:46:08] <stephen> jonn, throw you code on plunker if you dont mind. It might just be a scoping problem
[19:46:16] <jonn> sure
[19:46:27] *** doginal has quit IRC
[19:46:27] *** xxMatiasFCxx has quit IRC
[19:46:50] *** storresi has quit IRC
[19:46:51] *** xxMatiasFCxx has joined #angularjs
[19:46:52] <jonn> here is the html
[19:46:53] <jonn> https://gist.github.com/jonny2779/6ade205b0ef11d13c790
[19:47:27] <jonn> and the controller
[19:47:28] <jonn> https://gist.github.com/jonny2779/962a2c2a03be9970eaf9
[19:47:40] *** jmichaelward has joined #angularjs
[19:47:44] <stephen> robdubya, I get that. The controller is the "View's Scope". Typically I'd reserve controller's scope/namespace for variables the view intends on binding to, and I'd inject a service(s) which stores the data I plan on grabbing or sorting through
[19:47:58] <jonn> Its hitting the perform search method each time a key is pressed
[19:48:02] *** frem has quit IRC
[19:48:11] *** cheef1 has quit IRC
[19:48:36] <jaydubya> Here is how I screwed up: (1) I have been working on a branch for about 3 weeks and the branch (not Master) is what I need to restore. (2) This morning I deleted my current project (7 months of work). I tried to restore from Time Machine but some files couldn't be copied. (3) I tried to clone my github repo but it is Master so no good. (4) I downloaded the zip of the branch but it says I don't have a git folder.
[19:48:56] *** renlo has joined #angularjs
[19:49:04] *** micks_9093 has quit IRC
[19:49:08] <robdubya> stephen that's more or less how i do it
[19:49:09] *** epantzar has quit IRC
[19:49:16] *** whitebook has quit IRC
[19:49:19] <leonbienek> Thanks robdubya. I'll give that a try
[19:49:22] <robdubya> super lightweight controllers, and typically all the data is mutated before they hit it
[19:49:25] <dhrami> quick question. I have a state (call it a.b). this state has a table in it. each row has (among other things) an <a> tag with a ui-sref to populate a details panel for the clicked item via an id property on the item. this all works fine. but I want the app to default to starting with the details for the first item in the table.
[19:49:34] *** mcastro has quit IRC
[19:49:55] <dhrami> I don't know how to do that since I can't just use a .when because it is data dependent
[19:49:59] *** Luser has quit IRC
[19:50:20] <stephen> jonn, declare searchQuery earlier. Like you have userResults
[19:50:48] *** AlexZan has joined #angularjs
[19:50:48] *** frem has joined #angularjs
[19:50:57] *** punch has quit IRC
[19:50:58] *** azizur has quit IRC
[19:51:06] *** roven has quit IRC
[19:51:25] *** jdj_dk has joined #angularjs
[19:51:31] <fixxxermet> This /seems/ to work: ng-class="(monitor.zmc || monitor.zma) ? 'panel-default' : 'panel-danger'"
[19:51:32] <jonn> no luck
[19:51:36] <shoerain> jaydubya: you may get more help on #git
[19:51:45] <jaydubya> ok thanks!
[19:52:18] *** jmichaelward has quit IRC
[19:52:23] *** cheef1 has joined #angularjs
[19:52:28] *** Aerospark has quit IRC
[19:52:40] *** snurfery has joined #angularjs
[19:52:48] *** jdj_dk has quit IRC
[19:52:56] <fairuz> jaydubya: Did you at least pushed your work to somewhere?
[19:53:01] *** Aerospark has joined #angularjs
[19:53:29] <stephen> jonn, You do realize that you're overwriting searchQuery with 'foo' in the keyup function, right?
[19:53:39] <jonn> right
[19:53:45] <jonn> I would expect the input to have foo in it
[19:53:49] <jonn> but it has nothing in it
[19:53:52] <jonn> at all
[19:54:09] <jonn> and each time I press a key, it should go to foo but it does not
[19:54:22] <stephen> jonn, that's because $scope.searchQuery didn't exist at the time the textbox binds
[19:54:37] *** doug64k has quit IRC
[19:55:02] <jonn> I have it in here steve
[19:55:03] <jonn> <i title="Toggle Search" data-ng-click="searchToggled = !searchToggled" data-ng-init="searchToggled = false; searchQuery = ''">
[19:55:22] <jonn> it should be there. I also just added it to the top of the controller as well
[19:55:29] *** dhcar has joined #angularjs
[19:56:07] *** punch has joined #angularjs
[19:56:11] *** disorder20 has joined #angularjs
[19:56:29] *** elrabin has quit IRC
[19:56:49] *** juampy_backlater is now known as juampy
[19:56:52] <jonn> If I put $rootScope.searchQuery everywhere, it works
[19:56:55] <stephen> jonn, I think you might have a bit of a race condition there
[19:57:00] <jonn> It must be a scoping issue
[19:57:04] *** whitebook has joined #angularjs
[19:57:11] <stephen> with the <i> being the init value for the <input>
[19:57:29] <jonn> But I thought that the $scope was set on a controller level.
[19:57:34] *** gjaldon has quit IRC
[19:57:37] *** epantzar has joined #angularjs
[19:57:43] <robdubya> dont use a primitive broheim
[19:57:55] *** xaxisx has quit IRC
[19:57:58] <jonn> ? what does that mean
[19:58:02] <stephen> jonn, searchQuery='' would be better suited on #siteSearch in an init
[19:58:07] *** yandos has joined #angularjs
[19:58:10] <stephen> heh
[19:58:14] *** doginal has joined #angularjs
[19:58:18] *** punch has quit IRC
[19:58:29] <robdubya> dont do $scope.searchQuery = 'some string'
[19:58:30] <stephen> jonn, binding to strings, ints, bools,
[19:58:31] <robdubya> do
[19:58:34] <stephen> dont do that
[19:58:38] <robdubya> $scope.searchObject = {}
[19:58:43] *** DrMabuse has joined #angularjs
[19:58:49] <robdubya> <input ng-model="searchObject.searchText">
[19:58:57] *** yandos has quit IRC
[19:58:59] <robdubya> <ng-repeat="foo in foos | filter:searchObject"
[19:59:04] <jonn> ok. Ill test that out
[19:59:16] <stephen> Because each time you set a primitive, you destroy the old instance in essence
[19:59:25] <stephen> destroy instance = bad for binding
[19:59:52] *** omolin4 has quit IRC
[19:59:52] *** spaceonl_ has quit IRC
[19:59:54] *** mclenithan has joined #angularjs
[20:00:00] *** areologist has quit IRC
[20:00:38] *** frem has quit IRC
[20:00:47] *** Sontakey has joined #angularjs
[20:00:53] *** mtsr has joined #angularjs
[20:00:56] *** mennea has quit IRC
[20:01:02] <sacho> not really
[20:01:07] <sacho> the problem is with scope inheritance
[20:01:10] *** mennea has joined #angularjs
[20:01:10] *** TheAceOfHearts has quit IRC
[20:01:14] *** bkuberek has quit IRC
[20:01:24] *** lrvick has quit IRC
[20:01:24] *** mennea has quit IRC
[20:01:47] *** robdubya has quit IRC
[20:02:01] *** TheAceOfHearts has joined #angularjs
[20:02:33] *** sirkitree|afk has quit IRC
[20:02:44] *** cthrax has joined #angularjs
[20:02:45] *** frem has joined #angularjs
[20:02:47] *** az7ar has joined #angularjs
[20:02:56] *** eyebraus_ has quit IRC
[20:02:57] *** DrMabuse has quit IRC
[20:03:07] *** bkuberek has joined #angularjs
[20:03:09] *** dman777_alter has quit IRC
[20:03:11] <dweave> hmmm can i access isolate scope values from a directives controller?
[20:03:37] *** dseitz has quit IRC
[20:03:41] *** jaydubya has quit IRC
[20:03:52] *** bkuberek_ has joined #angularjs
[20:04:05] *** MJD has quit IRC
[20:04:05] *** lrvick has joined #angularjs
[20:04:09] <stephen> dweave, yes
[20:04:10] *** ngbot has joined #angularjs
[20:04:10] <ngbot> [angular.js] pkozlowski-opensource pushed 1 new commit to master: http://git.io/b-7DgQ
[20:04:10] <ngbot> angular.js/master 08cd5c1 Shahar Talmi: fix(ngMock): respond did not always take a statusText argument...
[20:04:11] *** ngbot has left #angularjs
[20:04:17] *** whitebook has quit IRC
[20:04:19] *** MJD has joined #angularjs
[20:04:21] <dweave> stephen can’t figure out how
[20:04:25] <stephen> dweave, Are you looking to isolate directive scope from it's own controller?
[20:04:29] <dweave> yeah
[20:04:35] *** Geertje123_ has joined #angularjs
[20:04:45] *** thomasreggi has quit IRC
[20:04:57] <stephen> It is coded in the directive declaration before you return your link function
[20:04:59] <dweave> i have a directive with an isolate scope and i want to update a value in that scope from the directives own controller
[20:05:06] *** eyebraus_ has joined #angularjs
[20:05:06] *** thebigredgeek has joined #angularjs
[20:05:18] <dweave> sorry what do u mean?
[20:05:27] <stephen> Can you post your code for your directive?
[20:05:31] <stephen> I'll show you.
[20:05:38] *** Sontakey has quit IRC
[20:06:20] <dweave> http://pastebin.com/uHJH4LrX
[20:06:23] <dweave> it’s a little long
[20:06:33] *** jonn has quit IRC
[20:06:36] <dweave> but i want to get that value in the controller
[20:06:39] <dweave> and be able to update it
[20:06:49] *** mennea has joined #angularjs
[20:07:17] *** bkuberek has quit IRC
[20:07:25] *** punch has joined #angularjs
[20:07:25] *** whunt has joined #angularjs
[20:08:00] *** DanielSamuels has joined #angularjs
[20:08:08] *** bkuberek_ has quit IRC
[20:08:10] *** soee has joined #angularjs
[20:08:34] <dweave> stephen do i have to watch that value? seems inefficient
[20:08:39] <stephen> no
[20:09:18] *** trend has quit IRC
[20:09:23] *** epantzar has quit IRC
[20:09:26] *** frem__ has joined #angularjs
[20:09:28] *** lite has quit IRC
[20:09:39] <stephen> dweave, whcih value?
[20:10:03] *** lite has joined #angularjs
[20:10:03] <stephen> $scope.value?
[20:10:06] <dweave> yes
[20:10:12] <dweave> how do i edit that value
[20:10:23] <dweave> from the controller
[20:10:24] *** whitebook has joined #angularjs
[20:10:30] *** merobertsjr has quit IRC
[20:10:32] *** helen_ has quit IRC
[20:10:46] <DanielSamuels> I'm having an issue in Firefox with a directive not rebinding an element after a route change, it binds on first page load though. Code is here: http://plnkr.co/edit/zVLEqZUtoFdoxZMo583c
[20:11:11] *** vassagus has joined #angularjs
[20:11:18] <DanielSamuels> It's working fine in Chrome and IE10
[20:11:33] *** epantzar has joined #angularjs
[20:11:41] <dweave> stephen in my controller $scope.value is undefined
[20:11:53] *** despai has quit IRC
[20:11:53] <stephen> dweave, are you wanting to modify 'value' so it affects something withing the directive, or outside?
[20:12:00] <dweave> outside
[20:12:13] *** xaxisx has joined #angularjs
[20:12:29] <stephen> dweave, first off the element which uses your directive needs the attribute 'value="value"'
[20:12:36] <stephen> or whatever the parent variable name is
[20:12:38] <dweave> it has that
[20:12:39] *** phzon has joined #angularjs
[20:12:47] *** frem_ has quit IRC
[20:13:05] *** trend has joined #angularjs
[20:13:36] <dweave> oh wait i lied
[20:13:41] <dweave> had it on the wrong element
[20:13:41] *** larsgk has joined #angularjs
[20:13:50] *** GeneralChoomin has joined #angularjs
[20:13:50] *** GeneralChoomin has joined #angularjs
[20:14:21] <stephen> lol
[20:14:23] *** lite has quit IRC
[20:14:31] *** xaxisx has quit IRC
[20:14:31] <dweave> iit works thanks
[20:14:40] <stephen> dweave, next you'll want to learn about scope's & binding
[20:14:42] <stephen> have fun
[20:14:50] *** thebigredgeek has quit IRC
[20:14:56] <dweave> yeah i have learned it a few times and forgotten a few times
[20:15:19] <dweave> angular solves some problems and creates a lot of others
[20:15:36] *** baweaver has joined #angularjs
[20:15:45] <stephen> Just like your mom.
[20:15:54] *** cthrax has quit IRC
[20:15:57] <dweave> yes
[20:16:27] *** ChadStrat has quit IRC
[20:17:11] *** phzon has quit IRC
[20:17:35] *** josh-k has joined #angularjs
[20:17:37] *** \du has quit IRC
[20:17:46] *** rikkipitt has joined #angularjs
[20:18:16] *** lrvick has quit IRC
[20:18:23] *** frem_ has joined #angularjs
[20:18:37] *** josh-k_ has joined #angularjs
[20:19:15] *** MJD has quit IRC
[20:19:27] *** ron1 has quit IRC
[20:20:06] *** baweaver has quit IRC
[20:20:20] *** mlpug has joined #angularjs
[20:20:37] *** stirlingw has quit IRC
[20:21:15] *** lrvick has joined #angularjs
[20:21:16] *** devhoag has joined #angularjs
[20:21:34] *** MJD has joined #angularjs
[20:21:43] *** frem__ has quit IRC
[20:21:44] *** sirkitree has joined #angularjs
[20:22:08] *** epantzar has quit IRC
[20:23:03] *** elrabin has joined #angularjs
[20:23:04] *** josh-k has quit IRC
[20:23:09] *** bayousoft has quit IRC
[20:23:13] *** jaydubya has joined #angularjs
[20:23:16] *** despai has joined #angularjs
[20:23:22] *** Zach has joined #angularjs
[20:23:27] *** tech2 has joined #angularjs
[20:23:36] *** cheef1 has quit IRC
[20:23:42] *** bayousoft has joined #angularjs
[20:23:46] *** Zach is now known as Guest64783
[20:23:46] *** IvailoStoianov has quit IRC
[20:23:54] *** Evanion_ has joined #angularjs
[20:24:04] *** ElysiumNet has joined #angularjs
[20:24:08] <Guest64783> Hello everyone
[20:24:12] *** despai has quit IRC
[20:24:29] *** ron1 has joined #angularjs
[20:24:43] *** samuel02 has quit IRC
[20:24:55] *** GPH|work has quit IRC
[20:25:06] *** Evanion has quit IRC
[20:25:07] *** Evanion_ is now known as Evanion
[20:25:15] *** bundledavid has joined #angularjs
[20:25:17] *** calmbird has joined #angularjs
[20:25:27] *** despai has joined #angularjs
[20:25:36] *** Sebastien-L has quit IRC
[20:25:39] *** Guest64783 has left #angularjs
[20:25:57] <devhoag> Guest52874: hello
[20:25:57] *** elyssonmr has quit IRC
[20:26:07] *** ma1 has joined #angularjs
[20:26:08] <calmbird> What should I use if I want to write module, that after injection I can use something like: "myAlert.show('') and <div> with allert will be shown
[20:26:15] *** mmitchell has joined #angularjs
[20:26:22] *** MaxV has joined #angularjs
[20:26:23] *** Zach11262014 has joined #angularjs
[20:26:32] <Zach11262014> Hello anyone there?
[20:26:36] <calmbird> yes
[20:26:36] <tjsail33> hello
[20:26:38] <ma1> can we use angularjs with python?
[20:26:44] <calmbird> Why not
[20:26:51] <calmbird> you can use with every backend
[20:26:53] <tjsail33> calmbird: have the .show() method append a div to the body with your alert
[20:27:01] <tjsail33> ma1: yes
[20:27:14] <ma1> @calmbird: GREAT
[20:27:20] *** pretzel80 has quit IRC
[20:27:25] <calmbird> tjsail33: yes but what should I use for that, provider, service etc
[20:27:27] <Zach11262014> I am having an issue with input type number not displaying a number properly (ie 1234.00)
[20:27:29] <ma1> @calmbird: any tutorial/sample etc?
[20:27:40] <Zach11262014> http://plnkr.co/edit/mcDlvf7ucjbPA4cvcWEG?p=preview
[20:27:54] <calmbird> ma1: Angular is client side
[20:28:04] *** cheef1 has joined #angularjs
[20:28:20] <calmbird> ma1: But mby there are some plugins for python i dont know :P
[20:28:30] <Zach11262014> Id like to have it display 1234.00, but it strips out the .00 ... even if I have it formatted as currency
[20:28:36] <tjsail33> ccalmbird: ah. i would use a factory
[20:28:47] <DanielSamuels> Does anyone have any thoughts on the question I posted?
[20:28:53] <calmbird> tjsail33: oh I can append divs from factory? hm
[20:28:54] *** mcastro has joined #angularjs
[20:29:07] *** bigorangemachine has quit IRC
[20:29:14] *** prbc has joined #angularjs
[20:29:18] *** sk87 has joined #angularjs
[20:29:38] *** a3gis has joined #angularjs
[20:29:42] <tjsail33> calmbird: actually not sure about that. a factory could be used to wrap something like SweetAlert though
[20:29:47] *** Aerospark has quit IRC
[20:29:48] *** alinouman has joined #angularjs
[20:30:05] *** seriema has joined #angularjs
[20:30:09] *** eyebraus_ has quit IRC
[20:30:15] <calmbird> tjsail33: You know, I would like to inject it to the controller, then use myAlert.show('something');
[20:30:24] *** bundledavid has quit IRC
[20:30:25] *** Aerospark has joined #angularjs
[20:31:00] <tjsail33> calmbird: yeah, a factory is probably your best bet. just reference standard jquery/js calls in the factory. theres no reason why that wont work
[20:31:00] <calmbird> tjsail33: or make yes no div dialog, that will callback yes or no function after
[20:31:13] <calmbird> tjsail33: ok thanx ^^
[20:31:16] *** diosney has joined #angularjs
[20:31:18] *** MJD has quit IRC
[20:31:24] <tjsail33> calmbird: no problem
[20:31:34] *** MJD has joined #angularjs
[20:31:35] *** despai has quit IRC
[20:31:44] *** diosney has quit IRC
[20:31:46] *** dweave has quit IRC
[20:31:53] <ma1> @clambird: Thanks. I will check
[20:32:09] <renlo> how would you guys load libraries using angular?
[20:32:11] <renlo> ex: d3
[20:32:23] *** xaxisx has joined #angularjs
[20:32:33] *** eyebraus_ has joined #angularjs
[20:32:36] <devhoag> renlo: you can wrap them in a factory
[20:32:45] <tjsail33> renlo: something like this? :http://cmaurer.github.io/angularjs-nvd3-directives/
[20:32:48] <renlo> how would you attach them to the dom though / fetch them
[20:33:01] <renlo> in an ideal world i would only want to load d3 if it is being used
[20:33:12] *** frem__ has joined #angularjs
[20:33:21] *** xaxisx has quit IRC
[20:33:28] *** omolin4 has joined #angularjs
[20:33:56] *** xaxisx has joined #angularjs
[20:34:17] *** diosney has joined #angularjs
[20:34:18] *** saucey has joined #angularjs
[20:34:24] *** seriema has quit IRC
[20:34:28] *** sk87 has quit IRC
[20:34:36] *** phaggood has joined #angularjs
[20:34:47] <phaggood> seeking CORS assistance
[20:35:02] <stephen> renlo, require.js
[20:35:59] *** baweaver has joined #angularjs
[20:36:01] <devhoag> renlo: yep, some form of lazyloading
[20:36:20] *** mennea has quit IRC
[20:36:28] <renlo> thank you guys
[20:36:54] <phaggood> Using $http.({methd:’POST’, url:myUrl, data: someJsonData, headers”{'Content-Type': 'application/json’…
[20:36:58] *** mennea has joined #angularjs
[20:37:04] *** frem_ has quit IRC
[20:37:09] *** cheef1 has quit IRC
[20:37:11] *** bayousoft has quit IRC
[20:37:19] *** Zach11262014 has left #angularjs
[20:37:27] <phaggood> When the request arrives at my sever, it’s turned into OPTIONS. Calling same url via Postman and it always arerive as POST
[20:37:31] *** ciwolsey has quit IRC
[20:37:51] *** bayousoft has joined #angularjs
[20:38:04] <devhoag> renlo: a quick google search for "angularjs lazy loading" yields some good results
[20:38:53] *** mcastro has quit IRC
[20:39:15] *** ma1 has quit IRC
[20:39:20] <renlo> thats great!
[20:39:25] *** mcastro has joined #angularjs
[20:39:43] *** thebigredgeek has joined #angularjs
[20:39:48] <tjsail33> phaggood: why not use $http.post(url,data).success(fn).error(fn)?
[20:39:51] *** despai has joined #angularjs
[20:40:04] *** robdubya has joined #angularjs
[20:40:16] <renlo> .finally?
[20:40:16] <phaggood> that was original syntax, still got POST turned into OPTIONS
[20:40:26] *** frem_ has joined #angularjs
[20:40:27] *** despai has quit IRC
[20:40:56] <tjsail33> interesting. seems like an issue with your server to me, as my posts are working fine
[20:40:56] *** ceej is now known as ceej_irccloud
[20:41:10] *** deanclkclk has joined #angularjs
[20:41:11] <phaggood> on server I have following headers
[20:41:18] *** punch has quit IRC
[20:41:36] <phaggood> Access-Control-Allow-Origin = “*”
[20:41:37] *** dweave has joined #angularjs
[20:41:51] <phaggood> Access-Control-Allow-Headers=“accept, origin, auth.content-type"
[20:42:08] <phaggood> Access-Control-Allow-Methods= “POST, GET, PUT, DELETE"
[20:42:40] *** doginal has quit IRC
[20:42:43] *** frem__ has quit IRC
[20:42:48] *** marcjs has quit IRC
[20:42:51] <devhoag> phaggood: ruled out interceptor mutation?
[20:43:51] *** adpirz has joined #angularjs
[20:44:26] <phaggood> just checked docs to see what that is; i have not set any interceptors in my config
[20:44:55] *** RobinBAwesome has quit IRC
[20:45:26] *** michaeltresseras has left #angularjs
[20:45:55] *** Aerospark has quit IRC
[20:45:56] <phaggood> I’m using 1.3 which this issue says has resolved the POST -> ORIGIN problem https://github.com/angular/angular.js/issues/1972
[20:46:18] *** JMZ_DMZ has quit IRC
[20:46:21] *** yandos has joined #angularjs
[20:46:36] *** epantzar has joined #angularjs
[20:46:48] *** ggrzybek has quit IRC
[20:46:55] *** IvailoStoianov has joined #angularjs
[20:46:58] <devhoag> phaggood: hmmm, try adding OPTIONS to your access-controll-allow-methods?
[20:47:07] *** Aerospark has joined #angularjs
[20:47:40] *** chintanparikh has joined #angularjs
[20:47:47] *** eirikb has joined #angularjs
[20:47:50] *** whunt has quit IRC
[20:48:25] *** CaseyThursday has quit IRC
[20:48:39] *** adpirz has quit IRC
[20:49:15] *** bayousoft has quit IRC
[20:49:23] <eirikb> Hi. What is the best way to make a form where each field is added dynamically inside a ng-repeat, and each field can be quite different? I'm currently using ng-include="myFieldType", and then each template use a separate controller, while this works it would be awesome to use directives - I just don't know how
[20:49:43] *** bayousoft has joined #angularjs
[20:49:43] *** getn_outchea has quit IRC
[20:50:28] *** lrvick has quit IRC
[20:50:39] <moogey> Has anybody with a large app noticed typing in text fields slow down?
[20:50:46] <phaggood> Added OPTIONS to Access-Control-Allow-Methods
[20:51:03] *** xaxisx has quit IRC
[20:51:14] *** Seich has quit IRC
[20:51:15] *** epantzar has quit IRC
[20:51:15] <phaggood> response REQUEST METHOD OPTIONS Status Code 401 Unauthorized
[20:51:29] *** juampy is now known as juampy_brb
[20:51:31] <phaggood> A ‘get; to this server works fine; it’s the posts that are barfing.
[20:51:57] *** omolin4 has quit IRC
[20:52:25] *** ProLoser has joined #angularjs
[20:52:40] *** Oddman has quit IRC
[20:52:48] *** bmac has quit IRC
[20:53:12] *** Oddman has joined #angularjs
[20:53:30] *** lrvick has joined #angularjs
[20:53:30] *** Ankhular has joined #angularjs
[20:54:09] *** richiebkr has quit IRC
[20:54:20] *** Seich has joined #angularjs
[20:54:35] *** startupality has quit IRC
[20:55:22] <Ankhular> Anyone here have experience with licensing/deployment of browser based apps?
[20:55:28] *** doginal has joined #angularjs
[20:56:03] *** sonicparke|bradm has joined #angularjs
[20:56:04] <moogey> Ankhular: Do not, sorry :(
[20:57:00] *** frem__ has joined #angularjs
[20:57:24] *** omolin4 has joined #angularjs
[20:57:34] *** marr has quit IRC
[20:57:48] *** Oddman has quit IRC
[20:57:57] *** leonbienek has quit IRC
[20:58:46] *** sacho_ has joined #angularjs
[20:59:06] *** frem___ has joined #angularjs
[20:59:49] <eirikb> Another option is to use a directive to add other directives, like app.diretive("hack", function($scope) { return { template: "<div " + $scope.type + " ></div>" }; });... Not very pretty, if it even will work
[21:00:12] *** frem_ has quit IRC
[21:00:15] <robdubya> phaggood you probably need to explicity respond 200/OK to the options request
[21:00:44] *** yts has joined #angularjs
[21:01:18] *** bayousoft has quit IRC
[21:01:24] <robdubya> basically OPTIONS is saying "hey i'm about to do something dangerous (that's your put/post), is it OK for me to do it
[21:01:37] *** sacho has quit IRC
[21:01:54] *** bayousoft has joined #angularjs
[21:01:58] *** Seich has quit IRC
[21:02:24] *** frem__ has quit IRC
[21:02:54] *** umib0zu has joined #angularjs
[21:02:59] *** frem_ has joined #angularjs
[21:03:09] *** yandos has quit IRC
[21:03:21] *** Seich has joined #angularjs
[21:03:41] *** Oddman has joined #angularjs
[21:04:03] *** danecando has quit IRC
[21:04:34] <phaggood> yep I have HTTPResponse=ok and i explicity set response code = 200. same resonse
[21:04:36] *** Aerospark has quit IRC
[21:04:42] *** stephen has quit IRC
[21:05:31] *** devhoag has quit IRC
[21:05:40] *** frem___ has quit IRC
[21:05:52] *** baweaver has quit IRC
[21:06:30] *** noodle has left #angularjs
[21:06:40] *** mennea has quit IRC
[21:07:01] *** mennea has joined #angularjs
[21:07:23] <phaggood> it looks like i have to change my server - http://www.html5rocks.com/en/tutorials/cors/#toc-handling-a-not-so-simple-request
[21:07:33] *** frem__ has joined #angularjs
[21:07:39] *** memento_ has joined #angularjs
[21:07:55] *** djam90 has joined #angularjs
[21:07:59] <phaggood> it explains why get works but ‘not so simple’ requests like post with content=application/json do not.
[21:08:02] *** yandos has joined #angularjs
[21:08:06] *** Seich has quit IRC
[21:08:06] *** sirkitree has quit IRC
[21:08:10] *** renlo has quit IRC
[21:08:52] *** Seich has joined #angularjs
[21:08:58] *** test_ has joined #angularjs
[21:09:56] *** mary5030 has quit IRC
[21:10:01] *** zanea|away is now known as zanea
[21:10:01] *** lrvick has quit IRC
[21:10:16] *** platonic has joined #angularjs
[21:10:18] *** bayousoft has quit IRC
[21:10:18] *** sirkitree has joined #angularjs
[21:10:24] *** frem_ has quit IRC
[21:10:25] *** lrvick has joined #angularjs
[21:10:54] *** bayousoft has joined #angularjs
[21:10:54] *** prbc has quit IRC
[21:11:06] *** ybit3 has joined #angularjs
[21:11:06] *** yandos has quit IRC
[21:11:23] *** dhcar is now known as dhcar_AFK
[21:11:39] *** kanzure has joined #angularjs
[21:12:16] *** superkhau has left #angularjs
[21:12:20] *** Aerospark has joined #angularjs
[21:12:25] *** elrabin has quit IRC
[21:13:04] *** whitebook has quit IRC
[21:13:22] *** bayousoft has quit IRC
[21:13:51] <beckyconning_> so annoying when your directives fail silently and just make stuff not appear~
[21:14:04] *** bayousoft has joined #angularjs
[21:14:14] *** skyx_ has joined #angularjs
[21:14:31] *** atomi has quit IRC
[21:14:49] *** Shai-Tan has joined #angularjs
[21:15:00] *** s00pcan has quit IRC
[21:16:27] *** whitebook has joined #angularjs
[21:16:36] *** atomiccc has quit IRC
[21:16:56] *** atomi has joined #angularjs
[21:17:41] *** one0one has joined #angularjs
[21:18:18] <sajt> Hello, how can I make a validator what is check one field is filled from two?
[21:19:45] *** bmac has joined #angularjs
[21:20:31] *** doug64k has joined #angularjs
[21:21:22] *** JERE has joined #angularjs
[21:21:36] *** chabier has joined #angularjs
[21:21:58] *** mcastro has quit IRC
[21:22:17] *** az7ar is now known as az7ar_away
[21:22:24] *** omolin4 has quit IRC
[21:22:38] *** cuebix-wk has quit IRC
[21:22:54] *** omolin4 has joined #angularjs
[21:22:55] *** SKZC has quit IRC
[21:23:44] *** IJNX has joined #angularjs
[21:23:50] *** adpirz has joined #angularjs
[21:24:15] *** nemothekid has joined #angularjs
[21:24:23] *** instence has joined #angularjs
[21:24:40] *** instence_ has quit IRC
[21:24:43] *** dhcar_AFK is now known as dhcar
[21:25:09] *** jonr22 has joined #angularjs
[21:25:15] *** samuel02 has joined #angularjs
[21:25:17] *** Guest22 has joined #angularjs
[21:25:25] *** Rebirth has joined #angularjs
[21:26:53] *** kwaledesign has joined #angularjs
[21:27:36] *** e0ipso is now known as e0ipso|away
[21:27:40] *** fataldecrease has quit IRC
[21:28:16] *** IvailoStoianov has quit IRC
[21:28:20] *** ybit3 has quit IRC
[21:28:20] *** kanzure has quit IRC
[21:28:53] *** diosney has quit IRC
[21:29:13] *** IvailoStoianov has joined #angularjs
[21:29:57] *** jonr22 has quit IRC
[21:30:06] *** frem_ has joined #angularjs
[21:30:15] *** lrvick has quit IRC
[21:30:28] *** Nijikokun has quit IRC
[21:30:31] *** lrvick has joined #angularjs
[21:30:32] *** ivanskie has joined #angularjs
[21:31:26] <ivanskie> i can't figure this out. I'm trying the angular seed.. and i have centos6.5 64. i'm logged in as root. trying to run npm install
[21:31:35] <ivanskie> it fails with can't run in working directory..
[21:31:38] *** Rutix has quit IRC
[21:31:43] *** frem___ has joined #angularjs
[21:32:17] <ivanskie> it doesn't run in normal user either
[21:32:55] <ivanskie> when trying to run from regular user i get "npm ERR! Error: EACCES, unlink '/srv/iApp/angular/node_modules/.bin/r.js'
[21:32:55] <ivanskie> "
[21:32:59] *** epantzar has joined #angularjs
[21:33:12] *** frem__ has quit IRC
[21:33:22] *** rho has quit IRC
[21:33:50] *** deez79 has joined #angularjs
[21:34:40] *** frem_ has quit IRC
[21:34:55] *** richiebkr has joined #angularjs
[21:34:57] <themime> beckyconning_: god i have similar issue right now. click icon -> slide out appears, but i have to add a special class my designer requested buuuuut none of it works. but it works when i use a plunker. tried add/remove class manually in directive AND ng-class
[21:35:06] *** mmealling has quit IRC
[21:35:31] *** ArtyomTrityak has joined #angularjs
[21:35:35] <themime> i have a log before and after, and its adding the class but then its like it disappears after the directive method ends
[21:35:43] *** ngbot has joined #angularjs
[21:35:43] <ngbot> [angular.js] lgalfaso pushed 1 new commit to master: http://git.io/pxyJhw
[21:35:43] <ngbot> angular.js/master 2ec8d1f Lucas Galfaso: fix(linky): encode all double quotes when serializing email addresses...
[21:35:43] *** ngbot has left #angularjs
[21:36:09] *** jonr22 has joined #angularjs
[21:36:22] *** juampy_brb has quit IRC
[21:36:40] *** mennea has quit IRC
[21:36:50] *** ngbot has joined #angularjs
[21:36:51] <ngbot> [angular.js] caitp pushed 1 new commit to master: http://git.io/mPINdQ
[21:36:51] <ngbot> angular.js/master 8f05ca5 Caitlin Potter: style(*): IE is a real browser, and chakra is pretty solid...
[21:36:51] *** ngbot has left #angularjs
[21:37:03] *** marcjs has joined #angularjs
[21:37:17] *** mennea has joined #angularjs
[21:37:23] *** epantzar has quit IRC
[21:37:39] *** bundledavid has joined #angularjs
[21:38:32] *** lite_ has joined #angularjs
[21:38:42] *** darrin has quit IRC
[21:38:50] *** mmitchell has quit IRC
[21:39:51] *** helen_ has joined #angularjs
[21:39:53] *** ngbot has joined #angularjs
[21:39:53] <ngbot> [angular.js] caitp pushed 1 new commit to v1.2.x: http://git.io/N--d9Q
[21:39:53] <ngbot> angular.js/v1.2.x 4c218de Caitlin Potter: style(*): IE is a real browser, and chakra is pretty solid...
[21:39:53] *** ngbot has left #angularjs
[21:40:03] *** mary5030 has joined #angularjs
[21:40:06] *** thomasreggi has joined #angularjs
[21:40:29] *** mmealling has joined #angularjs
[21:41:13] *** mmealling has quit IRC
[21:41:49] *** VeeWee has quit IRC
[21:41:58] *** bundledavid has quit IRC
[21:42:34] *** ArtyomTrityak has quit IRC
[21:43:02] *** ArtyomTrityak has joined #angularjs
[21:43:12] <eirikb> I'm not very good at this, here is the best I can do: http://plnkr.co/edit/p1dF6BaiIoAmDFA29Qfu?p=preview I don't think calling $compile is a good thing :(
[21:43:18] *** Oddman has quit IRC
[21:43:36] *** mlpug has quit IRC
[21:44:08] *** davek_ has joined #angularjs
[21:44:08] *** davek_ has joined #angularjs
[21:44:21] *** mccarrontr1ck has quit IRC
[21:45:28] *** thebigredgeek has quit IRC
[21:45:49] *** bkuberek has joined #angularjs
[21:46:07] *** jonathanpglick has quit IRC
[21:46:11] *** IvailoStoianov has quit IRC
[21:46:23] *** bayousoft has quit IRC
[21:47:06] *** bayousoft has joined #angularjs
[21:48:01] *** CHC has quit IRC
[21:48:24] *** apavlovic has joined #angularjs
[21:48:32] *** rho has joined #angularjs
[21:48:32] *** rho has joined #angularjs
[21:48:38] *** apavlovic has quit IRC
[21:48:56] *** spaceonline has joined #angularjs
[21:49:43] *** cheef1 has joined #angularjs
[21:50:08] *** mkc has quit IRC
[21:50:26] *** mokush has joined #angularjs
[21:50:31] *** mjw56 has joined #angularjs
[21:50:35] *** marcjs_ has joined #angularjs
[21:51:31] *** bbankes has joined #angularjs
[21:51:45] *** thebigredgeek has joined #angularjs
[21:51:50] *** jonr22 has quit IRC
[21:51:58] *** roven has joined #angularjs
[21:52:07] *** chabier has quit IRC
[21:52:17] *** samuel02 has quit IRC
[21:52:21] *** trend has quit IRC
[21:52:33] *** trolling42 has quit IRC
[21:53:21] *** owl7 has quit IRC
[21:53:51] *** spaceonline has quit IRC
[21:54:08] *** marcjs has quit IRC
[21:54:08] *** JMZ_DMZ has joined #angularjs
[21:54:21] *** AlSquirrel has quit IRC
[21:55:13] *** phishy has joined #angularjs
[21:55:39] *** chabier has joined #angularjs
[21:55:39] *** fabiofb has joined #angularjs
[21:55:54] *** robksawyer has quit IRC
[21:55:59] *** PrinceAMD has quit IRC
[21:56:03] *** trend has joined #angularjs
[21:56:17] *** fedenunez1 has quit IRC
[21:56:40] <phaggood> my cors appears to be failing comlplete due to preflight response. unfortunately I can’t lcate a consistent response on how to fix it
[21:56:45] *** roven has quit IRC
[21:56:46] *** owl7 has joined #angularjs
[21:56:52] <chovy2> http://youtu.be/gE4hyIfUD-A
[21:57:05] *** spatialbrew has joined #angularjs
[21:57:05] <chovy2> live angular training
[21:57:14] *** djam90 has quit IRC
[21:57:53] *** dacuca has joined #angularjs
[21:58:14] *** whitebook has quit IRC
[21:58:42] *** saucey has quit IRC
[21:59:22] *** Oddman has joined #angularjs
[22:00:43] *** thebigredgeek has quit IRC
[22:01:39] *** stirlingw has joined #angularjs
[22:01:48] *** iribarne has quit IRC
[22:01:49] *** alinouman has quit IRC
[22:02:15] <ivanskie> nice
[22:02:36] *** sajt has quit IRC
[22:03:04] <ivanskie> i'm a n00b at this. I'm trying to get angular-seed going... and its failing on me.
[22:03:23] <ivanskie> someone else has had a very similar issue: https://github.com/angular/angular-seed/issues/227
[22:03:30] <ivanskie> but.. the solution that helped him, isnt helping me.
[22:03:34] *** iribarne has joined #angularjs
[22:03:47] *** fabiofb has quit IRC
[22:03:54] <ivanskie> when i do npm start.. it complains that bower install can't run in working directory.
[22:04:06] <ivanskie> but i was able to run it and all bower-components stuff is in the folder.
[22:04:10] *** deez79 has quit IRC
[22:04:13] *** kwaledesign has quit IRC
[22:04:16] *** fabiofb has joined #angularjs
[22:04:29] <ivanskie> no firewall.. and http-server.. with port 8000.. doesn't load anything up. just says unable to access the entwork
[22:04:49] *** deez79 has joined #angularjs
[22:05:02] <ivanskie> so i'm not sure what is going on
[22:05:17] *** evanjs has quit IRC
[22:05:23] <ivanskie> could someone please help?
[22:05:35] *** test_ has quit IRC
[22:05:43] *** nemothekid has quit IRC
[22:05:57] *** dhrami has quit IRC
[22:06:23] *** livingstn has joined #angularjs
[22:06:36] *** ingsoc has quit IRC
[22:06:58] *** mennea has quit IRC
[22:07:01] *** sahbeewah has joined #angularjs
[22:07:13] *** caitp has quit IRC
[22:07:14] *** frem_ has joined #angularjs
[22:07:15] *** mennea has joined #angularjs
[22:07:18] *** tech2 has quit IRC
[22:07:52] *** threesixes has joined #angularjs
[22:07:56] *** mennea has quit IRC
[22:08:25] *** gurke_ has quit IRC
[22:08:50] *** deez79 has quit IRC
[22:08:59] *** larsgk has quit IRC
[22:09:11] *** zB0hs has quit IRC
[22:09:59] *** D-Boy has quit IRC
[22:10:06] *** frem__ has joined #angularjs
[22:10:32] *** marcjs__ has joined #angularjs
[22:10:44] *** frem___ has quit IRC
[22:11:13] *** marcjs__ has quit IRC
[22:11:26] *** marcjs_ has quit IRC
[22:11:35] *** deez79 has joined #angularjs
[22:11:57] *** Geertje123_ has quit IRC
[22:12:27] *** mennea has joined #angularjs
[22:12:38] *** despai has joined #angularjs
[22:13:00] *** mdedetrich has joined #angularjs
[22:13:17] *** frem_ has quit IRC
[22:13:18] *** JohnBat26 has quit IRC
[22:13:45] *** renlo has joined #angularjs
[22:14:05] *** caitp has joined #angularjs
[22:14:09] *** cheef1 has quit IRC
[22:14:48] *** DuelShark has joined #angularjs
[22:15:22] *** DuelShark has joined #angularjs
[22:15:37] *** thebigredgeek has joined #angularjs
[22:15:52] *** sari1 has quit IRC
[22:15:58] *** omolin4 has quit IRC
[22:16:09] *** Obelich has joined #angularjs
[22:16:56] <Obelich> hiyas
[22:17:04] <Obelich> :)
[22:17:14] *** despai has quit IRC
[22:18:04] *** patrick99e99 has quit IRC
[22:18:12] *** robksawyer has joined #angularjs
[22:18:16] *** marc_v92 has joined #angularjs
[22:18:16] *** TheAceOfHearts has quit IRC
[22:18:30] *** mokush has quit IRC
[22:18:38] *** lrvick has quit IRC
[22:18:38] *** lewdev has quit IRC
[22:18:56] *** mokush has joined #angularjs
[22:19:53] <Obelich> im trying to render html in ng-repeat here are my gist
[22:19:53] <Obelich> https://gist.github.com/obelich/0c4e2318f6fa8469572d
[22:20:31] *** omolin4 has joined #angularjs
[22:20:46] *** cotko has quit IRC
[22:21:47] *** lrvick has joined #angularjs
[22:22:10] *** ausumpossum has joined #angularjs
[22:23:04] *** Evanion has quit IRC
[22:23:26] *** bayousoft has quit IRC
[22:23:37] *** baweaver has joined #angularjs
[22:23:53] <pontiki> what problem are you seeing, ivanskie ?
[22:24:00] *** bayousoft has joined #angularjs
[22:24:26] <phaggood> CORS!! (shakes fist)
[22:24:30] *** bbankes_ has joined #angularjs
[22:24:32] <pontiki> i had some problems where i did some sudo global installs, but it created root-owned subdirectories in my user's $HOME/.npm/ directory, and regular project installs failed
[22:24:41] <ivanskie> well i'm trying the angular-sails thing with angular seed
[22:24:47] <pontiki> i was told (here) to use sudo -H instead of plain sudo
[22:24:56] <pontiki> i got that.
[22:24:57] <knownasilya> what's the best way to trigger an update if I have an array of items and a property changes via a socket event or something, how to trigger an update of another property for that item
[22:24:58] *** bbankes__ has joined #angularjs
[22:25:00] <ivanskie> and npm install would fail. bower didn't want to run in working directory
[22:25:08] <ivanskie> bower install*
[22:25:17] <pontiki> so, does the info i just gave help at all?
[22:25:28] <ivanskie> i did bower install outside of the npm install script there.. and it installed okay with --allow-root flag.
[22:25:34] <knownasilya> so jobs = [{ status: 'hi' }], status is changed to 'bye', and I have a css class in the html that needs to change based on that status key
[22:25:35] <pontiki> i.e. check your $HOME/.npm directory to see if anything is owned by root
[22:25:53] *** rishy has quit IRC
[22:25:56] *** DuelShark has quit IRC
[22:26:06] <ivanskie> mk
[22:26:25] *** iribarne_ has joined #angularjs
[22:27:04] *** Sadi has joined #angularjs
[22:27:14] *** edy_ has joined #angularjs
[22:27:14] *** lewdev has joined #angularjs
[22:27:22] *** caitp has quit IRC
[22:27:22] <stillbourne> Obelich, in order for ng-repeat to work you need an array of objects but you have only provided an object
[22:27:47] *** nandoflorestan has quit IRC
[22:27:56] *** technickul has joined #angularjs
[22:28:05] <stillbourne> at least thats what I think you have done
[22:28:13] *** moritzs has quit IRC
[22:28:28] *** bbankes has quit IRC
[22:28:38] *** D-Boy has joined #angularjs
[22:28:42] *** bbankes_ has quit IRC
[22:28:47] <Grokling> An object of objects will work too, but with slightly different syntax.
[22:28:48] *** thebigredgeek has quit IRC
[22:29:03] <Grokling> Also, no guarantee of order.
[22:29:16] *** edy has quit IRC
[22:29:39] *** cheef1 has joined #angularjs
[22:29:53] *** iribarne has quit IRC
[22:29:53] *** iribarne_ is now known as iribarne
[22:29:58] <stillbourne> phaggood, JSONP not working?
[22:30:02] <Obelich> stillbourne: i only paste the part im using :P no put all the controller and services i make this for rails :P
[22:30:12] *** sonicparke|bradm has quit IRC
[22:30:34] *** despai has joined #angularjs
[22:30:41] <Obelich> stillbourne: give a sec to paste in gist complete
[22:30:58] *** mtsr has quit IRC
[22:30:58] <ioudas> Can anyone tell me how to escape a value such as " or ' in a ng-show/hide?
[22:31:07] <Grokling> Obelich: Better to do it in a plunker..
[22:31:07] <chintanparikh> Hey people, quick question. On my app, there are three things you can do. List all videos, search for a video, or create a new video. Should I have seperate controllers for all 3 things?
[22:31:31] <Grokling> chintanparikh: Do you have three separate 'views' for those things?
[22:31:32] <stillbourne> chintanparikh, yes
[22:31:37] *** IJNX has quit IRC
[22:31:38] <Obelich> stillbourne: https://gist.github.com/obelich/0c4e2318f6fa8469572d
[22:31:44] *** doodlehaus has quit IRC
[22:31:48] *** frem_ has joined #angularjs
[22:31:55] *** dweave has quit IRC
[22:31:57] <knownasilya> is there a good way to find the ng-repeat controller from a parent controlle rif you only have the data for that controller
[22:32:07] <chintanparikh> Grokling: I have one base view with two sections. The top is the search and should be there for every page. The bottom changes based on the state in ui-router
[22:32:16] *** Sadi has quit IRC
[22:32:19] *** htmelvis has quit IRC
[22:32:22] *** aks has quit IRC
[22:32:27] *** stephen has joined #angularjs
[22:32:47] *** ProLoser has quit IRC
[22:32:51] <Grokling> chintanparikh: Usually, you'd use one controller per state.
[22:32:57] <stillbourne> chintanparikh, you should have 2 controllers list/search should be one view/controller with a filter on the repeater
[22:33:17] *** omolin4 has quit IRC
[22:33:19] <stillbourne> create should be a seperate controller
[22:33:27] <chintanparikh> stillbourne: The search is done through the backend though
[22:33:30] *** ivanskie has quit IRC
[22:33:36] <stillbourne> doesn't matter
[22:34:15] <chintanparikh> stillbourne: Hm okay. Thanks! Also, I’ve got a getInclude() method in there - it figures out whether I need the include the list of videos, or the create form. Where should that be?
[22:34:19] <stillbourne> you can create a search() function that uses the $resource.query()
[22:34:21] *** johnstorey has joined #angularjs
[22:34:23] *** dannyc has joined #angularjs
[22:34:42] *** frem__ has quit IRC
[22:35:14] *** omolin4 has joined #angularjs
[22:35:49] <stillbourne> chintanparikh, your router should know the state that the view is in to determine if it needs to use list or create
[22:36:03] <stillbourne> for the controller
[22:36:25] <stillbourne> Obelich, let me look real quick here
[22:36:37] <burzum2> is there any way to improve this so that the service would return the direct value instead of a promise? http://pastebin.com/UNhYr79E I dislike that I have to repeat resolving promises over and over in my controllers.
[22:37:02] *** lrvick has quit IRC
[22:37:02] *** e0ipso|away has quit IRC
[22:37:17] *** Nivag_ has joined #angularjs
[22:37:30] *** dannyc_ has joined #angularjs
[22:37:40] <ioudas> Does anyone know how to customize ionic loading to cancel a promise chain with a click of a button?
[22:37:44] *** ivanskie has joined #angularjs
[22:37:49] *** jonathanpglick has joined #angularjs
[22:37:55] *** dannyc has quit IRC
[22:38:22] <stillbourne> Obelich, this is difficult to read because I don't know spanish
[22:38:31] *** omolin4 has quit IRC
[22:38:44] *** Nijikokun has joined #angularjs
[22:38:48] *** livingstn has quit IRC
[22:38:58] *** dannyc_ has quit IRC
[22:39:15] *** dannyc has joined #angularjs
[22:39:32] <chintanparikh> stillbourne: So right now I have a VideosController with the method getInclude() that looks like https://gist.github.com/chintanparikh/e4fd69bfaecb42224b3b
[22:39:36] <chintanparikh> What would I do with it?
[22:39:47] *** Nivag_ has quit IRC
[22:39:48] *** DanielSamuels has quit IRC
[22:39:58] *** punch has joined #angularjs
[22:39:58] *** lrvick has joined #angularjs
[22:40:00] *** phaggood has quit IRC
[22:40:06] <stillbourne> However you should move these CRUD operations into a service you have get set delete that should be in a service module.
[22:40:11] <Obelich> stillbourne: sorry im only try to insert html i make a object that have html inside
[22:40:16] *** Nivag_ has joined #angularjs
[22:40:42] *** mdedetrich has quit IRC
[22:41:23] <stillbourne> Obelich, ahh well, its hard to tell whats going on.
[22:41:26] *** e0ipso|away has joined #angularjs
[22:41:26] *** shackleford has quit IRC
[22:41:37] *** e0ipso|away is now known as e0ipso
[22:42:06] <stillbourne> chintanparikh, why is that logic not in your route module
[22:42:11] *** t1mmen has quit IRC
[22:42:19] <stillbourne> https://docs.angularjs.org/api/ngRoute
[22:42:33] <stillbourne> https://docs.angularjs.org/api/ngRoute/provider/$routeProvider
[22:42:51] *** BahamutWC|Work has quit IRC
[22:42:51] <stillbourne> https://www.youtube.com/watch?v=10BhkHi6DC4
[22:42:52] *** spatialbrew has quit IRC
[22:43:11] *** phaggood has joined #angularjs
[22:43:38] <lebster> when i refresh my page, sometimes my page shows my default select list values and, and sometimes it doesnt ( default values populated by an $http call). the select lists options are also loaded by an $http call but in a service init call. I assume maybe the promise or w/e on the default values is being populated before the promoise with the options is
[22:43:38] <lebster> populated? if so how do i fix this
[22:43:55] *** a3gis has quit IRC
[22:43:58] *** JMZ_DMZ has quit IRC
[22:44:08] *** whunt has joined #angularjs
[22:44:36] *** adpirz has quit IRC
[22:45:00] <chintanparikh> stillbourne: Using ui-router, but I’m assuming I can put it in there too
[22:45:23] <stillbourne> lebster, if thats the case then you need to load the options first and then use a callback to load the select lists look at .then() .promise and $q
[22:45:34] *** saucey has joined #angularjs
[22:45:57] <stillbourne> yes ui-router is better but yes you need to have that logic in the router not your controller
[22:46:16] <stillbourne> https://www.youtube.com/watch?v=QETUuZ27N0w
[22:47:13] <lebster> stillbourne: right now i load all the options when the angular app starts, so it only has to load once. is there a way to make the controllers wait until all the services are fully loaded?
[22:47:59] <stillbourne> lebster, for example use $http.success() for the options to chainload the dropdown selections
[22:48:00] *** jlebrech has joined #angularjs
[22:48:28] *** richiebkr has quit IRC
[22:48:35] <stillbourne> but do is as a call back
[22:48:42] <stephen> Has anyone seen a wierd rendering bug in Chrome where a modal backdrop (Opaque div) and a modal with a transition on it, and the modal looks like it's covered over by the backdrop?
[22:48:44] *** jareddlc has quit IRC
[22:49:03] *** sahbeewah has quit IRC
[22:49:06] *** RobinBAwesome has joined #angularjs
[22:50:12] <stillbourne> stephen, that happens sometimes with poorly designed modal directives, are you using ui-bootstrap or all you using bootstrap.js native?
[22:50:35] <stephen> Actually, this isn't angular specific.
[22:50:39] *** roven has joined #angularjs
[22:50:46] <stillbourne> ##bootstrap
[22:50:51] <stephen> The project its happening on uses knockout
[22:50:56] <lebster> stillbourne: i load the list when angular instantiates the service though. and in my controller i just use that services list from the dropdown values
[22:51:01] <stephen> bootstrap, yes
[22:51:18] *** MaxV has quit IRC
[22:51:18] *** bmac has quit IRC
[22:51:51] *** BillCriswell has quit IRC
[22:52:20] *** marr has joined #angularjs
[22:52:28] <stillbourne> ok so you have a select box and the options are desendant objects of the selectbox?
[22:52:30] *** bayousoft has quit IRC
[22:52:39] <lebster> stillbourne: https://www.irccloud.com/pastebin/uNhO0R2S
[22:52:45] *** jlebrech has quit IRC
[22:53:02] *** phuh has joined #angularjs
[22:53:55] *** owl7 has quit IRC
[22:54:04] *** ngbot has joined #angularjs
[22:54:05] <ngbot> [angular.js] petebacondarwin pushed 1 new commit to master: http://git.io/5guC0A
[22:54:05] <ngbot> angular.js/master 1e6a5b2 Caitlin Potter: style(*): IE9 does still have issues with apply on some native functions...
[22:54:05] *** ngbot has left #angularjs
[22:54:05] *** webthingee is now known as webthignee|biab
[22:54:14] <stillbourne> APIUrls is a service that gets a url from the server I am assuming
[22:54:14] *** bayousoft has joined #angularjs
[22:54:30] *** bayousoft has quit IRC
[22:54:37] <lebster> my stillbourne and in my controller i do ctrl.departments = departmentListService.departments;
[22:55:00] *** chintanparikh has quit IRC
[22:55:00] *** bayousoft has joined #angularjs
[22:55:22] *** Siecje has left #angularjs
[22:55:59] *** bmac has joined #angularjs
[22:56:28] <lebster> i see the problem, i should just do ctrl.departmentService = departmentListService;
[22:56:33] *** nemothekid has joined #angularjs
[22:56:46] *** dannyc has quit IRC
[22:56:57] *** punch has quit IRC
[22:57:04] *** BigMac has joined #angularjs
[22:57:44] *** richiebkr has joined #angularjs
[22:57:48] *** katsh has quit IRC
[22:58:25] *** rileylark has quit IRC
[22:59:18] *** punch has joined #angularjs
[23:00:25] <lebster> nvm that didnt work lol
[23:00:44] <tjsail33> anyone have a good way to run a bunch of $http requests asyncronously and then run a callback when they all complete?
[23:02:03] *** phaggood has quit IRC
[23:02:18] *** bbankes__ has quit IRC
[23:02:30] <stillbourne> write your callback as a seperate function run it inside $http.get().success(function(data, status, headers, config) {
[23:02:30] <stillbourne> callbackFunctionGoesHere(data)})
[23:02:31] <jcool> can we apply condition between 2 elements generated from same directives?
[23:03:08] <jcool> I have my datepicker being generated by directive. I need to impose certain restrictions on certain datepciker. can we do that?
[23:03:12] *** jacuqesdancona_ has quit IRC
[23:03:19] *** devhoag has joined #angularjs
[23:03:23] *** Sadi has joined #angularjs
[23:03:36] *** umib0zu has quit IRC
[23:03:48] *** jacuqesdancona_ has joined #angularjs
[23:04:20] *** chintanparikh has joined #angularjs
[23:04:47] <stillbourne> sorry my directives knowlege is not very good.
[23:05:01] *** e0ipso has quit IRC
[23:05:48] <Grokling> tjsail33: $q.all(arrayOfHttpPromises).then(function(result){doStuffWithResult; return result;})
[23:05:58] *** e0ipso|away has joined #angularjs
[23:06:04] <themime> tjsail33: $q.all
[23:06:06] <themime> haha
[23:06:10] *** lrvick has quit IRC
[23:06:14] *** e0ipso|away is now known as e0ipso
[23:06:20] *** glassir has quit IRC
[23:06:26] <tjsail33> yeah, i tried that but it didnt work for be because i want to do more stuff in the $q.all functions
[23:06:30] <stillbourne> now that is cool I didn't know you could do that
[23:06:46] *** stephen has quit IRC
[23:06:51] *** JSONB has quit IRC
[23:06:51] <Grokling> tjsail33: You can do however much stuff you want in there..
[23:06:58] <themime> tjsail33: you can chain requests. $http returns a promise so you can so $http.get().then($http.get().then() etc
[23:07:01] *** iamjmw has joined #angularjs
[23:07:08] <jcool> stillbourne, np :)
[23:07:17] <tjsail33> alright, i should probably study up on promises haha.
[23:07:20] *** lrvick has joined #angularjs
[23:07:30] <themime> tjsail33: they are very useful and fun
[23:07:38] *** caitp has joined #angularjs
[23:07:38] <Grokling> You can also chain stuff onto your http request promises before they get into the array you're feeding to $q.all
[23:08:02] <tjsail33> yeah, i want to pre-process some data and then send it off
[23:08:12] *** jacuqesdancona_ has quit IRC
[23:08:47] <Grokling> Also, I recommend using promise.then() rather than promise.success() because .then returns a new promise while .success returns the old one. .then gives you better chaining, and is more standard.
[23:08:54] <themime> ^
[23:08:59] *** jonr22 has joined #angularjs
[23:09:08] <tjsail33> alright cool, thanks
[23:09:39] <Grokling> tjsail33: bust out a plunker, and we can help you get your head around it.
[23:09:56] <themime> plunkers are great
[23:10:15] <stillbourne> I wish people used them more often
[23:10:35] <stillbourne> instead of gists or pastebins
[23:10:36] *** ATB has joined #angularjs
[23:10:57] *** mennea has quit IRC
[23:11:08] <tjsail33> i think i figured it out, thanks though!
[23:11:10] *** t1mmen has joined #angularjs
[23:11:29] <ATB> Hello, I have a site with an Angular front end, and I want to start serving the data from sqlite. Looking for advice on how to connect them.
[23:11:45] *** iamjmw has quit IRC
[23:11:51] <Fuzzy> do it in services
[23:12:12] *** Sadi has quit IRC
[23:12:23] *** s3shs has joined #angularjs
[23:12:43] *** devhoag has quit IRC
[23:13:16] <jcool> I am looking a way to optimize my app. I have been playing with it for past 20 days and now my script tags and routes have increased to a greater extent so have my templates
[23:13:18] *** whitebook has joined #angularjs
[23:13:51] <jcool> How can we reduce loading time for templates and scripts? since there are about 20-25 script calls being made
[23:14:03] <jcool> on initial page load.
[23:14:12] <tjsail33> use SPDY or minify them all into one file
[23:14:17] *** cacts has quit IRC
[23:14:25] <tjsail33> you can concat js/css files
[23:14:26] *** Sky[x] has joined #angularjs
[23:14:27] *** skyx_ has quit IRC
[23:14:56] *** loverajoel has quit IRC
[23:15:03] <ATB> All the tutorials I've found bring up other tools like flask, or Jaystack, and get really complicated, when I just need to pull data out of the existing db.
[23:15:13] *** moogey is now known as somethingElse
[23:15:14] <jcool> tjsail33, is it good to use templateCache for template caching? will it affect perfomance anyhow?
[23:15:19] *** somethingElse is now known as moogey
[23:15:22] *** lrvick has quit IRC
[23:15:43] *** apertoire has joined #angularjs
[23:15:45] <tjsail33> it'll reduce the number of calls to your server? i dont really understand your questino. caching is never really a bad thing haha
[23:15:49] *** robdubya has quit IRC
[23:16:02] *** ChadStrat has joined #angularjs
[23:16:25] <jcool> tjsail33, silly one.
[23:16:28] <jcool> my bad.
[23:16:31] *** dsdeiz has joined #angularjs
[23:16:43] *** andrew9183 has joined #angularjs
[23:16:46] <jcool> caching is bad in terms of api call
[23:16:53] <andrew9183> anyone use ui router here ?
[23:17:01] <jcool> andern, yes
[23:17:07] <jcool> sorry.
[23:17:08] *** bkuberek_ has joined #angularjs
[23:17:11] <jcool> andrew9183, yes
[23:17:21] *** busticated has quit IRC
[23:17:38] *** lrvick has joined #angularjs
[23:18:30] *** bkuberek has quit IRC
[23:19:20] *** mokush has quit IRC
[23:19:58] *** MJD has quit IRC
[23:20:01] *** eBureau has quit IRC
[23:20:02] <ivanskie> anyone tried angular-sails yet?
[23:20:05] *** bbankes has joined #angularjs
[23:20:06] <andrew9183> cool, any idea why this would be not working properly
[23:20:06] <andrew9183> https://gist.github.com/andrewho83/16e6c47983d87d340609
[23:20:09] <ivanskie> i can't get it to work
[23:20:13] *** MJD has joined #angularjs
[23:20:16] <andrew9183> my campaigns.new state keeps hitting campaigns.edit
[23:20:28] *** cboden has quit IRC
[23:20:35] *** GeneralChoomin has quit IRC
[23:20:52] *** helen_ has quit IRC
[23:21:08] *** Oddman_ has joined #angularjs
[23:21:40] *** qdk has quit IRC
[23:21:49] *** vonnegut has quit IRC
[23:21:52] <Grokling> andrew9183: I had something like that happen a few days back. Turned out to be click propagation in my html. Nothing to do with ui-router. Drove me crazy for half a day!
[23:22:06] <andrew9183> oh dang
[23:22:17] <andrew9183> i hate these kind of time wasters
[23:22:19] *** evanjs has joined #angularjs
[23:22:45] <beckyconning_> ahhh why did i learn vim?? i keep typing hjkl$*cwe into text boxes : P
[23:23:11] <ctanga> Stop event propegation: http://pastebin.com/j59ZVH6V
[23:23:14] <Grokling> andrew9183: Test going to your states directly via url and prove that they work first.
[23:23:15] *** sonofdirt has quit IRC
[23:23:24] *** omolin4 has joined #angularjs
[23:23:47] *** baweaver has quit IRC
[23:23:54] *** sonofdirt has joined #angularjs
[23:24:05] <Fuzzy> propagation*
[23:24:07] *** phuh has quit IRC
[23:24:14] <ctanga> ack, thanks fuzzy
[23:24:24] <Fuzzy> nice though
[23:24:33] *** phuh has joined #angularjs
[23:24:33] <Fuzzy> do you actually put these directives in?
[23:24:39] <ctanga> yeah i use'em
[23:24:56] <Fuzzy> interesting
[23:25:07] <Grokling> Yeah- I have similar ones too.
[23:25:11] <Fuzzy> if you use ng-click you won't run into these issues though will you?
[23:25:31] <Grokling> Fuzzy: Yes. Still propagates with ng-click.
[23:25:34] <ctanga> <tr ng-click=“selectrow(row)”> <td event-stop-propegation=“click”> <input type=“checkbox”> </td> <td>More TDs</td></tr>
[23:25:41] *** s00pcan has joined #angularjs
[23:26:06] <Fuzzy> oh hm
[23:26:16] <ctanga> that’s how i use it
[23:26:21] *** rikkipitt has quit IRC
[23:26:26] *** bundledavid has joined #angularjs
[23:26:50] <ctanga> so i can put my handlers on the outer element and opt-out on the inner
[23:27:09] *** moogey has quit IRC
[23:27:18] *** renlo has quit IRC
[23:27:18] <andrew9183> the state doesn’t work directly, it passes “new” as an id
[23:27:40] *** Sawbones has joined #angularjs
[23:27:44] <andrew9183> oh wait the problem is the order
[23:27:53] *** sonofdirt has quit IRC
[23:27:56] <andrew9183> argh, it’s like rails specific routes first
[23:28:04] *** frankblizzar has quit IRC
[23:28:06] *** fairuz has quit IRC
[23:28:09] *** duarte has joined #angularjs
[23:28:14] <duarte> hello all!
[23:28:17] <ctanga> rules are processed in the order they are defined, firsts match wins
[23:28:22] *** Junjie has joined #angularjs
[23:28:24] *** baweaver has joined #angularjs
[23:28:29] <andrew9183> yeah i should’ve known
[23:28:37] <andrew9183> sorry another stupid question for me
[23:28:42] *** cornerma1 has joined #angularjs
[23:30:05] *** moogey has joined #angularjs
[23:30:21] <ctanga> Has anyone written an adapter for underscore/lodash that has the function parameters in proper curry order?
[23:31:06] *** bundledavid has quit IRC
[23:31:12] <Fuzzy> ?
[23:31:29] *** chintanparikh has quit IRC
[23:31:58] *** Oddman has quit IRC
[23:32:19] <duarte> i have a page fragment that is loaded by ajax...this page fragment have a {{<rootScoop.var_name}} tag but angular does't render the tag... instead of value it prints {{...}}. it's possible to use {{}} on pages loaded by ajax ?
[23:32:25] *** cornerman has quit IRC
[23:32:35] *** cornerma1 is now known as cornerman
[23:32:50] *** fedenunez has joined #angularjs
[23:32:56] *** jagga has quit IRC
[23:32:58] <tjsail33> duarte, look up ng-include
[23:33:23] <duarte> ok
[23:33:37] *** NoNMaDDeN has quit IRC
[23:33:46] <tjsail33> if that wont work, you'll likely have to use $compile to compile the html returned from the ajax call.
[23:33:55] *** mdedetrich has joined #angularjs
[23:34:09] *** danecando has joined #angularjs
[23:35:09] *** vonnegut has joined #angularjs
[23:35:13] *** adamsilver has joined #angularjs
[23:35:41] <adamsilver> guys what is the correct thing with 'dist' dir... do you build it on the server or push it to the repository?
[23:35:50] <adamsilver> I mean what is the correct thing to do
[23:36:17] *** s3shs has quit IRC
[23:37:14] *** Aerospark has quit IRC
[23:37:27] *** samuel02 has joined #angularjs
[23:37:42] *** spaceonline has joined #angularjs
[23:37:59] *** justinobney has joined #angularjs
[23:38:16] *** Sontakey has joined #angularjs
[23:38:19] *** slickuser has joined #angularjs
[23:38:19] *** slickuser has joined #angularjs
[23:38:28] *** slickuser has left #angularjs
[23:39:08] *** glassir has joined #angularjs
[23:39:11] <ctanga> Fuzzy: https://www.youtube.com/watch?v=m3svKOdZijA#t=7m to answer your question
[23:39:13] *** charlenopires has joined #angularjs
[23:39:26] *** charlenopires has left #angularjs
[23:39:58] <Fuzzy> so currying is broke in underscore?
[23:40:20] *** jbeaudry has joined #angularjs
[23:40:21] *** ausumpossum has quit IRC
[23:40:35] *** adpirz has joined #angularjs
[23:40:39] *** stillbourne has quit IRC
[23:40:59] <ctanga> well yeah, the underscore functions aren’t exactly curry'able
[23:42:16] *** samuel02 has quit IRC
[23:42:23] *** spaceonline has quit IRC
[23:42:44] *** glassir has quit IRC
[23:42:49] *** omolin4 has quit IRC
[23:43:01] <Fuzzy> hmm i dont really get it then
[23:43:08] <Fuzzy> what functionality should it have that it doesn't?
[23:43:25] *** moogey has quit IRC
[23:43:26] <ctanga> the args are in the wrong order for currying
[23:44:03] <Fuzzy> oh
[23:44:11] *** baweaver has quit IRC
[23:44:12] <Fuzzy> whast the proper order for args then?
[23:45:00] <beckyconning_> http://plnkr.co/edit/yBI9tNubJItIRNiX9ldZ?p=preview does anyone know why this isn't including the view? do i need to tell ui-router to do something after the directive has been linked?
[23:45:07] *** jimvideo has joined #angularjs
[23:45:12] *** chabier has quit IRC
[23:45:38] *** RobinBAwesome has quit IRC
[23:45:44] *** marc_v92 has quit IRC
[23:46:00] <beckyconning_> getting no errors but also no view inclusion
[23:46:51] *** chabier_ has joined #angularjs
[23:47:02] *** dseitz has joined #angularjs
[23:47:16] *** calmbird has quit IRC
[23:47:56] *** sheplu has quit IRC
[23:47:59] *** RobinBAwesome has joined #angularjs
[23:48:12] *** enigmarm has quit IRC
[23:48:31] *** cheef1 has quit IRC
[23:49:54] *** plato has quit IRC
[23:50:23] *** Sky[x] has quit IRC
[23:50:45] *** Sky[x] has joined #angularjs
[23:51:06] *** johnstorey has quit IRC
[23:51:08] *** loverajoel has joined #angularjs
[23:51:47] *** Sky[x] has quit IRC
[23:52:07] *** frankblizzar has joined #angularjs
[23:52:10] *** dhrami has joined #angularjs
[23:52:23] *** MANCHUCK has joined #angularjs
[23:53:03] *** moogey has joined #angularjs
[23:53:22] *** bayousoft has quit IRC
[23:53:39] *** evanjs has quit IRC
[23:54:03] *** whunt has quit IRC
[23:55:19] *** GeneralChoomin has joined #angularjs
[23:55:40] *** digisky has joined #angularjs
[23:56:08] *** Oddman_ has quit IRC
[23:56:19] *** ChadStrat has quit IRC
[23:56:34] *** Oddman has joined #angularjs
[23:56:52] *** mary5030 has quit IRC
[23:57:17] <ctanga> beckyconning_: plunk not found
[23:57:26] *** Sawbones has quit IRC
[23:57:27] *** mary5030 has joined #angularjs
[23:57:29] <beckyconning_> oh sorry
[23:57:37] *** dannyc has joined #angularjs
[23:57:46] *** Junjie has quit IRC
[23:58:04] *** vonnegut has quit IRC
[23:58:37] *** plato has joined #angularjs
[23:58:39] *** busticated has joined #angularjs
[23:59:06] *** ivanskie has quit IRC
top

   November 26, 2014  
< | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | >