[00:00:06] <mustmodify> ok so if I don't care about ngRoute, I can just pull that out for now?
[00:00:13] <icfantv> but lemme ask this. if you going from 1.0 to 1.2, why not just go to 1.4?
[00:00:22] <icfantv> yessir
[00:00:23] *** siba has quit IRC
[00:00:32] <icfantv> angular-route is only for $routeProvider and $route
[00:00:48] *** dpicky has joined #angularjs
[00:00:51] <mustmodify> icfantv: I started going to 1.4. Everything blew up. So I said, "Ok let me take this one step at a time."
[00:00:57] *** baweaver has quit IRC
[00:01:20] <icfantv> mustmodify: here's a list of all the modules
[00:01:24] *** Aliks has quit IRC
[00:01:47] <icfantv> mustmodify: you really should read through all the CHANGELOG entries and pay special attention to the breaking changes
[00:01:55] *** eago has joined #angularjs
[00:01:55] <icfantv> that's the RIGHT way to do this.
[00:02:21] *** nerdfile1 has quit IRC
[00:02:47] <mustmodify> icfantv: I did. But I foolishly assumed that the ng-route code would be in Google's CDN.
[00:02:58] <mustmodify> even though I saw the changelog that said it was split out.
[00:03:28] <icfantv> i mean, it IS….just as a separate file. ;-0
[00:03:39] *** syzygy_ has joined #angularjs
[00:03:44] *** elton has quit IRC
[00:04:01] <mustmodify> icfantv: ok so I added the changes you suggested and now I don't get an error.
[00:04:09] <mustmodify> But it says Hello instead of Hello World.
[00:04:13] <mustmodify> So it's not right yet.
[00:04:42] *** Aliks has joined #angularjs
[00:04:45] *** regedit_ has joined #angularjs
[00:05:22] <icfantv> mustmodify: also, don't use ng-init there. it's for a VERY limited use now. primarily ng-repeat
[00:05:22] *** italoacasas has quit IRC
[00:05:38] *** mary5030_ has joined #angularjs
[00:06:27] *** Aliks has quit IRC
[00:06:46] <mustmodify> icfantv: How do you suggest I pass ids from Rails to Angular for not-full-page apps?
[00:06:54] <mustmodify> (don't do that. Funny.)
[00:07:07] *** Mumpsimus has joined #angularjs
[00:07:21] <icfantv> mustmodify: you haven't told angular about your controller yet
[00:07:51] <mustmodify> data-ng-controller="ReportCardCtrl" ???
[00:07:51] *** jmitchell has quit IRC
[00:08:06] <mustmodify> that worked in 1.0.7. :)
[00:08:41] *** LeBlaaan_ has quit IRC
[00:08:50] *** regedit has quit IRC
[00:08:50] *** mary5030 has quit IRC
[00:08:50] <icfantv> yea, not anymore
[00:08:52] *** LeBlaaanc has joined #angularjs
[00:09:32] <icfantv> app.controller("ReportCardCtrl", ['$scope', ReportCardCtrl]); function ReportCardCtrl($scope) { … }
[00:09:45] *** anna_ has quit IRC
[00:09:52] <mustmodify> Oh yeah, that syntax.
[00:10:10] <icfantv> oh
[00:10:11] <icfantv> dude
[00:10:15] <icfantv> you're missing <body>
[00:10:22] <icfantv> and <head>
[00:10:42] *** Aliks has joined #angularjs
[00:10:44] <mustmodify> icfantv: I pulled out all my other views
[00:10:48] <mustmodify> so it would be bare-bones.
[00:10:56] <mustmodify> Obviously that's not how it normally looks. :)
[00:11:25] *** annlewis has joined #angularjs
[00:11:29] <icfantv> it's not even proper HTML
[00:11:55] <mustmodify> icfantv: that's true.
[00:12:21] *** leolrrj has quit IRC
[00:12:28] *** mary5030_ has quit IRC
[00:12:32] <mustmodify> ok well
[00:12:36] <mustmodify> I fixed most of what you mentioned.
[00:12:46] *** s00pcan has quit IRC
[00:12:48] <icfantv> $scope.location == 'World"?
[00:12:52] <icfantv> you mean =
[00:12:53] *** Aliks has quit IRC
[00:13:02] *** mary5030 has joined #angularjs
[00:13:02] *** mauro_ has joined #angularjs
[00:13:03] <icfantv> assignment, not boolean
[00:13:03] <mustmodify> d'Oh.
[00:13:04] <mustmodify> See
[00:13:21] *** liamonade has joined #angularjs
[00:13:24] <mustmodify> that makes me feel dumb. But I was just trying to get rid of all my actual code.
[00:13:32] <mustmodify> icfantv: ok it's working now.
[00:13:36] <icfantv> and correct logic as well
[00:13:41] <mustmodify> Shall I bump it up to 1.4.6? :)
[00:13:51] *** ccohn has joined #angularjs
[00:13:53] *** walden is now known as walden|afk
[00:13:58] <icfantv> not. 1.4.8
[00:14:01] <icfantv> er, no
[00:14:05] <icfantv> use 1.4.8
[00:14:23] <mustmodify> Hooray! Still works!
[00:14:36] <mustmodify> Thanks very much.
[00:14:46] <mustmodify> Now I'll see if I can get this collection+JSON api client going.
[00:14:52] *** s00pcan has joined #angularjs
[00:15:17] <icfantv> mauro_: use a directive?
[00:15:50] <icfantv> mauro_: then, you don't need ng-include, since you'll be using a directive's templateUrl property
[00:15:53] *** Aliks has joined #angularjs
[00:16:10] <mustmodify> icfantv: the first bit of angular-collection-json says "angular.module("Collection",[]).provider("cj",function()"... providers always confused me. Does that mean if I include Collection in my app definition, then I can just inject 'cj' into my controller?
[00:16:20] <icfantv> mustmodify: also, don't put ng-app on <html> it can muck with animations. put it on <body>
[00:16:23] *** annlewis has quit IRC
[00:16:53] <mustmodify> icfantv: k, thanks.
[00:17:22] <mauro_> icfantv: i got you on the templateUrl include. so the directive would handle the POST. But how do I return the control to the corresponding controller after the POST is done?
[00:17:40] *** baweaver has joined #angularjs
[00:17:41] *** regedit_ is now known as regedit
[00:18:02] <mustmodify> icfantv: It worked! Thanks so much for walking me through that.
[00:18:06] *** ccohn has quit IRC
[00:19:36] *** Hink has joined #angularjs
[00:20:05] *** mary5030 has quit IRC
[00:20:26] *** baweaver has quit IRC
[00:20:34] *** Hink has quit IRC
[00:21:00] <phelix> if i load a module into my app with var app = angular.module('siteSearch', ['rzModule'] and then I am trying to use this module inside of a directive. app.directive('sidebarSlider', ['URLBuilder', function(URLBuilder) { ..... } why am I not able to access the items from the module that I loaded ?
[00:21:03] <phelix> if that makes any sense.
[00:21:36] *** greengriminal has quit IRC
[00:21:36] *** Aliks has quit IRC
[00:21:57] *** cvanball has quit IRC
[00:22:02] *** Aliks has joined #angularjs
[00:23:10] *** sbellina has joined #angularjs
[00:23:55] *** ulkesh has joined #angularjs
[00:24:06] *** paperElectron has quit IRC
[00:24:28] *** nanuko has joined #angularjs
[00:26:28] *** owenjones has quit IRC
[00:26:56] *** cotko has quit IRC
[00:27:00] *** syzygy_ has quit IRC
[00:27:06] *** dcherman2 has quit IRC
[00:28:23] *** Aliks has quit IRC
[00:28:28] *** Bubo has joined #angularjs
[00:28:31] <AbuDhar> hey
[00:28:36] <AbuDhar> how to update the dom after inserted row in DB?
[00:28:39] <icfantv> mustmodify: sure
[00:29:33] <AbuDhar> do I need to use $scope.apply?
[00:29:43] <icfantv> phelix: is the error that the URLBuilder you are trying to inject isn't defined?
[00:29:59] <icfantv> AbuDhar: depends.
[00:30:03] <icfantv> how is the DB getting updated
[00:30:04] <icfantv> ?
[00:30:36] <AbuDhar> through a http call to the api
[00:30:44] *** sbellina has quit IRC
[00:30:56] <AbuDhar> I have to refresh now to see the update
[00:30:57] <icfantv> AbuDhar: ok, so you're updating it via your UI
[00:31:57] <AbuDhar> so tell me how I should do it
[00:32:04] <AbuDhar> show me an example
[00:32:05] *** LBecker has quit IRC
[00:32:27] <icfantv> AbuDhar: so let's say you have a grid of items and your UI is displaying some modal that lets you create a new item and save it to the DB. in the .then of the return promise, you want to add that model to your items and the UI will automatically update
[00:33:19] *** sh_brando has joined #angularjs
[00:33:27] *** mauro_ has quit IRC
[00:34:42] *** Aliks has joined #angularjs
[00:34:49] *** Oleander has quit IRC
[00:34:53] *** dcherman has joined #angularjs
[00:35:53] *** ahhhndi has quit IRC
[00:36:20] <AbuDhar> I asked for an example. :) not an explanation. I know what you mean totally.
[00:37:13] *** nya has joined #angularjs
[00:37:37] *** nya is now known as Guest47920
[00:37:47] <AbuDhar> it doesn't have to be your example..
[00:38:20] *** Aliks has quit IRC
[00:39:51] *** bengillies has joined #angularjs
[00:40:29] *** Aliks has joined #angularjs
[00:40:30] <phelix> icfantv: no its actually about the rzModule
[00:40:42] *** mischat has joined #angularjs
[00:40:57] *** macabre has quit IRC
[00:41:33] *** devPaul has quit IRC
[00:41:35] *** overtime has quit IRC
[00:41:46] <phelix> if i add the rzModule into the actual app I don't get any errors. But then if i try to load it into the controller or directive then I do get errors
[00:42:04] *** Codefria_ has joined #angularjs
[00:42:13] *** Aliks has quit IRC
[00:43:15] *** nanuko has quit IRC
[00:43:24] *** Aliks has joined #angularjs
[00:43:24] *** chairmanmow1 has joined #angularjs
[00:44:35] *** liamonade has quit IRC
[00:45:11] *** devPaul has joined #angularjs
[00:45:20] *** jonno11 has joined #angularjs
[00:45:26] *** chairmanmow has quit IRC
[00:45:32] *** Aliks has quit IRC
[00:46:08] *** dszmaj has quit IRC
[00:46:39] *** LeBlaaanc has quit IRC
[00:47:00] *** joaoneto has joined #angularjs
[00:47:09] *** LeBlaaanc has joined #angularjs
[00:47:33] <icfantv> AbuDhar: ok dude. i'm sorry but I'm not able to help you anymore.
[00:47:50] *** Es0teric has quit IRC
[00:47:51] *** chairmanmow1 has quit IRC
[00:47:55] <icfantv> phelix: if the controller and directives are part of your app, you don't need to add them as modules
[00:48:03] <icfantv> er, as a module dependency
[00:48:18] <icfantv> angular loads EVERYTHING first before booting
[00:48:24] *** Aliks has joined #angularjs
[00:48:55] <AbuDhar> icfantv: yeah it looks that way... don't help me then. nobody asked for your help anyway.
[00:48:56] <steven10172> It manipulates the DOM directly, but I want to attach ng-model to the checkboxes. How can I update the directive to change the binded value?
[00:48:59] <icfantv> phelix: technically, if you're using ES6 modules, you should so it's clear what module is using what….but it's not actually necessary.
[00:49:13] <AbuDhar> don't feel so important. :)
[00:49:55] *** knownasilya has quit IRC
[00:49:57] <icfantv> AbuDhar: you're being an ass. you've been demanding all day and i'm tired of dealing with it.
[00:50:07] <AbuDhar> I am tired of you
[00:50:13] <AbuDhar> don't answer my questions anymore thanks.
[00:50:39] <AbuDhar> I am going to ignore you from now on.
[00:50:39] *** ChanServ sets mode: +o icfantv
[00:50:58] *** baweaver has joined #angularjs
[00:51:20] *** joaoneto has quit IRC
[00:51:28] <mustmodify> icfantv: Hey can you help me with one more, presumably quick, thing?
[00:51:36] *** jmitchell has joined #angularjs
[00:51:47] <phelix> but i can't seem to initialize the rzModule through the directive.
[00:52:04] <mustmodify> I know from the docs you aren't supposed to do angular.module('myApp') twice for the same app
[00:53:07] *** icfantv sets mode: +b abudhar!*@*
[00:53:47] *** AbuDhar has left #angularjs
[00:53:55] *** regedit is now known as regedit-laptop
[00:54:35] *** Aliks has quit IRC
[00:54:36] <mustmodify> icfantv: actually nevermind. Apparently I just had to hit reload like 5 times.
[00:54:47] <icfantv> sorry. it's been so long since i KB'd someone i had to look up how
[00:54:49] *** zlalanne has quit IRC
[00:54:58] * icfantv returns his attention to the channel
[00:55:12] <steven10172> icfantv, No right click option in chat client?
[00:55:23] <phelix> lol, thats a good thing.
[00:55:35] *** Aliks has joined #angularjs
[00:55:52] <icfantv> i'm using adium
[00:55:55] *** ChanServ sets mode: -o icfantv
[00:55:56] <icfantv> does it have that?
[00:55:59] <mustmodify> icfantv: oh, actually... I was right in thinking I was wrong. It isn't working.
[00:56:12] <steven10172> Not sure about that client. Most have something
[00:56:31] <fullstack> Or recommend a better starter? (Component based, ES5, Webkit, w/E2E?)
[00:56:51] <fullstack> and ui-router built in
[00:57:00] <steven10172> If I manipulate an input box directly through the DOM how can I make it apply the value to it's ng-model? I'm looking to make a checkAll directive to select all checkboxes in the current table
[00:57:25] <icfantv> oh crap. yep, there it is
[00:57:38] *** regedit-laptop is now known as regedit
[00:58:00] *** archon- has joined #angularjs
[00:58:24] <icfantv> phelix: so that looks fine. are you getting an error? you typically only load the module once like I said. angular and ES6 modules won't load something again if it's already loaded
[00:58:47] <steven10172> I belive you can do $('#example').scope().$apply(); but it doesn't seem to be working for table.find('tbody > tr > td:nth-child('+index+') input[type="checkbox"]:not([disabled])').scope().$apply();
[00:59:07] *** Aliks has quit IRC
[00:59:17] <icfantv> phelix: what i don't know is if you have two separate modules in an angular app and they don't intertwine at all, whether or not loading the module in one app implies loading it in the other. my hunch is no, but i'd have to test that
[00:59:22] *** mven has joined #angularjs
[00:59:36] <icfantv> steven10172: sorry, what are you trying to do again. i recall seeing something about checkboxes
[00:59:40] <phelix> well using the directive or adding any of thse scope info to initilize the module doesn't seem to get it to work properly.
[00:59:51] *** elton has joined #angularjs
[00:59:56] *** mellernoia has joined #angularjs
[01:00:04] <icfantv> phelix: in the directive, you mean?
[01:00:09]
<steven10172> I have a directive that checks all checkboxes in the table (http://pastebin.com/hBcSmsmY) It manipulates the DOM directly, but I want to attach ng-model to the checkboxes. How can I update the directive to change the binded value?
[01:00:19] <icfantv> phelix: what does the module do exactly?
[01:00:50] <icfantv> steven10172: so you're using full blown jquery
[01:00:53] <icfantv> yea?
[01:00:56] <icfantv> based on those selectors
[01:01:39] <phelix> its a sslider
[01:01:49] <steven10172> icfantv, Probably? Let me check. This is a template that was bought
[01:02:26] *** bbankes has quit IRC
[01:02:26] <archon-> icfantv: do you know of an example of using ui-bootstrap navbar to open a sub-bar on menu selection?
[01:02:35] <archon-> instead of a dropdown
[01:03:30] *** tiagoboldt has quit IRC
[01:03:49] *** Aliks has joined #angularjs
[01:03:55] <icfantv> archon-: one sec. i can only answer 500 questions at a time. ;-)
[01:04:05] <steven10172> icfantv, Yea. It's the full jQUery. I just want to select all the checkboxes in the table. It works great, but I have no way to nicely know if something was checked without using more jQuery to check. I'd like to update the binded ng-model value if possible
[01:04:05] <icfantv> 501 puts me over the edge
[01:04:06] *** bengillies has quit IRC
[01:04:13] *** sh_brando has quit IRC
[01:04:18] *** elton has quit IRC
[01:04:24] *** Dmitri has joined #angularjs
[01:04:29] <archon-> no rush :)
[01:05:20] <icfantv> steven10172: hangon, i did a checkbox group and need to see what i did
[01:05:32] *** Aliks has quit IRC
[01:06:47] *** siba has joined #angularjs
[01:06:52] <icfantv> steven10172: are you familiar w/ formly?
[01:07:12] <steven10172> icfantv, No
[01:07:27] *** fddlr has quit IRC
[01:07:32] *** regedit has quit IRC
[01:07:57] *** MrBaboon has quit IRC
[01:08:20] *** swordfish has quit IRC
[01:08:39] <icfantv> steven10172: ok. i have a multicheckbox that i use through angular-formly - it's not exactly what you need, but if you look at the controller and how the ng-model is bound to the controller's model, you should be able to apply it to what you want.
[01:08:56] *** schneider has quit IRC
[01:08:58] <steven10172> icfantv, Ok. Will check it out. Thanks
[01:09:06] <archon-> steven: yeah, not quite the effect i'm going for
[01:09:19] *** monk12 has joined #angularjs
[01:09:26] <steven10172> archon-, Are they in different controllers?
[01:09:41] *** zumba_addict has joined #angularjs
[01:09:42] <archon-> no
[01:09:46] *** nerdfiles has joined #angularjs
[01:09:47] <archon-> something like that
[01:10:15] *** TyrfingMjolnir has quit IRC
[01:10:28] *** tiagoboldt has joined #angularjs
[01:10:52] <icfantv> steven10172: i took what formly had and modified it so i could have a select all/none
[01:10:52] <steven10172> archon-, Oh. Not sure of the best way to do that. But you can just toggle different ones with ng-if or toggle different template partials
[01:11:03] *** LeBlaaanc has quit IRC
[01:11:40] <archon-> yeah, that's what i was looking at. trying to keep it responsive too
[01:11:58] *** Guest47920 has quit IRC
[01:12:12] <icfantv> archon-: not sure i understand what you want exactly
[01:12:15] *** annlewis has joined #angularjs
[01:12:15] <steven10172> icfantv, Thanks. Will read the code. But, shouldn't something like this update the scope? table.find('tbody > tr > td:nth-child('+index+') input[type="checkbox"]:not([disabled])').scope().$apply()
[01:12:17] *** Codefria_ has quit IRC
[01:12:31] *** rOOb has joined #angularjs
[01:12:32] *** rOOb has joined #angularjs
[01:12:50] *** rossk has quit IRC
[01:12:51] <icfantv> steven10172: i think only if it has ng-model bound, no?
[01:13:16] <steven10172> each checkbox is <input type="checkbox" ng-model="item.checked" />
[01:13:19] <icfantv> steven10172: you might actually need to trigger a $digest
[01:13:26] *** wonder95 has quit IRC
[01:13:50] <icfantv> steven10172: that means they're all bound to the same model
[01:13:55] <archon-> icfantv: so in a normal bootstrap navbar with a dropdown, you click on the dropdown and it opens some options in a flyout - or on a smaller screen, it opens them in new rows because the whole menu is one column. i'd like to do something like that without the flyout.. so clicking a menu item can open a whole new row on larger screens but still make sense on a smaller screen
[01:14:06] *** zumba_addict has quit IRC
[01:14:09] <steven10172> icfantv, the checkboxes are in an ng-repeat
[01:14:27] <icfantv> steven10172: look at my template HTML - see how i use $index to track the nth checkbox
[01:14:36] *** ccohn has joined #angularjs
[01:14:40] *** jmitchell has quit IRC
[01:14:54] <icfantv> steven10172: ok, so how do you access the nth checkbox then? each ng-repeat will get it's own scope
[01:15:27] *** paperElectron has joined #angularjs
[01:15:29] *** balr0g has joined #angularjs
[01:15:42] <icfantv> archon-: that's all done through CSS @media types
[01:15:44] *** moep has quit IRC
[01:16:12] <icfantv> archon-: UIBS has no CSS - we defer to BS for everything.
[01:16:27] <archon-> hmm.. k
[01:16:30] *** jmitchell has joined #angularjs
[01:16:32] <steven10172> I have something like $scope.order = {orderItems:[{checked:false},{checked:true}]}; and the ng-model should bind to the $scope.order.orderItems[x].checked field
[01:16:35] <icfantv> archon-: if you want to control how the menu opens, you need to override the CSS
[01:16:47] *** mischat has quit IRC
[01:16:52] <steven10172> icfantv, Unless I'm getting ng-model wrong. I'm still fairly new to angular
[01:16:59] *** annlewis has quit IRC
[01:17:11] <icfantv> steven10172: that looks better (w/ the array syntax)
[01:17:21] <archon-> ok.. need to find out how my designers want it to work i guess
[01:17:33] *** reduce has left #angularjs
[01:17:39] <icfantv> archon-: heh, yea. at least you have some.
[01:17:56] <archon-> sorta hehe
[01:17:57] <icfantv> i've never had to deal with responsive design until now
[01:18:20] <archon-> yeah i just liked the way the collapsable thing worked and wanted to try and preserve it somehow
[01:18:31] *** TheoMurpse has quit IRC
[01:18:52] <icfantv> archon-: i think on smaller screens the navbar collapses to the 3-lined = thingy
[01:18:59] <archon-> yeah it does
[01:19:03] *** ccohn has quit IRC
[01:19:09] <archon-> but that won't make as much sense if i have two rows
[01:19:16] <icfantv> two navbars?
[01:19:20] <archon-> yeah
[01:19:23] <icfantv> oy. no
[01:19:24] <archon-> a nav and a sub-nav
[01:19:34] <icfantv> yea, don't do that
[01:19:48] <archon-> well that's the current design hehe
[01:19:55] <icfantv> hmmm.
[01:20:00] <archon-> i'll ask them about it
[01:20:28] <archon-> it has the advantage that the user can see exactly where they are all the time
[01:20:47] *** jmitchell has quit IRC
[01:21:03] <archon-> from a menu perspective
[01:21:43] *** Mumpsimus has quit IRC
[01:22:18] <archon-> sort of like breadcrumbs
[01:22:27] <archon-> maybe that's what we need
[01:22:28] <icfantv> steven10172: looking at my code, i'm not sure you need jquery
[01:22:37] *** shadowrunner has joined #angularjs
[01:23:19] *** jetpackjoe has joined #angularjs
[01:24:01] <icfantv> steven10172: my multicheckbox is an array of strings
[01:24:02] *** moei has joined #angularjs
[01:24:06] *** jmitchell has joined #angularjs
[01:24:24] <icfantv> and if the string is present, the checkbox is selected. if the checkbox is deselected, the string is removed from the array
[01:24:35] *** Oleander has joined #angularjs
[01:24:47] <steven10172> icfantv, I see how you code works. It make more sense. Just curious as to why $apply isn't applying. Doesn't apply call a digest cycle?
[01:25:09] <icfantv> no, the other way around
[01:25:33] <icfantv> wait
[01:25:38] <icfantv> hang on
[01:25:46] *** dcherman has quit IRC
[01:26:00] <icfantv> ok
[01:26:01] <steven10172> I'm pretty sure apply triggers a digest cycle to apply the cahnge
[01:26:09] <icfantv> $apply calls rootscope.digest
[01:26:16] <icfantv> yes
[01:26:24] <steven10172> Which will work its way down the chain
[01:26:24] <icfantv> my bad. sorry
[01:26:29] <icfantv> i'm getting tired
[01:26:49] *** Oleander has quit IRC
[01:26:52] *** swordfish has joined #angularjs
[01:27:06] *** hackel has quit IRC
[01:27:25] *** Oleander has joined #angularjs
[01:27:39] *** bbankes has joined #angularjs
[01:27:46] <icfantv> so if you change the underlying model outside of angular (and in jquery land is a perfect example) you need to call apply to tell angular that the model has changed
[01:28:24] *** phelix has quit IRC
[01:28:31] *** lnrdo has quit IRC
[01:28:49] *** devPaul has quit IRC
[01:29:57] <icfantv> steven10172: in that pastebin, you're not touching the model
[01:30:03] <icfantv> you;re just touching the DOM element
[01:30:03] <steven10172> icfantv, Of which I did. It just doesn't apply it. I can even print out the scoep of the object that I tell to change and no change
[01:30:21] <steven10172> On line 28 I added table.find('tbody > tr > td input[type="checkbox"]:not([disabled])').scope().$apply();
[01:30:34] <steven10172> Right after I pased
[01:30:37] <steven10172> pasted*
[01:30:37] <icfantv> can you update the pastebin?
[01:30:39] <icfantv> please
[01:30:46] *** jmitchell has quit IRC
[01:31:05] <icfantv> where's the HTML code for your checkbox?
[01:31:11] *** swordfish has quit IRC
[01:31:26] <icfantv> also, just a head's up that i have to leave soon
[01:31:34] <OnkelTem> Hi all
[01:31:35] *** jetpackjoe has quit IRC
[01:31:37] *** diegoaguilar has quit IRC
[01:32:06] *** eago has quit IRC
[01:32:10] <OnkelTem> How to create sitemap.xml for an angular app?
[01:32:10] *** Oleander has quit IRC
[01:32:15] <steven10172> icfantv, Checkbox is like 66
[01:32:24] <steven10172> line*
[01:36:05] <icfantv> steven10172: AHHHHH. ok you check the item tied to the order
[01:36:10] <icfantv> i wasn't following that
[01:36:13] <icfantv> my bad
[01:36:46] <steven10172> icfantv, Yea. I then later loop through and find all that are checked to process
[01:37:03] *** fedenunez has joined #angularjs
[01:37:04] <icfantv> so here's the thing. if you check the checkbox, the model will change already
[01:37:24] <icfantv> steven10172: where are you changing the model outside of angular?
[01:37:33] <steven10172> Yea. Manually clicking works
[01:37:42] <icfantv> oh, ok. what's the issue?
[01:37:42] <steven10172> LIne 49
[01:37:44] <icfantv> (sorry)
[01:37:54] <steven10172> The checkall directive that uses jQuery
[01:38:00] <icfantv> Oooooh. yea don't do that
[01:38:05] <steven10172> It doesn't update the model
[01:38:14] *** clivejo has quit IRC
[01:38:16] <icfantv> just pass in your list of items and toggle the checked property
[01:38:25] <icfantv> shit, you don't even need a directive
[01:38:34] <icfantv> just an ng-change function
[01:39:14] <icfantv> if you want it to be reusable
[01:39:21] <steven10172> I didn't write the directive. It was part of the template. I was just puzzled why $apply() wasn't working
[01:39:28] <icfantv> keep it as a directive
[01:40:13] <icfantv> and pass in your items and the field name of the value that is to be toggled
[01:40:24] <icfantv> if you need reusability
[01:40:41] <icfantv> does the directive check the checkbox?
[01:40:54] <icfantv> er
[01:40:56] <steven10172> Yea. Doesn't change scope though
[01:40:59] <icfantv> does the directive work?
[01:41:06] <icfantv> i.e, do all the checkboxes update?
[01:41:13] <steven10172> Visually
[01:41:22] <steven10172> Not the underlying scope
[01:41:29] <icfantv> ok, i get it now. that's odd
[01:41:40] <icfantv> but you're not changing the model
[01:41:50] <icfantv> you're just changing the UI
[01:41:58] <icfantv> that's why apply doesn't do anything
[01:42:01] <steven10172> Oh...
[01:42:08] <icfantv> remember, apply is for when you modify the model outside angular
[01:42:13] <icfantv> you're not modifying the model
[01:43:12] <steven10172> Thanks
[01:43:15] <icfantv> if you want to keep your directive (i.e., you use it elsewhere), i would modify it to take a collection of items, the field name, and a bollean indicating indicating whther or not the item should be checked
[01:43:35] <icfantv> if it's only in this one spot, dump the directive and just add an ng-change handler
[01:43:51] <steven10172> Only this 1 spot for now, but who know where it'll need to be used
[01:44:10] <steven10172> On page 4 of a 50+ page application
[01:44:21] <icfantv> archon-: yea, breadcrumbs sounds better. especially on mobile
[01:44:32] <icfantv> you could implement the iOS-like navigation
[01:44:44] *** Oleander has joined #angularjs
[01:45:05] *** SteenJobs has joined #angularjs
[01:45:06] <icfantv> steven10172: ok. then make it an ng-change and if you find yourself doing the same thing again elsewhere, make a directive
[01:45:08] *** diegoaguilar has joined #angularjs
[01:45:33] <icfantv> doing so preemptively is not correct.
[01:45:44] *** Dmitri has quit IRC
[01:45:53] <icfantv> also, in your ng-change, just update the models, don't touch the DOM in your controllers. that's a no-no
[01:46:10] <icfantv> => no $. or $( notation in your controller.
[01:47:04] <steven10172> icfantv, so ng-change="loopAndChangeAll()" where that function is somethning like this? $scope.orderInfo.orderItems.forEach(function(o) { o.checked = true; })
[01:47:42] *** cocao has quit IRC
[01:49:09] <icfantv> ng-change="selectAll" (don't put ands in your function names)
[01:49:20] *** mip has joined #angularjs
[01:50:06] *** mven has quit IRC
[01:50:07] <icfantv> and function selectAll() { angular.forEach(items, function(item) { item.checked = boolean_value }) }
[01:50:07] <mip> hi
[01:50:30] <icfantv> steven10172: actually, you could pass in the checked value to your selectAll and then use it for the boolean_value
[01:50:49] <icfantv> or define an ng-model for the select all checkbox
[01:51:02] <steven10172> I think ng-change requires a ng-model?
[01:51:03] <icfantv> and use that model value
[01:51:07] *** Sky[x] has quit IRC
[01:51:12] <icfantv> oh. maybe
[01:51:17] *** mip has quit IRC
[01:51:19] <icfantv> i can't remember
[01:51:24] *** fedenunez has quit IRC
[01:51:30] <icfantv> i gotta scoot though. i think you're good though, yea?
[01:51:38] <steven10172> icfantv, Yea. Thanks
[01:52:29] *** p0k0 has quit IRC
[01:54:15] <wafflejock> steven10172: yeah ng-change works off the ng-model
[01:54:19] *** annlewis has joined #angularjs
[01:54:43] *** rossk has joined #angularjs
[01:54:59] *** jditto_ has quit IRC
[01:55:17] <icfantv> wafflejock: cool. makes sense, really
[01:55:24] <icfantv> steven10172: cool. night
[01:55:25] *** mustmodify has left #angularjs
[01:55:32] <steven10172> icfantv, Thanks. Night
[01:55:33] <wafflejock> later icfantv
[01:55:39] *** icfantv has quit IRC
[01:55:44] *** jareddlc has quit IRC
[01:57:14] *** steven10172 has quit IRC
[02:00:02] *** marr has quit IRC
[02:00:35] *** pelim has quit IRC
[02:02:12] *** devPaul has joined #angularjs
[02:03:49] *** Aliks has joined #angularjs
[02:03:59] *** Aliks has quit IRC
[02:04:17] *** ansimation has quit IRC
[02:04:50] *** rickmak has joined #angularjs
[02:06:49] *** devPaul has quit IRC
[02:07:42] *** caz has joined #angularjs
[02:07:50] *** annlewis has quit IRC
[02:08:35] *** c00ljs has joined #angularjs
[02:08:51] *** Schalla has quit IRC
[02:09:00] *** tplaner has quit IRC
[02:09:23] *** italoacasas has joined #angularjs
[02:10:06] *** tplaner has joined #angularjs
[02:10:07] *** italoacasas has quit IRC
[02:10:47] *** italoacasas has joined #angularjs
[02:11:08] *** w00tner has joined #angularjs
[02:11:11] <w00tner> hello please help
[02:11:59]
<w00tner> im getting data from a service i get an object with 2 properties. i want to create an array of objects for each property so i use something like this: http://pastie.org/10624314#
[02:12:18] <w00tner> So my DashboardService.cancelledSalesData is an array of 2 objects
[02:12:55] <w00tner> the thing is i want to modify a property of the index 0 object in my array. substracting a the value from my other object
[02:13:08] *** Aliks has joined #angularjs
[02:13:26] <w00tner> I cannot do something like DashboardService.cancelledSalesData[0]
[02:13:52] *** TheoMurpse has joined #angularjs
[02:14:25] *** mven has joined #angularjs
[02:15:09] <w00tner> So my DashboardService.cancelledSalesData is an array of 2 objects, the thing is i want to modify a property of the index 0 object in my array. substracting a the value from my other object
[02:15:11] *** nya has joined #angularjs
[02:15:22] *** ccohn has joined #angularjs
[02:15:35] *** nya is now known as Guest9241
[02:15:36] <w00tner> How can i access a specific object property in my array ?
[02:16:52] *** ron_frown has joined #angularjs
[02:18:06] *** steeze has joined #angularjs
[02:19:43] *** ccohn has quit IRC
[02:23:55] <zomg> foo[0].whatever
[02:24:29] *** hackel has joined #angularjs
[02:24:33] <zomg> foo[0] will simply be the object, so you access the properties the same as you'd access on any object
[02:24:48] *** rickmak has quit IRC
[02:25:49] *** p0k0 has joined #angularjs
[02:26:38] *** rickmak has joined #angularjs
[02:27:39] *** nmvuong92 has joined #angularjs
[02:27:46] <nmvuong92> a
[02:27:47] <nmvuong92> b
[02:27:48] <nmvuong92> c
[02:28:37] *** nmvuong92 has quit IRC
[02:29:29] *** one_zero has joined #angularjs
[02:29:49] *** AutomateYourLife has joined #angularjs
[02:29:56] <AutomateYourLife> Hello all :)
[02:29:58] *** baweaver has quit IRC
[02:30:05] *** TheoMurpse has quit IRC
[02:31:04] *** kp666 has quit IRC
[02:32:07] *** Oleander has quit IRC
[02:32:27] <AutomateYourLife> Can anyone help me with a Protractor question?
[02:33:54] *** tplaner has quit IRC
[02:34:01] *** zeezey has quit IRC
[02:34:01] *** zeezey has joined #angularjs
[02:34:44] *** zeioth has quit IRC
[02:36:47] *** kp666 has joined #angularjs
[02:37:03] *** Oleander has joined #angularjs
[02:37:08] *** baweaver has joined #angularjs
[02:38:12] *** Umesh has joined #angularjs
[02:38:18] <Umesh> HI
[02:38:48] <Umesh> $http post calls happening twice, please what will be issue?
[02:39:00] *** OtherAllan has quit IRC
[02:39:37] *** Umesh has quit IRC
[02:40:48] *** johnnyfive has joined #angularjs
[02:41:13] *** jonno11 has quit IRC
[02:41:36] <AutomateYourLife> Is anyone familiar with adding modules/dependencies with Webstorm IDE?
[02:42:33] *** frem has quit IRC
[02:42:46] *** jonno11 has joined #angularjs
[02:44:45] *** OtherAllan has joined #angularjs
[02:44:50] *** c00ljs has quit IRC
[02:45:18] *** Oleander has quit IRC
[02:45:24] *** TheoMurpse has joined #angularjs
[02:45:38] *** iateadonut has quit IRC
[02:47:05] *** SteenJobs has quit IRC
[02:47:54] *** joaoneto has joined #angularjs
[02:51:30] *** Goobbue has quit IRC
[02:52:13] *** joaoneto has quit IRC
[02:53:11] *** junmin has quit IRC
[02:54:51] *** zz_tallsam is now known as tallsam
[02:56:09] *** jhirley has joined #angularjs
[02:57:00] <zomg> AutomateYourLife: I've used Protractor and Selenium's webdriverjs
[02:57:06] *** DavidDudson has joined #angularjs
[02:57:12] <zomg> (which are basically the same thing except protractor puts some angular stuff on top)
[02:58:18] *** nerdfiles has quit IRC
[02:58:43] *** Claies has joined #angularjs
[02:59:01] *** machbio has joined #angularjs
[03:00:01] *** Claies has quit IRC
[03:00:01] *** Christer has quit IRC
[03:00:19] *** jieryn has joined #angularjs
[03:00:27] *** rho has quit IRC
[03:01:19] *** elton has joined #angularjs
[03:01:53] *** pelim has joined #angularjs
[03:02:44] *** baweaver has quit IRC
[03:04:19] *** annlewis has joined #angularjs
[03:04:26] *** ccohn has joined #angularjs
[03:04:29] *** eago has joined #angularjs
[03:04:35] *** ccohn has quit IRC
[03:05:03] *** ccohn has joined #angularjs
[03:05:12] *** Raven has joined #angularjs
[03:05:38] *** phrozensilver has quit IRC
[03:05:39] *** elton has quit IRC
[03:06:29] *** Karasu has quit IRC
[03:06:31] *** OtherAllan has quit IRC
[03:08:07] *** craisins has quit IRC
[03:08:41] *** diegoaguilar has quit IRC
[03:08:46] *** annlewis has quit IRC
[03:09:01] *** SteenJobs has joined #angularjs
[03:09:26] *** ccohn has quit IRC
[03:09:54] *** jonno11 has quit IRC
[03:10:20] *** Aces_Charles has joined #angularjs
[03:10:44] *** craisins has joined #angularjs
[03:11:15] *** fedenunez has joined #angularjs
[03:11:43] *** Aliks has quit IRC
[03:13:19] *** sonofdirt has joined #angularjs
[03:13:28] *** Aliks has joined #angularjs
[03:13:41] *** OtherAllan has joined #angularjs
[03:13:58] *** Jardayn has quit IRC
[03:16:17] *** mven_ has joined #angularjs
[03:16:18] *** ccohn has joined #angularjs
[03:16:34] *** elton has joined #angularjs
[03:16:58] *** eago has quit IRC
[03:17:00] *** SrinivasGowda has joined #angularjs
[03:20:28] *** mven has quit IRC
[03:21:06] *** ccohn has quit IRC
[03:22:03] <AutomateYourLife> If anyone knows how to setup AngularJS/Protractor with Webstorm IDE and wants to make $10 for about 10 minutes of their time...query me :)
[03:22:21] <sonofdirt> soo.. anybody know the best way to integrate foundation? i see this new 'Foundation for Apps' but looks more like a framework with its own gereators reather than something to include as a library
[03:22:39] *** shadowrunner has quit IRC
[03:23:13] *** diegoaguilar has joined #angularjs
[03:23:17] *** mellernoia has quit IRC
[03:25:10] *** ron_frown has quit IRC
[03:27:20] *** Aliks has quit IRC
[03:27:56] *** baweaver has joined #angularjs
[03:28:56] *** compeman has quit IRC
[03:29:21] *** ron_frown has joined #angularjs
[03:30:30] *** w00tner has quit IRC
[03:30:34] *** fedenunez has quit IRC
[03:32:21] *** nerdfiles has joined #angularjs
[03:33:05] <SrinivasGowda> anyone use golang here?
[03:33:44] *** Aliks has joined #angularjs
[03:35:21] *** devPaul has joined #angularjs
[03:35:28] *** Foxandxss has quit IRC
[03:36:14] *** fedenunez has joined #angularjs
[03:40:46] *** OtherAllan has quit IRC
[03:40:56] *** rossk has quit IRC
[03:41:21] *** siba has quit IRC
[03:41:45] *** C0nundrum has joined #angularjs
[03:44:10] *** crystalmaiden has joined #angularjs
[03:44:13] *** swordfish has joined #angularjs
[03:44:25] *** itamarjp has joined #angularjs
[03:44:25] *** itamarjp has joined #angularjs
[03:44:28] *** crystalmaiden has quit IRC
[03:46:17] *** elton has quit IRC
[03:46:26] *** kp666 has quit IRC
[03:47:10] *** dodobrain has joined #angularjs
[03:49:03] <C0nundrum> Hello
[03:51:28] *** fakingfantastic has joined #angularjs
[03:52:37] *** Hink has joined #angularjs
[03:52:43] *** elton has joined #angularjs
[03:52:44]
<fakingfantastic> Hey guys, can someone help me figure out why ng-class is not adding classes to my elm? http://pastie.org/10624432 out-of-stock is literally evaluating "true," and it's not working. HALP!
[03:57:50] *** elton has quit IRC
[03:57:51] *** itamar_ has joined #angularjs
[03:59:46] *** itamarjp has quit IRC
[04:05:06] *** annlewis has joined #angularjs
[04:05:33] *** Aliks has quit IRC
[04:06:17] *** baweaver has quit IRC
[04:07:18] *** sbellina has joined #angularjs
[04:09:32] *** sonofdirt has quit IRC
[04:09:47] *** annlewis has quit IRC
[04:10:08] *** sonofdirt has joined #angularjs
[04:15:11] *** Hink_ has joined #angularjs
[04:16:30] *** schuranator has quit IRC
[04:17:05] *** ccohn has joined #angularjs
[04:18:44] *** Hink has quit IRC
[04:21:26] *** ccohn has quit IRC
[04:22:39] *** b0x has joined #angularjs
[04:22:40] *** b0x has joined #angularjs
[04:23:23] *** b0x has joined #angularjs
[04:23:23] *** b0x has joined #angularjs
[04:24:26] *** rho has joined #angularjs
[04:24:27] *** rho has joined #angularjs
[04:25:34] *** gho5t has joined #angularjs
[04:26:18] *** machbio has quit IRC
[04:27:52] *** tiagoboldt has quit IRC
[04:28:10] *** italoacasas has quit IRC
[04:29:26] *** conan_the_destro has quit IRC
[04:30:02] *** fedenunez1 has joined #angularjs
[04:30:11] *** Oog has joined #angularjs
[04:30:16] *** elton has joined #angularjs
[04:30:27] *** fedenunez has quit IRC
[04:30:43] *** Hink_ has quit IRC
[04:31:31] *** diegoaguilar has quit IRC
[04:38:22] *** tplaner has joined #angularjs
[04:40:08] *** salimfadhley has joined #angularjs
[04:40:25] *** rchavik has joined #angularjs
[04:40:48] *** elton has quit IRC
[04:40:57] *** lumberg has joined #angularjs
[04:41:46] *** salimfadhley has quit IRC
[04:41:58] *** jimklo_ has joined #angularjs
[04:42:03] <C0nundrum> has anyone used nvd3 ?
[04:42:05] *** salimfadhley has joined #angularjs
[04:44:47] *** jhirley has quit IRC
[04:45:06] *** jimklo has quit IRC
[04:45:14] *** elton has joined #angularjs
[04:45:38] <lumberg> How can I render an string with HTML encoded entities using interpolation {{}}?
[04:46:11] *** jimklo_ has quit IRC
[04:48:27] *** joaoneto has joined #angularjs
[04:50:31] *** itamar_ has quit IRC
[04:50:33] *** belugs has joined #angularjs
[04:53:18] *** joaoneto has quit IRC
[04:53:33] *** juddey has quit IRC
[04:56:50] *** belugs has quit IRC
[04:57:13] *** Oog has quit IRC
[04:57:41] *** TheoMurpse has quit IRC
[05:01:16] *** fakingfantastic has quit IRC
[05:01:51] *** owenjones has joined #angularjs
[05:02:39] *** Bubo has quit IRC
[05:04:33] *** sonofdirt has quit IRC
[05:04:43] *** swordfish has quit IRC
[05:05:41] *** gho5t has quit IRC
[05:05:54] *** annlewis has joined #angularjs
[05:06:41] *** zumba_ad_ has joined #angularjs
[05:07:43] *** Oog has joined #angularjs
[05:10:26] *** annlewis has quit IRC
[05:13:47] *** devPaul has quit IRC
[05:14:57] *** stp_ has joined #angularjs
[05:15:05] *** step1step2 has quit IRC
[05:15:31] *** stp_ has quit IRC
[05:17:50] *** ccohn has joined #angularjs
[05:19:32] *** dpicky has quit IRC
[05:22:06] *** ccohn has quit IRC
[05:27:14] *** jacksparrow007 has quit IRC
[05:28:11] *** FIFOd has quit IRC
[05:28:17] *** lumberg has quit IRC
[05:29:36] *** Aliks has joined #angularjs
[05:31:34] *** baweaver has joined #angularjs
[05:32:06] *** DavidDudson has quit IRC
[05:35:09] *** rchavik has quit IRC
[05:36:23] *** zumba_ad_ has quit IRC
[05:36:37] *** rchavik has joined #angularjs
[05:36:53] *** zumba_ad_ has joined #angularjs
[05:39:42] *** burzum has joined #angularjs
[05:40:37] *** swordfish has joined #angularjs
[05:41:06] *** mandric has quit IRC
[05:42:02] *** burzum2 has quit IRC
[05:43:28] *** asteele has quit IRC
[05:43:28] *** tplaner has quit IRC
[05:44:26] *** Aliks has quit IRC
[05:45:20] *** TheoMurpse has joined #angularjs
[05:45:30] *** swordfish has quit IRC
[05:45:51] *** mandric has joined #angularjs
[05:46:35] *** SrinivasGowda has quit IRC
[05:49:03] *** Oog has quit IRC
[05:51:26] *** asteele has joined #angularjs
[05:52:07] *** jacksparrow007 has joined #angularjs
[06:01:28] *** bengillies has joined #angularjs
[06:01:59] *** maciuszek has joined #angularjs
[06:02:31] *** Misere has joined #angularjs
[06:02:54] *** omgztest has joined #angularjs
[06:04:03] <mven_> whoops
[06:05:39] *** rickmak has quit IRC
[06:05:48] *** lemur has joined #angularjs
[06:06:36] *** annlewis has joined #angularjs
[06:07:06] *** bengillies has quit IRC
[06:09:17] *** elton has quit IRC
[06:10:37] *** ron_frown has quit IRC
[06:11:07] *** ron_frown has joined #angularjs
[06:11:33] *** annlewis has quit IRC
[06:12:44] *** jacksparrow007 has quit IRC
[06:13:22] *** GroggleWork has quit IRC
[06:15:06] *** hackel has quit IRC
[06:17:39] *** aks has joined #angularjs
[06:18:33] *** ccohn has joined #angularjs
[06:19:11] *** speeddragon has joined #angularjs
[06:19:39] *** zumba_ad_ has quit IRC
[06:20:01] *** zumba_ad_ has joined #angularjs
[06:20:55] *** smccarthy has quit IRC
[06:21:09] *** AutomateYourLife has quit IRC
[06:23:24] *** ccohn has quit IRC
[06:23:46] *** speeddragon has quit IRC
[06:24:00] *** Bloomer has joined #angularjs
[06:24:21] *** elton has joined #angularjs
[06:24:44] *** rtpg has joined #angularjs
[06:25:22] *** zumba_addict has joined #angularjs
[06:26:35] <zumba_addict> Good news guys for me. I requested Fluent Conference and it got approved. I'll be attending AngularJS2, TypeScript and ES6 workshop :)
[06:27:43] *** Ugolin has joined #angularjs
[06:29:04] *** busticated has quit IRC
[06:34:40] *** kirfu has joined #angularjs
[06:37:43] *** rickmak has joined #angularjs
[06:37:59] *** zumba_ad_ has quit IRC
[06:38:25] *** jieryn has quit IRC
[06:40:23] *** DavidDudson has joined #angularjs
[06:41:50] *** thatslifeson has joined #angularjs
[06:43:02] *** Z3R0 has joined #angularjs
[06:43:15] *** VeeWee has joined #angularjs
[06:43:44] *** VaticanCameos has joined #angularjs
[06:44:15] *** DavidDudson has quit IRC
[06:45:00] *** DavidDudson has joined #angularjs
[06:46:20] *** illume has joined #angularjs
[06:48:09] *** erol has joined #angularjs
[06:48:33] *** Danielyan has joined #angularjs
[06:50:43] *** rishabhmhjn has joined #angularjs
[06:53:21] *** fly_boyz has quit IRC
[06:53:25] *** dreamfighter has quit IRC
[06:54:34] *** doppio|Laptop has joined #angularjs
[06:55:08] *** bbankes has quit IRC
[06:55:20] *** fly_boyz has joined #angularjs
[06:55:54] *** Bloomer has quit IRC
[06:57:44] *** DavidDudson has quit IRC
[06:59:16] *** TheoMurpse has quit IRC
[06:59:24] *** Z3R0 has quit IRC
[06:59:31] *** TheoMurpse has joined #angularjs
[06:59:48] *** DavidDudson has joined #angularjs
[07:00:01] *** TheoMurpse has quit IRC
[07:02:15] *** codeitloadit has quit IRC
[07:06:56] *** lite_ has joined #angularjs
[07:07:21] *** annlewis has joined #angularjs
[07:08:51] *** Aliks has joined #angularjs
[07:09:13] *** owenjones has quit IRC
[07:09:44] <zomg> _b
[07:12:08] *** annlewis has quit IRC
[07:12:41] *** nilsi has joined #angularjs
[07:13:24] *** rscata has joined #angularjs
[07:13:31] *** fedenunez1 has quit IRC
[07:16:28] *** punknroll has joined #angularjs
[07:17:21] *** benvantende has joined #angularjs
[07:17:36] *** EREVAN has joined #angularjs
[07:19:19] *** ccohn has joined #angularjs
[07:19:35] *** baweaver_ has joined #angularjs
[07:20:40] *** rishabhmhjn has quit IRC
[07:20:53] *** Danielyan has quit IRC
[07:20:53] *** EREVAN is now known as Danielyan
[07:21:31] <zumba_addict> what's the icon zomg?
[07:22:11] *** lemur has quit IRC
[07:22:22] <zumba_addict> was my decision right in picking Angular2JS for the workshop? There are other workshops that I can choose from
[07:23:00] *** rishabhmhjn has joined #angularjs
[07:23:26] <zumba_addict> I think I can still change it
[07:23:55] *** ccohn has quit IRC
[07:25:16] *** dszmaj has joined #angularjs
[07:25:36] <zomg> _b is thumbs up
[07:26:25] <zumba_addict> ah cool
[07:26:26] *** tanepiper has quit IRC
[07:26:56] *** dboskovic has quit IRC
[07:26:56] *** augustl has quit IRC
[07:26:56] *** nribeka has quit IRC
[07:27:16] *** augustl has joined #angularjs
[07:27:16] *** tanepiper has joined #angularjs
[07:27:16] *** dboskovic has joined #angularjs
[07:27:19] *** glamb has quit IRC
[07:27:20] *** snkcld has quit IRC
[07:27:25] *** nribeka has joined #angularjs
[07:27:27] *** BeerLover has joined #angularjs
[07:27:41] *** glamb has joined #angularjs
[07:28:27] *** `Reflector` has joined #angularjs
[07:28:42] *** marthinal has joined #angularjs
[07:29:28] *** snkcld has joined #angularjs
[07:29:35] *** maciuszek has quit IRC
[07:30:46] *** VaticanCameos has quit IRC
[07:32:52] *** punknroll has quit IRC
[07:33:20] *** suvdeep has joined #angularjs
[07:33:27] *** jrist has quit IRC
[07:33:52] *** davi has joined #angularjs
[07:33:53] *** davi has joined #angularjs
[07:34:42] *** caz has quit IRC
[07:35:04] *** dbclk has quit IRC
[07:35:05] *** Leon has joined #angularjs
[07:35:29] *** jrist has joined #angularjs
[07:35:29] *** jrist has joined #angularjs
[07:36:54] *** tuskkk___ has joined #angularjs
[07:37:00] *** Aliks has quit IRC
[07:39:55] *** junmin has joined #angularjs
[07:41:55] *** punknroll has joined #angularjs
[07:41:55] *** `Reflector` has quit IRC
[07:42:56] *** VaticanCameos has joined #angularjs
[07:46:36] *** Aliks has joined #angularjs
[07:50:17] *** baweaver_ has quit IRC
[07:50:42] *** lemur has joined #angularjs
[07:54:38] *** cacts has quit IRC
[07:55:46] *** rho has quit IRC
[07:56:11] *** baweaver_ has joined #angularjs
[07:57:44] *** illume has quit IRC
[07:59:10] *** lemur has quit IRC
[07:59:20] *** kirfu1 has joined #angularjs
[08:00:37] *** jetpackjoe has joined #angularjs
[08:00:45] *** kirfu has quit IRC
[08:01:41] *** drag0niu1 has joined #angularjs
[08:03:30] *** Aliks has quit IRC
[08:03:48] *** Aliks has joined #angularjs
[08:04:50] *** drag0nius has quit IRC
[08:05:20] *** ron_frown has quit IRC
[08:05:32] *** ahhhndi has joined #angularjs
[08:05:34] *** illume has joined #angularjs
[08:08:08] *** annlewis has joined #angularjs
[08:08:34] *** doppio|Laptop is now known as doppio|Away
[08:08:53] *** Danielyan has quit IRC
[08:09:33] *** doppio|Away has quit IRC
[08:09:56] *** ahhhndi has quit IRC
[08:10:04] *** ahhhndi has joined #angularjs
[08:11:19] *** rchavik has quit IRC
[08:12:53] *** annlewis has quit IRC
[08:13:16] *** baweaver_ has quit IRC
[08:13:30] *** Mithilesh has joined #angularjs
[08:13:32] *** jacksparrow007 has joined #angularjs
[08:13:52] *** lemur has joined #angularjs
[08:14:15] <Mithilesh> Hi i want to know more about angular webservices
[08:14:32] <Mithilesh> someone have a good link to understand it ??
[08:15:22] <Mithilesh> How angular get data from webservices and represent it on Pages...
[08:15:34] *** kk_drop has joined #angularjs
[08:16:08] *** ahaeger has joined #angularjs
[08:16:36] *** Derolo has joined #angularjs
[08:16:46] *** rchavik has joined #angularjs
[08:16:46] *** tips101_ has quit IRC
[08:16:55] <Derolo> Anyone who has done role based acces?
[08:17:00] *** baweaver_ has joined #angularjs
[08:17:09] <Derolo> implemented with php and angularjs
[08:18:09] <Mithilesh> accessing any webservices either from node or php to get the json data in angular
[08:18:34] *** rchavik has quit IRC
[08:18:46] *** jacksparrow007 has quit IRC
[08:19:34] *** lemur has quit IRC
[08:20:03] *** ccohn has joined #angularjs
[08:20:20] *** dopesong has quit IRC
[08:21:06] *** GroggleWork has joined #angularjs
[08:22:06] *** dszmaj has quit IRC
[08:22:44] <Derolo> Anyone
[08:22:51] *** dszmaj has joined #angularjs
[08:22:59] *** svycka has joined #angularjs
[08:24:40] *** ccohn has quit IRC
[08:25:12] *** dan2k3k4 has joined #angularjs
[08:25:13] *** iateadonut has joined #angularjs
[08:25:27] *** GroggleWork has quit IRC
[08:25:34] *** salimfadhley has quit IRC
[08:25:52] *** doppio|Laptop has joined #angularjs
[08:28:46] *** rishabhmhjn has quit IRC
[08:29:22] *** mmoore500 has joined #angularjs
[08:29:32] *** nerdfiles has quit IRC
[08:30:10] *** dan2k3k4 has quit IRC
[08:30:40] *** rishabhmhjn has joined #angularjs
[08:30:55] *** spriz is now known as spriz_away
[08:30:56] *** spriz_away is now known as spriz
[08:31:15] *** flyours has joined #angularjs
[08:31:56] *** owenjones has joined #angularjs
[08:32:31] *** swordfish has joined #angularjs
[08:32:49] *** flyours has quit IRC
[08:33:06] *** suvdeep has quit IRC
[08:33:56] *** jdo_dk has joined #angularjs
[08:34:04] *** Z3R0 has joined #angularjs
[08:34:25] *** Aces_Charles has left #angularjs
[08:34:42] *** Aces_Charles has joined #angularjs
[08:35:13] *** Mithilesh has quit IRC
[08:35:50] *** Daerist has joined #angularjs
[08:36:11] *** MrBaboon has joined #angularjs
[08:36:17] *** DavidDudson has quit IRC
[08:36:42] *** Debnet has joined #angularjs
[08:36:43] *** swordfish has quit IRC
[08:37:09] *** owenjones has quit IRC
[08:38:41] *** Bilal has joined #angularjs
[08:41:37] *** icebox has joined #angularjs
[08:41:52] *** cebor has quit IRC
[08:42:06] *** DavidDudson has joined #angularjs
[08:42:37] *** cebor has joined #angularjs
[08:42:55] *** Derolo has quit IRC
[08:43:25] *** jetpackjoe has quit IRC
[08:43:45] *** Z3R0 has quit IRC
[08:47:34] *** Sky[x] has joined #angularjs
[08:48:05] *** DavidDudson has quit IRC
[08:49:03] *** rishabhmhjn has quit IRC
[08:49:17] *** ahhhndi has quit IRC
[08:52:12] *** george_v has joined #angularjs
[08:52:47] *** _Penguin has quit IRC
[08:53:01] *** OliverJ has joined #angularjs
[08:53:17] *** rishabhmhjn has joined #angularjs
[08:53:49] *** dan2k3k4 has joined #angularjs
[08:53:57] *** DavidDudson has joined #angularjs
[08:54:58] *** tarnus has quit IRC
[08:55:33] *** Bilal has quit IRC
[08:57:50] *** Misere has quit IRC
[08:58:55] *** DavidDudson has quit IRC
[08:59:03] *** juddey has joined #angularjs
[08:59:52] *** zeezey has quit IRC
[09:00:10] *** maybefbi has joined #angularjs
[09:00:24] <maybefbi> how sure can we be that "angular material" will continue getting support/upgrades forever?
[09:00:56] *** dodobrain has quit IRC
[09:00:57] *** suvdeep has joined #angularjs
[09:02:06] *** marthinal has quit IRC
[09:02:39] *** plekplek has joined #angularjs
[09:03:06] *** tfry has quit IRC
[09:03:14] <icebox> maybefbi: the same question valid is any commercial product by BIG company... the answer: you cannot be sure
[09:04:09] <maybefbi> ok
[09:04:24] <maybefbi> but google has a history of abandoning products no?
[09:04:33] <maybefbi> plus they have similar product polymer
[09:04:44] <maybefbi> so one of them will die in the long run
[09:04:46] <icebox> maybefbi: in a world where things are old after six months, that is a philosophical question :)
[09:04:54] *** bengillies has joined #angularjs
[09:05:22] *** Ronyrun has joined #angularjs
[09:05:24] <maybefbi> i want people to use my product for twice six months at least
[09:05:41] <icebox> "google has a history..." doesn't mean anything :)
[09:06:03] <icebox> all things or people die in the long run
[09:06:41] <icebox> maybefbi: that period it is not a problem
[09:06:47] <mmoore500> i'm trying to get disqus working. i've got it in a view that changes with "next/last" nav. It loads on the first page, blank of others. Looks like the request is sent before DOM is loaded. Not sure how to fix this
[09:06:50] *** Garfield-fr has joined #angularjs
[09:07:40] <icebox> maybefbi: but nowadays the teams need to take care the apps maintaining with updates and upgrades... otherwise they are old quite quickly
[09:08:15] *** schneider has joined #angularjs
[09:08:54] *** annlewis has joined #angularjs
[09:09:26] *** bengillies has quit IRC
[09:09:36] *** denisra_ has quit IRC
[09:10:02] *** denisra_ has joined #angularjs
[09:10:09] <maybefbi> yeah
[09:11:21] *** MikaAK has quit IRC
[09:12:37] *** elsevero has joined #angularjs
[09:13:02] *** zeezey has joined #angularjs
[09:13:59] *** annlewis has quit IRC
[09:15:35] *** Bloomer has joined #angularjs
[09:18:30] *** xtreamwayz has joined #angularjs
[09:19:14] *** fscala has quit IRC
[09:20:15] *** fscala has joined #angularjs
[09:20:27] *** dopesong has joined #angularjs
[09:20:48] *** ccohn has joined #angularjs
[09:21:12] *** Dmitri has joined #angularjs
[09:21:20] *** benvantende has quit IRC
[09:22:35] *** tangorri has joined #angularjs
[09:22:36] *** benvantende has joined #angularjs
[09:24:47] *** maybefbi has left #angularjs
[09:25:18] *** ccohn has quit IRC
[09:25:56] *** AndrewIsh has joined #angularjs
[09:26:20] *** yky has joined #angularjs
[09:26:44] *** yky is now known as Guest58547
[09:27:55] *** MrBaboon has quit IRC
[09:30:42] *** Left_Turn has quit IRC
[09:31:33] *** Left_Turn has joined #angularjs
[09:34:28] *** junmin has quit IRC
[09:35:31] *** ahhhndi has joined #angularjs
[09:36:05] *** mmoore500 has left #angularjs
[09:36:22] *** marie1972 has joined #angularjs
[09:37:40] *** ahhhhndi has joined #angularjs
[09:38:48] *** marthinal has joined #angularjs
[09:39:06] *** elsevero has quit IRC
[09:39:27] *** dbclk has joined #angularjs
[09:39:38] *** Bodin has joined #angularjs
[09:40:02] *** ahhhndi has quit IRC
[09:41:57] *** simion314 has joined #angularjs
[09:42:33] *** Bloomer has quit IRC
[09:45:22] *** senayar has joined #angularjs
[09:45:22] *** senayar has joined #angularjs
[09:48:32] *** Daerist has quit IRC
[09:48:43] *** marr has joined #angularjs
[09:49:06] *** VaticanCameos has quit IRC
[09:49:47] *** guilbep has joined #angularjs
[09:50:33] *** Aliks has quit IRC
[09:53:30] *** k3rb5 has joined #angularjs
[09:54:17] *** davi has quit IRC
[09:54:36] *** aks has quit IRC
[09:55:34] *** elton has quit IRC
[09:56:59] <dan2k3k4> I have an angular directive on say '#someId' with a watch for model changes... but from some other jQuery file, I do a $('#someId').val(newVal).trigger('change', data); -> I have to trigger so that angular gets updated, but is there anyway from the directive controller for the $watch lines, that I can listen for the trigger change and if data.notUpdate is defined - not to run a line of code (that calls up the autocomplete suggestions for
[09:56:59] <dan2k3k4> map js)
[09:57:26] *** aks has joined #angularjs
[09:57:54] *** DavidDudson has joined #angularjs
[09:59:11] *** zeezey has quit IRC
[09:59:47] *** Misere has joined #angularjs
[09:59:53] *** Aces_Charles has quit IRC
[10:00:02] *** Misere has quit IRC
[10:01:00] *** wafflejock has quit IRC
[10:01:02] *** simion314 has quit IRC
[10:01:07] *** intellix has joined #angularjs
[10:01:35] *** speeddragon has joined #angularjs
[10:02:03] *** cotko has joined #angularjs
[10:02:03] *** elsevero has joined #angularjs
[10:02:19] *** kladrian has joined #angularjs
[10:03:06] *** ahaeger has quit IRC
[10:04:31] *** moep has joined #angularjs
[10:05:46] *** drptbl has joined #angularjs
[10:06:00] *** Bloomer has joined #angularjs
[10:06:11] *** bengillies has joined #angularjs
[10:06:25] *** speeddragon has quit IRC
[10:06:25] *** DavidDudson has quit IRC
[10:06:39] <moep> sup
[10:09:36] *** Flashwit has quit IRC
[10:09:41] *** annlewis has joined #angularjs
[10:09:44] *** DavidDudson has joined #angularjs
[10:09:46] *** cornerma1 has joined #angularjs
[10:09:49] *** cornerman has quit IRC
[10:09:54] *** cornerma1 is now known as cornerman
[10:09:56] *** pritt has joined #angularjs
[10:10:23] *** daslicht has joined #angularjs
[10:10:26] *** bengillies has quit IRC
[10:10:29] *** iraj has joined #angularjs
[10:11:41] *** ahaeger has joined #angularjs
[10:13:51] *** Aliks has joined #angularjs
[10:14:13] *** annlewis has quit IRC
[10:14:28] *** jacksparrow007 has joined #angularjs
[10:14:51] *** zotune has joined #angularjs
[10:15:27] *** GroggleWork has joined #angularjs
[10:16:52] *** BinaryX has joined #angularjs
[10:17:26] *** DavidDudson has quit IRC
[10:18:07] <BinaryX> hey guys, i have a problem with ng-pattern i hope someone can help me with: I want it to match norwegian numbers: such as 0047 12345678, +47 12345678 or 47 12345678 (without the space between 47 and the 8 digits)
[10:18:13] <BinaryX> would appreciate the help
[10:18:42] *** Rebirth has joined #angularjs
[10:19:42] *** liamonade has joined #angularjs
[10:19:44] *** jacksparrow007 has quit IRC
[10:20:22] *** GroggleWork has quit IRC
[10:21:34] *** ccohn has joined #angularjs
[10:22:03] *** Max2710 has joined #angularjs
[10:22:09] <BinaryX> lol, that is my coworker.....
[10:22:14] *** elsevero has quit IRC
[10:22:15] <BinaryX> problem is it works for java
[10:22:23] <BinaryX> but not for ng-pattern
[10:22:23] *** DavidDudson has joined #angularjs
[10:22:34] *** elsevero has joined #angularjs
[10:22:35] *** Max2710 has quit IRC
[10:22:35] *** vrockai has joined #angularjs
[10:22:40] <icebox> BinaryX: ok... as exercise, you can port it to javascript
[10:23:17] *** rchavik has joined #angularjs
[10:23:47] <dan2k3k4> ok how can I get the attr: 'data-place-id' ?
[10:23:52] <dan2k3k4> from my directives' controller ?
[10:24:26] <icebox> dan2k3k4: in link method there is attrs argument
[10:25:17] <dan2k3k4> icebox and would it still pickup if the page is loaded -> then the attribute is added "after" ?
[10:25:32] <icebox> dan2k3k4: sorry?
[10:25:55] *** ccohn has quit IRC
[10:26:23] *** Guest58547 has quit IRC
[10:26:23] <dan2k3k4> page loads link/template: has say: <div id></div> - then if you change a different part of the form, it performs a $(div id).val(someVar) and also does .attr('newAttr', someOtherVal);
[10:26:24] <moep> BinaryX just a silly question but do you have numbers like this in Norway then? 47474747 === +4747474747 === 004747474747 === 4747474747
[10:26:45] <icebox> dan2k3k4: sorry... I don't follow you
[10:26:57] <dan2k3k4> icebox so newAttr doesn't exist in the template/link on page load, it's only after when someone changes the form that the attribute is added
[10:27:08] *** jackson has joined #angularjs
[10:27:15] *** DavidDudson has quit IRC
[10:27:15] <dan2k3k4> as in: is link called after page load ?
[10:27:21] *** jackson has quit IRC
[10:27:21] <dan2k3k4> or only once ?
[10:27:41] <icebox> dan2k3k4: you can watch for attrs changes
[10:27:56] *** bengillies has joined #angularjs
[10:30:14] *** iiminov has joined #angularjs
[10:30:30] *** juddey has quit IRC
[10:30:44] <dan2k3k4> icebox watch in the link ?
[10:31:03] <iiminov> greetings everyone. small question about async bootstraping if i may.
[10:31:23] *** DavidDudson has joined #angularjs
[10:31:39] <icebox> dan2k3k4: yes
[10:32:27] <iiminov> how can i do something like this; angular.bootstrap(document.getElementById("MyApp-<%= ModuleId %>"), ['myApp'], { ModuleId: <%= ModuleId %>, });
[10:32:40] <dan2k3k4> icebox scope.$watch(attrs, function() { scope.attrs = attrs; }); ?
[10:33:06] *** rtpg has quit IRC
[10:33:27] <BinaryX> moep and icebox: i found the solution
[10:33:35] <BinaryX> regex: /^(0047|\+47|47)?[0-9]{8}$/
[10:33:38] <BinaryX> seems to work
[10:34:13] <icebox> BinaryX: well... nice... :) do we need to call the press? :)
[10:34:13] <BinaryX> mpen, no the country code must be included in this particular regex, either 47, 0047 or +47 then 8 digist
[10:34:16] *** doppio|Laptop has quit IRC
[10:34:27] <BinaryX> i think this calls for a celebration icebox, yes
[10:34:32] <BinaryX> I can go home now
[10:34:33] <icebox> BinaryX: :P
[10:34:47] <moep> BinaryX so you HAVE to have the country code then?
[10:34:58] <BinaryX> yes
[10:35:01] *** Hounddog has joined #angularjs
[10:35:08] *** DavidDudson has quit IRC
[10:35:11] <moep> Ah ok
[10:35:28] *** jlebrech has joined #angularjs
[10:35:41] *** DavidDudson has joined #angularjs
[10:35:56] *** c00ljs has joined #angularjs
[10:36:01] *** dutis has joined #angularjs
[10:36:26] *** sbellina has quit IRC
[10:37:49] *** DavidDudson has quit IRC
[10:39:30] *** iiminov has quit IRC
[10:39:41] <dan2k3k4> icebox doing a watch with console.log(attrs) - doesn't change/call up when I change the attr from outside angular
[10:39:43] *** sbellina has joined #angularjs
[10:39:47] <dan2k3k4> or seems to just call once
[10:40:12] *** n00bdev has joined #angularjs
[10:40:26] *** kitcat711 has quit IRC
[10:42:49] <BinaryX> I'm so happy....(crying). My nexus internal npm repo works.
[10:42:58] <BinaryX> Blessed be the lords of the digital realm
[10:43:59] *** GeertJohan|afk is now known as GeertJohan
[10:44:14] *** rchavik_ has joined #angularjs
[10:44:33] *** Aces_Charles has joined #angularjs
[10:44:42] *** rchavik_ has quit IRC
[10:44:48] *** tomphp has joined #angularjs
[10:46:00] *** speeddragon has joined #angularjs
[10:48:02] *** rchavik has quit IRC
[10:48:14] *** chronos has quit IRC
[10:48:19] <icebox> dan2k3k4: you need to do by steps... firstly implement an angular snippet where the attrs are watched and when they change you catch it... then you try to change the attrs from outside
[10:48:37] *** crono has joined #angularjs
[10:49:11] <dan2k3k4> icebox yeah I mean I have inside link: scope.$watch(attrs, function() { console.log(attrs); });
[10:49:12] *** skunkz has joined #angularjs
[10:49:24] <dan2k3k4> which works, on page load- it shows the attrs for the element (template)
[10:49:34] <skunkz> Hi guys, I'm trying to return a directive from a service, which should set up 2 way databinding with a value in another service
[10:49:50] <skunkz> Is $compile enough for this ?
[10:49:56] <icebox> dan2k3k4: watching attrs works. point. :)
[10:50:17] <dan2k3k4> but when I change the elements attributes with $(elem).attr(something, value) - it doesn't work... and neither does it update/re-call the attrs watch if I select something from the list
[10:50:33] <icebox> dan2k3k4: of course the implementation is not correct
[10:51:39] <icebox> BinaryX: that is very nice
[10:51:42] *** VaticanCameos has joined #angularjs
[10:51:55] *** baweaver_ has quit IRC
[10:52:05] *** aks has quit IRC
[10:52:15] *** duall has joined #angularjs
[10:52:30] *** lemur has joined #angularjs
[10:52:32] <duall> is it possible to do ng-bind="::something" ? for one time binding
[10:52:39] <dan2k3k4> icebox scope.$watch(attrs, function() {
[10:53:49] *** mayu has joined #angularjs
[10:54:08] <mayu> Hi
[10:54:13] *** mayu is now known as Guest50001
[10:54:15] *** baweaver has quit IRC
[10:54:20] *** pelim has quit IRC
[10:54:26] *** pelim has joined #angularjs
[10:54:28] <Guest50001> Hy
[10:54:34] *** baweaver has joined #angularjs
[10:54:39]
<skunkz> I get this <text-field> directive rendered but still can't manage to set up databinding, any clue ? http://pastebin.com/UdKgbiWP
[10:54:40] *** Guest50001 has quit IRC
[10:54:45] *** x3al_ has joined #angularjs
[10:55:26] <icebox> dan2k3k4: firstly no need to write 300 LOC to show how to watch attrs... :) my suggestion is playing with a plunker (ten lines or less) to grasp that feature (watching attrs). After it works correctly, you can start to change the attrs outside angular world.
[10:55:54] <icebox> dan2k3k4: really there are many resource about watching attrs
[10:56:02] *** elton has joined #angularjs
[10:56:06] *** Aliks has quit IRC
[10:56:07] *** kirfu1 has quit IRC
[10:56:09] *** janez has joined #angularjs
[10:56:10] *** aks has joined #angularjs
[10:56:13] *** tarnus has joined #angularjs
[10:56:21] *** janez has left #angularjs
[10:56:34] *** janez has joined #angularjs
[10:56:43] *** n00bdev has quit IRC
[10:57:44] *** x3al has quit IRC
[10:58:06] <duall> <title ng-bind="::pageTitle"></title> the page title is still changing... why ?
[11:00:26] *** tarnus has quit IRC
[11:01:01] *** elton has quit IRC
[11:01:07] *** lnrdo has joined #angularjs
[11:01:33] *** wafflejock has joined #angularjs
[11:01:35] *** mynameiswhat has joined #angularjs
[11:05:06] <senayar> which version of angular
[11:06:27] *** speeddragon has quit IRC
[11:07:18] *** pelim has quit IRC
[11:07:54] *** dopesong has quit IRC
[11:09:17] *** dopesong has joined #angularjs
[11:10:26] *** annlewis has joined #angularjs
[11:12:03] *** Bodin has quit IRC
[11:12:12] *** pelim has joined #angularjs
[11:12:22] *** Bodin has joined #angularjs
[11:14:57] *** swordfish has joined #angularjs
[11:15:19] *** annlewis has quit IRC
[11:15:38] *** dpicky has joined #angularjs
[11:15:48] *** gege_ has quit IRC
[11:15:53] *** Aliks has joined #angularjs
[11:16:22] *** Coldblackice has quit IRC
[11:16:26] *** pelim has quit IRC
[11:18:05] <dan2k3k4> icebox what if I use something like: controller: ['$scope', '$attrs', function ($scope, $attrs) {
[11:18:21] <dan2k3k4> but then still don't have a $attrs.placeid -_-
[11:18:44] *** storresi has joined #angularjs
[11:19:29] <icebox> dan2k3k4: google is your friend :)
[11:19:46] *** swordfish has quit IRC
[11:22:08] *** Guest9241 has quit IRC
[11:22:18] *** ccohn has joined #angularjs
[11:22:43] *** nya has joined #angularjs
[11:23:06] *** nya is now known as Guest88324
[11:23:10] *** rickmak has quit IRC
[11:23:31] *** FIFOd has joined #angularjs
[11:26:11] *** dutis has quit IRC
[11:26:13] *** lnrdo has quit IRC
[11:26:45] *** Aliks has quit IRC
[11:26:46] *** Guest88324 has quit IRC
[11:26:51] *** lnrdo has joined #angularjs
[11:27:08] *** ccohn has quit IRC
[11:27:17] *** Tennis has joined #angularjs
[11:27:21] *** mischat has joined #angularjs
[11:27:37] *** mischat has quit IRC
[11:28:02] *** daslicht has quit IRC
[11:28:04] *** mischat has joined #angularjs
[11:28:40] *** FIFOd has quit IRC
[11:29:04] <senayar> $attr is not available in controller
[11:29:08] <senayar> only in link function
[11:29:31] <dan2k3k4> so it returns $element senayar ?
[11:30:18] <senayar> if you want to do something on element do it in the link function also
[11:30:27] *** codeman has joined #angularjs
[11:30:31] *** thatslif_ has joined #angularjs
[11:30:55] *** owenjones has joined #angularjs
[11:31:40] *** lnrdo has quit IRC
[11:31:48] <dan2k3k4> I just want to 'see' the updated attribute "placeid" (which seems to always be empty in my controller function of the directive) :/
[11:32:12] <dan2k3k4> added to scope: placeid: '=placeid'
[11:32:34] *** thatslifeson has quit IRC
[11:32:46] <dan2k3k4> added to template: <div><input placeid={{ attrs.placeid }}
[11:33:15] <dan2k3k4> but attrs always empty even though $(input).attr(placeid, '123')
[11:34:32] <senayar> sorry i was wrong
[11:34:51] *** zeioth has joined #angularjs
[11:34:53] <senayar> you can access to $attrs and $element in controller but don't do DOM manipulation
[11:35:02] *** Dmitri has quit IRC
[11:35:38] *** owenjones has quit IRC
[11:35:58] *** FIFOd has joined #angularjs
[11:36:21] <dan2k3k4> senayar yeah I have my code similar to the answer :/
[11:37:09] *** baweaver has quit IRC
[11:37:19] *** uNki has joined #angularjs
[11:37:30] *** dpicky_ has joined #angularjs
[11:38:17] *** sbellina has quit IRC
[11:38:42] *** m8 has joined #angularjs
[11:39:46] *** dpicky has quit IRC
[11:41:15] *** baweaver has joined #angularjs
[11:42:29] *** p0k0 has quit IRC
[11:43:05] *** emma_ has joined #angularjs
[11:43:24] *** aks has quit IRC
[11:43:42] *** emma_ has quit IRC
[11:43:48] <senayar> angular is not defined in your fiddle :o
[11:43:59] <senayar> !plnkr
[11:44:01] *** abby_ has joined #angularjs
[11:44:03] *** senayar has left #angularjs
[11:44:03] *** senayar has joined #angularjs
[11:44:08] *** lemur has quit IRC
[11:44:08] <abby_> hello
[11:44:21] <abby_> can anyone tell me three level of nesting in ng-options
[11:44:24] *** Bloomer has quit IRC
[11:44:48] *** b0x has quit IRC
[11:45:28] *** illume has quit IRC
[11:45:50] *** Dmitri has joined #angularjs
[11:45:53] *** suvdeepb has joined #angularjs
[11:45:59] *** aks has joined #angularjs
[11:46:36] *** ahhhhndi has quit IRC
[11:46:46] *** suvdeep has quit IRC
[11:46:57] *** aks has quit IRC
[11:47:18] *** Dmitri has quit IRC
[11:47:23] *** aks has joined #angularjs
[11:47:50] <abby_> can anyone tell me three level of nesting in ng-options
[11:48:02] *** iceball has joined #angularjs
[11:48:14] *** stephen has joined #angularjs
[11:48:56] *** FIFOd has quit IRC
[11:49:07] *** green_ has joined #angularjs
[11:50:40] *** green_ has quit IRC
[11:50:59] *** PeterBooker has joined #angularjs
[11:52:04] *** Debnet has quit IRC
[11:52:08] *** Debnet`Work has joined #angularjs
[11:52:12] *** aks has quit IRC
[11:52:41] *** aks has joined #angularjs
[11:53:27] *** CaShY_ has joined #angularjs
[11:53:42] *** p0k0 has joined #angularjs
[11:54:26] *** AndrewIsh has quit IRC
[11:54:41] *** lnrdo has joined #angularjs
[11:55:34] *** FIFOd has joined #angularjs
[11:55:36] *** aks has quit IRC
[11:55:46] *** suvdeepb has quit IRC
[11:55:59] *** itamar_ has joined #angularjs
[11:56:30] *** AndrewIsh has joined #angularjs
[11:56:30] *** lnrdo has quit IRC
[11:56:36] *** lnrdo_ has joined #angularjs
[11:57:06] *** elton has joined #angularjs
[11:58:13] *** FIFOd has quit IRC
[11:58:17] *** stephen has quit IRC
[11:59:30] *** aks has joined #angularjs
[12:00:44] *** BinaryX has quit IRC
[12:01:42] *** elton has quit IRC
[12:03:15] <EdwardIII> hrm stuck on this one issue
[12:03:27] <EdwardIII> basically i have a datepicker, and i need to dynamically change a callback it relies on
[12:03:34] <EdwardIII> so i can do that
[12:03:40] <EdwardIII> but the damned datepicker doesn't call it when i want heh
[12:04:59] *** tiagoboldt has joined #angularjs
[12:06:06] *** \du has joined #angularjs
[12:06:06] *** \du has joined #angularjs
[12:07:26] *** ahaeger has quit IRC
[12:07:41] *** lnrdo has joined #angularjs
[12:08:13] *** ukk has joined #angularjs
[12:08:51] *** dbclk has quit IRC
[12:09:43] *** itamar__ has joined #angularjs
[12:10:47] *** lnrdo_ has quit IRC
[12:11:13] *** iceball has quit IRC
[12:11:14] *** annlewis has joined #angularjs
[12:11:19] *** LithStud has joined #angularjs
[12:13:36] *** itamar_ has quit IRC
[12:15:18] *** jacksparrow007 has joined #angularjs
[12:16:23] *** annlewis has quit IRC
[12:16:33] *** lnrdo has quit IRC
[12:17:06] *** lnrdo has joined #angularjs
[12:18:21] *** gege_ has joined #angularjs
[12:18:22] *** Ugolin has quit IRC
[12:18:40] *** senayar has quit IRC
[12:18:41] <gege_> when does angular emit $routeChangeError?
[12:19:08] *** logan_ has joined #angularjs
[12:19:32] *** logan_ is now known as Guest93846
[12:19:44] *** Guest93846 has quit IRC
[12:19:53] *** jacksparrow007 has quit IRC
[12:21:06] *** nya has joined #angularjs
[12:21:27] *** aks has quit IRC
[12:21:30] *** nya is now known as Guest6151
[12:22:05] *** jdo_dk has left #angularjs
[12:22:13] *** elyssonmr has joined #angularjs
[12:22:39] <EdwardIII> is there a way to force a notify of a property update without changing the value? i tried $scope.thing = $scope.thing, didn't work. which kinda makes sense
[12:22:59] *** aks has joined #angularjs
[12:23:05] *** ccohn has joined #angularjs
[12:23:58] *** dan2k3k4 has quit IRC
[12:25:06] *** itamar__ has quit IRC
[12:26:53] *** Dev0n has quit IRC
[12:27:07] *** annlewis has joined #angularjs
[12:27:26] *** ccohn has quit IRC
[12:27:27] *** Aliks has joined #angularjs
[12:27:38] *** Dev0n has joined #angularjs
[12:28:49] *** Daerist has joined #angularjs
[12:31:30] <EdwardIII> hacked it, i just clone the object
[12:31:38] *** dan2k3k4 has joined #angularjs
[12:31:46] *** Aliks has quit IRC
[12:32:26] *** crono has quit IRC
[12:33:22] *** Dmitri has joined #angularjs
[12:34:50] *** crono has joined #angularjs
[12:36:16] *** svycka has quit IRC
[12:37:26] *** annlewis has quit IRC
[12:38:20] *** fees has joined #angularjs
[12:38:26] *** leolove has quit IRC
[12:39:17] *** thirdknife has joined #angularjs
[12:40:28] *** leolove has joined #angularjs
[12:40:41] *** fees has quit IRC
[12:40:57] *** fees has joined #angularjs
[12:41:23] *** Dmitri has quit IRC
[12:42:29] *** GroggleWork has joined #angularjs
[12:43:17] *** aks has quit IRC
[12:46:15] <fleetfox> EdwardIII: not sure what you mean by "notify" but you should probably use apply/digest
[12:46:45] *** GroggleWork has quit IRC
[12:46:47] <EdwardIII> i'm still kinda struggling with a nice way to structure my apps tbh
[12:46:51] <EdwardIII> i've switched to using VMs
[12:46:59] *** Ugolin has joined #angularjs
[12:47:06] <EdwardIII> but the VMs kind of always end up needing knowledge about $scope themselves
[12:47:15] <fleetfox> VMs?
[12:47:16] <abby_> can anyone tell me three level of nesting in ng-options
[12:47:19] <EdwardIII> view models
[12:47:32] <abby_> how ?
[12:49:24] *** Nino has joined #angularjs
[12:49:36] <Nino> hi guys
[12:50:15] *** mellernoia has joined #angularjs
[12:50:27] *** cotko has quit IRC
[12:50:59] *** Dmitri has joined #angularjs
[12:51:00] *** nuB has joined #angularjs
[12:51:21] *** pkeuter has joined #angularjs
[12:51:32] *** thatslif_ has quit IRC
[12:52:06] <Nino> I would to integrate alpaca with angular. Are there any guide?
[12:52:19] *** nuB has quit IRC
[12:52:42] *** jay123 has joined #angularjs
[12:52:52] *** shiriru has joined #angularjs
[12:53:37] *** illume has joined #angularjs
[12:54:29] <jay123> how to hide image in angularjs
[12:54:53] * EdwardIII reads your link
[12:55:20] *** svycka has joined #angularjs
[12:56:02] <abby_> can anyone tell me three level of nesting in ng-options
[12:56:08] <abby_> like a tree view in drop down
[12:57:03] *** tarnus has joined #angularjs
[12:57:26] <gege_> jay123, ng-hide?
[12:57:51] *** itamar__ has joined #angularjs
[12:57:53] *** elton has joined #angularjs
[12:58:08] <jay123> not working
[12:58:25] <gege_> abby_ if I recall you need to write your own directive for that. ng-options is not particularly powerful
[12:58:47] <gege_> jay123, then you are doing something wrong
[12:58:50] <gege_> it should work
[12:59:07] <jay123> can you send me sample code
[12:59:30] *** pritt has quit IRC
[13:00:53] *** bbankes has joined #angularjs
[13:01:06] *** tarnus has quit IRC
[13:01:10] *** mandric has quit IRC
[13:03:28] *** elton has quit IRC
[13:03:50] *** dopesong has quit IRC
[13:03:50] *** dopesong_ has joined #angularjs
[13:03:58] *** c00ljs has quit IRC
[13:05:06] *** itamar__ has quit IRC
[13:05:18] *** dopesong_ has quit IRC
[13:06:05] *** m8 has quit IRC
[13:06:44] *** dopesong has joined #angularjs
[13:06:49] <EdwardIII> fleetfox: that link was great, thanks
[13:07:39] *** dopesong has quit IRC
[13:07:53] <fleetfox> EdwardIII: if you are not yet invested in angular1, i suggest looking at angular2
[13:09:06] *** dopesong has joined #angularjs
[13:11:13] *** tangorri has quit IRC
[13:12:02] *** dopesong has quit IRC
[13:12:17] <EdwardIII> fleetfox: i'm fairly heavily invested in angular1
[13:12:30] <EdwardIII> well, by that i mean i have a number of production projects that use it
[13:12:56] <EdwardIII> it made me feel more sane when i was reading the parts in his doc saying there are lots of seemingly pointless ways to do the same thing
[13:14:20] *** cotko has joined #angularjs
[13:14:59] *** jlebrech has quit IRC
[13:16:01] *** one_zero has quit IRC
[13:16:09] *** aks has joined #angularjs
[13:17:33] *** pelim has joined #angularjs
[13:19:20] *** CaShY_ has quit IRC
[13:19:33] *** jlebrech has joined #angularjs
[13:21:28] <tombee> When using ui-router, is there a way that a Controller can get the $fromState?
[13:22:17] *** baweaver has quit IRC
[13:23:50] *** ccohn has joined #angularjs
[13:24:02] *** iraj has quit IRC
[13:24:05] *** baweaver has joined #angularjs
[13:24:17] *** realz has quit IRC
[13:24:33] *** realz has joined #angularjs
[13:24:55] *** tiagoboldt has quit IRC
[13:25:53] *** tiagoboldt has joined #angularjs
[13:26:20] *** tangorri has joined #angularjs
[13:26:42] <gege_> tombee, maybe as a resolve parameter?
[13:27:13] *** abby_ has quit IRC
[13:27:30] *** cocao has joined #angularjs
[13:28:21] *** ccohn has quit IRC
[13:28:23] *** Sky[x] has quit IRC
[13:28:27] <tombee> Ah.. let's try that
[13:28:44] *** swordfish has joined #angularjs
[13:29:39] *** baweaver has quit IRC
[13:31:38] *** fscala has quit IRC
[13:33:10] *** jay123 has quit IRC
[13:33:21] *** cocao has quit IRC
[13:33:36] *** fscala has joined #angularjs
[13:33:37] *** annlewis has joined #angularjs
[13:33:57] *** FIFOd has joined #angularjs
[13:35:16] *** tuskkk___ has quit IRC
[13:35:36] *** dpicky_ has quit IRC
[13:36:09] *** dpicky has joined #angularjs
[13:37:26] *** leolove has quit IRC
[13:37:35] <tombee> gege_: so, at "resolve" time.. I need to be able to pass in the current state, right? Any ideas what I would need to into my resolve function to get that info?
[13:37:50] *** leolove has joined #angularjs
[13:38:06] *** annlewis has quit IRC
[13:42:34] *** Guest22 has joined #angularjs
[13:42:44] *** Guest22 is now known as Lunks
[13:43:33] *** mandric has joined #angularjs
[13:43:58] <gege_> well on a quick look i only found one option to do what you ask for
[13:44:59] <gege_> you can watch the broadcast for $stateChangeSuccess on $rootScope and save the previous state from the anonymous inner function
[13:45:20] *** kablaaam has joined #angularjs
[13:45:40] <gege_> $rootScope.$on('$stateChangeSuccess', function(event, current, previous, rejection) { //logger.debug(event, current, previous, rejection); });
[13:46:26] <tombee> Ah okay, yeah. That's how i'd been doing it so far, was hoping I could have done it without injecting this info into rootScope :)
[13:46:29] <gege_> does anyone know how to define a default state or a redirect with ui-router
[13:46:36] *** Dmitri has quit IRC
[13:46:57] *** aks has quit IRC
[13:47:10] <gege_> tombee, i'm not seeing any other way since there is no way to get the states but in the broadcast functions
[13:47:24] <tombee> yeah me neither
[13:47:43] *** anix has joined #angularjs
[13:47:59] *** FIFOd has quit IRC
[13:48:01] <gege_> i dont consider it ugly, since all you do is save states
[13:48:27] <gege_> you could also look in $location.history - but that would give you the url not the state
[13:48:36] <gege_> which is kind of the same thing but different
[13:49:56] *** kk_drop has quit IRC
[13:50:04] *** Dmitri has joined #angularjs
[13:53:38] *** aks has joined #angularjs
[13:55:01] *** Hounddog has quit IRC
[13:55:38] *** soee_ has quit IRC
[13:55:52] *** soee has joined #angularjs
[13:56:24] <six> how would you guys go about controlling views (mainly providing next+prev functionality) when I have four views and the first of which can can display a multitude of subviews? I have a controller that all four inherit from but I'm seeing some callbacks triggering twice (i.e. it's being instantiated multiple times)
[13:56:44] *** fedenunez has joined #angularjs
[13:56:58] *** pelim has quit IRC
[13:57:41] *** cytrinox has quit IRC
[14:00:14] *** TheoMurpse has joined #angularjs
[14:00:27] *** tarnus has joined #angularjs
[14:00:29] *** TheoMurpse has quit IRC
[14:03:32] *** ukk has quit IRC
[14:03:56] *** marthinal has quit IRC
[14:04:58] *** aks has quit IRC
[14:05:49] *** itamar__ has joined #angularjs
[14:06:09] *** aks has joined #angularjs
[14:06:26] *** Laserbeak has quit IRC
[14:07:46] *** kablaaam has left #angularjs
[14:08:39] *** Ragnar has quit IRC
[14:08:43] *** uNki has quit IRC
[14:09:13] *** uNki has joined #angularjs
[14:10:31] *** asteele has quit IRC
[14:10:34] *** tiagoboldt has quit IRC
[14:12:50] *** swordfish has quit IRC
[14:13:35] *** cvanball has joined #angularjs
[14:15:09] *** ararog has joined #angularjs
[14:15:20] *** pelim has joined #angularjs
[14:15:28] *** ararog has joined #angularjs
[14:16:09] *** jacksparrow007 has joined #angularjs
[14:16:15] *** mandric has quit IRC
[14:17:37] *** kerem has joined #angularjs
[14:18:01] *** kerem has quit IRC
[14:20:02] *** ukk has joined #angularjs
[14:20:46] *** jacksparrow007 has quit IRC
[14:20:54] *** cocao has joined #angularjs
[14:21:46] *** cocao has quit IRC
[14:22:38] *** kk_drop has joined #angularjs
[14:22:45] *** tplaner has joined #angularjs
[14:22:45] *** zumba_addict has quit IRC
[14:24:10] *** jieryn has joined #angularjs
[14:24:14] *** GroggleWork has joined #angularjs
[14:24:36] *** ccohn has joined #angularjs
[14:25:11] *** cocao has joined #angularjs
[14:25:27] *** jditto_ has joined #angularjs
[14:27:16] *** Bayangan has joined #angularjs
[14:27:27] *** Pradeep has joined #angularjs
[14:27:28] <Pradeep> Hi
[14:27:49] *** Bayangan has left #angularjs
[14:27:50] *** tomreinartz has joined #angularjs
[14:29:02] *** ccohn has quit IRC
[14:29:16] *** pelim has quit IRC
[14:29:58] *** pelim has joined #angularjs
[14:31:58] *** salimfadhley has joined #angularjs
[14:32:17] *** aks has quit IRC
[14:32:42] *** venkat_330 has joined #angularjs
[14:34:20] *** drag0niu1 is now known as drag0nius
[14:34:22] *** annlewis has joined #angularjs
[14:35:26] *** BeerLover has quit IRC
[14:35:52] *** Debnet`Laptop has joined #angularjs
[14:35:54] *** devPaul has joined #angularjs
[14:36:24] *** fedenunez has quit IRC
[14:37:59] *** BeerLover has joined #angularjs
[14:38:30] *** cocao has quit IRC
[14:38:46] *** annlewis has quit IRC
[14:39:14] *** Debnet`Work has quit IRC
[14:39:14] *** uNki has quit IRC
[14:39:26] *** freem|nd has quit IRC
[14:39:33] *** uNki has joined #angularjs
[14:40:06] *** nerdfiles has joined #angularjs
[14:40:45] *** leolrrj has joined #angularjs
[14:41:00] *** aks has joined #angularjs
[14:41:15] *** Aces_Charles has quit IRC
[14:41:22] *** freem|nd has joined #angularjs
[14:42:27] *** bbankes has quit IRC
[14:42:50] *** lnrdo has quit IRC
[14:43:08] *** lnrdo has joined #angularjs
[14:43:50] *** mischat has quit IRC
[14:45:06] *** C0nundrum has quit IRC
[14:46:17] *** devPaul has quit IRC
[14:47:46] *** ararog has quit IRC
[14:47:46] *** mischat has joined #angularjs
[14:49:29] *** marthinal has joined #angularjs
[14:49:48] *** cocao has joined #angularjs
[14:50:06] *** mandric has joined #angularjs
[14:50:16] *** italoacasas has joined #angularjs
[14:50:42] *** ulkesh has quit IRC
[14:51:09] *** italoacasas has quit IRC
[14:51:31] *** ulkesh has joined #angularjs
[14:51:34] *** lnrdo_ has joined #angularjs
[14:52:13] *** italoacasas has joined #angularjs
[14:53:18] *** italoacasas has quit IRC
[14:53:46] *** VeeWee has quit IRC
[14:54:26] *** lnrdo has quit IRC
[14:54:43] *** fedenunez has joined #angularjs
[14:55:25] *** italoacasas has joined #angularjs
[14:55:35] *** walden|afk is now known as walden
[14:55:54] *** ararog has joined #angularjs
[14:56:14] *** jrist has quit IRC
[14:56:37] *** mkulke has joined #angularjs
[14:57:33] <gege_> six, ui-router
[14:57:40] *** wyu has joined #angularjs
[14:57:54] *** swordfish has joined #angularjs
[14:58:50] *** jrist has joined #angularjs
[14:58:50] *** jrist has joined #angularjs
[14:59:44] *** italoacasas has quit IRC
[15:00:23] *** elton has joined #angularjs
[15:01:16] *** anix has quit IRC
[15:01:51] *** icebox has quit IRC
[15:01:53] *** lnrdo_ has quit IRC
[15:03:16] *** Dmitri has quit IRC
[15:03:52] *** italoacasas has joined #angularjs
[15:04:01] *** lnrdo_ has joined #angularjs
[15:04:32] *** italoacasas has quit IRC
[15:04:33] *** dman777_alter has joined #angularjs
[15:05:06] *** elton has quit IRC
[15:05:15] *** italoacasas has joined #angularjs
[15:05:15] *** bengillies has quit IRC
[15:06:08] *** italoacasas has quit IRC
[15:06:26] *** swordfish has quit IRC
[15:06:55] *** cocao has quit IRC
[15:07:00] *** Vladimirski has joined #angularjs
[15:07:07] *** bengillies has joined #angularjs
[15:07:29] *** zumba_addict has joined #angularjs
[15:07:41] *** sixr420 has quit IRC
[15:07:56] *** italoacasas has joined #angularjs
[15:07:59] *** aks has quit IRC
[15:08:04] *** sixr420 has joined #angularjs
[15:08:21] *** sixr420 has joined #angularjs
[15:08:27] *** lnrdo_ has quit IRC
[15:08:35] <Vladimirski> I get a weird bug, the expression syntax is show instead of the value, for instance i have <h1>{{ song.name }}</h1>. and instead of the value of the name the whole expression is shown in the view "{{ song.name }}"
[15:08:39] *** italoacasas has quit IRC
[15:09:06] *** tiagoboldt has joined #angularjs
[15:09:21] *** italoacasas has joined #angularjs
[15:09:32] *** uNki has quit IRC
[15:09:35] *** LithStud has quit IRC
[15:09:54] *** uNki has joined #angularjs
[15:09:58] *** andricDu has joined #angularjs
[15:10:40] *** chitti has joined #angularjs
[15:10:56] *** kam270 has quit IRC
[15:11:21] *** chitti has quit IRC
[15:11:32] *** skunkz has quit IRC
[15:11:45] <mkulke> hi there, i am doing $http GET in a service, and store the result there. in some controller i inject that service and do $scope.$watch(function() { return mysvc.getValue(); }, updateFn). However the update Fn is not called when the promise is resolved and the value is set in the service, do i have to manually nudge the digest cycle somewhere?
[15:11:55] *** itamarjp has joined #angularjs
[15:11:55] *** itamarjp has joined #angularjs
[15:12:09] <mkulke> i was assuming $http.then ... and $scope.$watch is tightly integrated
[15:12:34] *** ron_frown has joined #angularjs
[15:12:54] *** jhirley has joined #angularjs
[15:13:29] *** sonofdirt has joined #angularjs
[15:13:47] *** HansiHE has joined #angularjs
[15:14:01] *** Bloomer has joined #angularjs
[15:14:11] *** jrist has quit IRC
[15:14:21] *** VaticanCameos has quit IRC
[15:14:57] *** jrist has joined #angularjs
[15:16:19] *** Es0teric has joined #angularjs
[15:17:24] *** Debnet`Laptop has quit IRC
[15:17:41] *** Debnet has joined #angularjs
[15:17:54] *** skunkz has joined #angularjs
[15:18:14] *** sonofdirt has quit IRC
[15:19:22] <tomreinartz> hi mluke, i dont think you can watch the promise of your service mysrvs.getvalue(..).$promise.then(fn(){}) would be your solution i think
[15:19:35] *** Mr-label has joined #angularjs
[15:19:45] <mkulke> even better
[15:20:04] <mkulke> but getValue is not a deferred
[15:20:28] <mkulke> not returning a deferred
[15:20:29] *** Es0teric has quit IRC
[15:20:35] *** encryptd_fractal has joined #angularjs
[15:21:21] *** aks has joined #angularjs
[15:22:28] *** tayfun has quit IRC
[15:23:49] *** ron_frown has quit IRC
[15:24:57] *** Pradeep has quit IRC
[15:25:22] *** ccohn has joined #angularjs
[15:25:35] *** nanuko has joined #angularjs
[15:26:05] *** baweaver has joined #angularjs
[15:28:31] *** bbankes has joined #angularjs
[15:29:06] *** leolove has quit IRC
[15:29:25] <mkulke> argh ng-init
[15:29:29] *** Goobbue has joined #angularjs
[15:29:33] <mkulke> thx anyway tomreinartz
[15:29:36] *** leolove has joined #angularjs
[15:29:56] *** pelim has quit IRC
[15:30:13] *** Bubo has joined #angularjs
[15:30:14] *** ccohn has quit IRC
[15:30:29] *** RangerRick has quit IRC
[15:31:06] *** baweaver has quit IRC
[15:31:42] *** devPaul has joined #angularjs
[15:32:00] *** Dmitri has joined #angularjs
[15:32:42] *** dpicky_ has joined #angularjs
[15:33:13] *** pelim has joined #angularjs
[15:33:50] *** ulkesh has quit IRC
[15:34:28] *** Jardayn has joined #angularjs
[15:34:45] *** ulkesh has joined #angularjs
[15:35:07] *** annlewis has joined #angularjs
[15:35:46] *** dpicky has quit IRC
[15:36:54] *** pritt has joined #angularjs
[15:37:00] *** TheoMurpse has joined #angularjs
[15:37:01] *** diosney has joined #angularjs
[15:37:48] <s2hc_johan> how should I do if I need to use different directives based on state of models
[15:38:08] *** zigzagzig has joined #angularjs
[15:38:35] <s2hc_johan> I'm creating a menu and when I "go deeper" in the menu I want to initiate sub menus
[15:39:52] *** annlewis has quit IRC
[15:40:14] *** macabre has joined #angularjs
[15:40:22] *** zigzagzig has quit IRC
[15:40:58] *** zigzagzig has joined #angularjs
[15:41:55] *** anix has joined #angularjs
[15:42:36] *** cvanball_ has joined #angularjs
[15:42:42] *** cvanball has quit IRC
[15:42:42] *** Roge152 has joined #angularjs
[15:43:45] *** Es0teric has joined #angularjs
[15:44:40] *** jacksparrow007 has joined #angularjs
[15:45:36] *** rishabhmhjn has quit IRC
[15:46:06] *** omgztest has quit IRC
[15:46:26] *** mven_ has quit IRC
[15:46:28] *** _matix has joined #angularjs
[15:46:37] *** RangerRick has joined #angularjs
[15:46:40] *** jieryn has quit IRC
[15:47:44] *** plekplek has quit IRC
[15:47:46] *** jieryn has joined #angularjs
[15:48:18] *** killa_kyle has joined #angularjs
[15:48:27] *** Vladimirski has quit IRC
[15:48:42] *** zumba_addict has quit IRC
[15:48:50] *** TyrfingMjolnir has joined #angularjs
[15:48:58] *** RangerRick has quit IRC
[15:49:04] *** Goobbue has quit IRC
[15:49:25] *** killa_kyle has quit IRC
[15:49:34] *** zumba_addict has joined #angularjs
[15:49:49] *** devPaul has quit IRC
[15:49:51] *** killa_kyle has joined #angularjs
[15:50:56] *** killa_kyle has quit IRC
[15:51:24] *** bayousoft has joined #angularjs
[15:52:13] *** Es0teric has quit IRC
[15:52:24] *** Poeticode has joined #angularjs
[15:52:44] <mkulke> ng-switch?
[15:54:16] *** theblang has joined #angularjs
[15:54:36] *** zumba_addict has quit IRC
[15:54:48] *** Es0teric has joined #angularjs
[15:55:50] *** Sky[x] has joined #angularjs
[15:56:08] *** Es0teric has quit IRC
[15:56:30] *** ekleog has left #angularjs
[15:56:48] *** illume has quit IRC
[15:57:29] *** Garfield-fr has quit IRC
[15:57:43] *** illume has joined #angularjs
[15:58:06] *** schneider has quit IRC
[15:58:37] *** rscata has quit IRC
[15:58:46] *** Mr-label has quit IRC
[15:58:59] *** dbclk has joined #angularjs
[15:59:12] *** jieryn has quit IRC
[15:59:37] *** bengilli_ has joined #angularjs
[15:59:42] *** bengillies has quit IRC
[16:00:52] *** mary5030 has joined #angularjs
[16:01:28] *** elton has joined #angularjs
[16:02:07] *** RealLinuX has joined #angularjs
[16:02:08] *** diosney_ has joined #angularjs
[16:02:36] *** diosney has quit IRC
[16:03:32] *** zigzagzig has quit IRC
[16:03:50] *** RangerRick has joined #angularjs
[16:04:13] *** zigzagzig has joined #angularjs
[16:04:19] *** mven has joined #angularjs
[16:04:56] *** Sky[x] has quit IRC
[16:04:56] *** rho has joined #angularjs
[16:04:57] *** rho has joined #angularjs
[16:05:06] *** zeezey has joined #angularjs
[16:07:54] *** swordfish has joined #angularjs
[16:08:45] *** Debnet`Work has joined #angularjs
[16:08:54] <s2hc_johan> mkulke: awesome, thanks
[16:09:50] *** shiriru has quit IRC
[16:09:54] *** cotko has quit IRC
[16:10:32] *** Debnet`Work has quit IRC
[16:10:37] *** annlewis has joined #angularjs
[16:10:54] *** cuebix-wk has joined #angularjs
[16:11:28] *** nerdfiles has quit IRC
[16:12:05] <cuebix-wk> with ui-router, is there a way to have a route that is parented to more than one state? or would i basically need to make separate copies of the state to achieve something like that
[16:12:10] *** Debnet has quit IRC
[16:12:11] *** crankharder has joined #angularjs
[16:12:26] *** jieryn has joined #angularjs
[16:13:09] *** smccarthy has joined #angularjs
[16:14:07] <crankharder> I need to get window.innerWidth so that I can build a ng-src string for a google static maps image. but when I put $scope.width = function(){ return window.innerWidth } in my controller, and {{ width }} in my view -- it shows nothing. Should I be getting that width differently?
[16:14:27] *** gege_ has quit IRC
[16:14:37] *** dabdab has joined #angularjs
[16:14:49] *** dabdab has quit IRC
[16:16:05] *** kuadrosx has quit IRC
[16:16:43] *** owenjones has joined #angularjs
[16:17:13] *** liviu_ has quit IRC
[16:18:47] *** GroggleWork has quit IRC
[16:20:26] *** m8 has joined #angularjs
[16:21:15] *** owenjones has quit IRC
[16:21:18] *** chairmanmow has joined #angularjs
[16:22:07] *** annlewis has quit IRC
[16:22:31] *** lnrdo has joined #angularjs
[16:22:39] *** icfantv has joined #angularjs
[16:23:26] *** steeze has quit IRC
[16:23:28] *** CAPITANOOO has joined #angularjs
[16:24:13] *** kuadrosx has joined #angularjs
[16:24:32] *** kuadrosx has joined #angularjs
[16:26:08] *** ccohn has joined #angularjs
[16:27:18] *** blitheBoudica has joined #angularjs
[16:27:42] *** svycka has quit IRC
[16:28:03] *** chairmanmow has quit IRC
[16:29:20] *** Sky[x] has joined #angularjs
[16:29:39] *** cocao has joined #angularjs
[16:30:35] *** Dmitri has quit IRC
[16:30:52] *** ccohn has quit IRC
[16:33:27] *** ararog has quit IRC
[16:33:54] *** joaoneto has joined #angularjs
[16:35:24] *** lite_ has quit IRC
[16:36:32] *** leolove has quit IRC
[16:37:19] *** steeze has joined #angularjs
[16:37:29] *** iraj has joined #angularjs
[16:37:47] *** simion314 has joined #angularjs
[16:37:50] *** Vladimirski has joined #angularjs
[16:37:57] *** victortyau has joined #angularjs
[16:38:15] *** lnrdo has quit IRC
[16:38:47] *** lnrdo has joined #angularjs
[16:39:03] *** CAPITANOOO has quit IRC
[16:39:03] *** steezefries has joined #angularjs
[16:39:14] *** jmitchell has joined #angularjs
[16:40:02] *** ararog has joined #angularjs
[16:40:35] *** jtimon has joined #angularjs
[16:40:36] *** steezefries has quit IRC
[16:40:52] *** aks has quit IRC
[16:40:55] *** Zemzemi has joined #angularjs
[16:41:05] *** zigzagzig has quit IRC
[16:41:10] *** dcherman has joined #angularjs
[16:41:38] *** zigzagzig has joined #angularjs
[16:43:06] *** lnrdo has quit IRC
[16:43:51] *** BeerLover has quit IRC
[16:44:13] *** itamar__ has quit IRC
[16:44:56] *** Z3R0 has joined #angularjs
[16:45:03]
<Vladimirski> Don't understand why the value of the expression is not showing, only the expression syntax text shows up in the view. This is the template code: http://pastebin.com/TR19stEj
[16:45:09] <Vladimirski> oh sorry
[16:45:13] <Vladimirski> wrong channel
[16:45:34] *** salimfadhley has quit IRC
[16:46:20] *** itamar__ has joined #angularjs
[16:46:36] *** sonofdirt has joined #angularjs
[16:46:41] *** aks has joined #angularjs
[16:47:08] *** lnrdo has joined #angularjs
[16:47:46] *** prometh has joined #angularjs
[16:48:38] <prometh> how would i "bind the class to a variable and interpolate it in the template" ?
[16:48:48] *** jmitchell has quit IRC
[16:49:11] <prometh> i have a directive that uses jquery to toggle a css class on its element
[16:49:26] <prometh> i'd like to switch it to a scoped $class variable for use in the template
[16:49:41] <prometh> <body class="$class" my-directive>
[16:49:42] *** Z3R0 has quit IRC
[16:51:09] *** ararog has quit IRC
[16:52:17] *** diegoaguilar has joined #angularjs
[16:52:19] *** rishabhmhjn has joined #angularjs
[16:53:22] *** rishabhmhjn has quit IRC
[16:53:36] *** Nino has quit IRC
[16:54:37] *** cacts|works has joined #angularjs
[16:55:08] *** fedenunez has quit IRC
[16:55:53] *** fedenunez has joined #angularjs
[16:56:45] *** edrocks__ has joined #angularjs
[16:57:46] *** jacksparrow007 has quit IRC
[16:58:29] *** zigzagzig has quit IRC
[16:59:03] *** zigzagzig has joined #angularjs
[16:59:28] *** jdhawke has joined #angularjs
[17:00:03] <prometh> hello?
[17:01:02] <prometh> lotsa clueless people in here, i guess
[17:01:54] <jdhawke> Morning everyone, I am getting destroyed by ngAnimate and ng-show/ng-hide trying to get a simple slide animation going
[17:02:02] *** george_v has quit IRC
[17:02:04] <jdhawke> has anyone made this work before?
[17:02:24] *** mynameiswhat has quit IRC
[17:02:51] <prometh> doesn't it provide different class names ?
[17:03:03] *** RealLinuX has quit IRC
[17:03:17] *** jacksparrow007 has joined #angularjs
[17:03:21] *** TheoMurpse has quit IRC
[17:03:48] <jdhawke> it does
[17:04:14] <jdhawke> but I find conflicting info, and even when I locate a working example, and I duplicate, it still does not animate
[17:04:16] *** liam__ has joined #angularjs
[17:04:23] <rocky1138> is there a way in my route resolve to cancel the route and go somewhere else instead?
[17:04:25] <jdhawke> its really getting frustrating
[17:04:28] *** liam__ has quit IRC
[17:04:56] *** TheoMurpse has joined #angularjs
[17:05:10] *** ctanga has joined #angularjs
[17:05:18] <prometh> jdhawke: maybe your css is wrong? check the inspector to see if the classnames are getting added
[17:06:06] *** itamarjp has quit IRC
[17:06:17] *** devPaul has joined #angularjs
[17:06:18] *** itamar__ has quit IRC
[17:06:44] *** itamarjp has joined #angularjs
[17:06:58] *** itamar__ has joined #angularjs
[17:07:06] *** squeakytoy has quit IRC
[17:07:08] *** Zemzemi has quit IRC
[17:07:54] *** dpicky has joined #angularjs
[17:09:54] *** c00ljs has joined #angularjs
[17:10:10] *** Zemzemi has joined #angularjs
[17:10:13] *** uncol has joined #angularjs
[17:10:36] *** uncol has quit IRC
[17:10:40] *** chairmanmow has joined #angularjs
[17:10:46] *** dpicky_ has quit IRC
[17:11:04] *** uNki has quit IRC
[17:11:22] *** wafflejock has quit IRC
[17:11:38] *** uNki has joined #angularjs
[17:11:58] *** codeitloadit has joined #angularjs
[17:12:02] *** diegoaguilar has quit IRC
[17:13:00] *** thirdknife has quit IRC
[17:13:11] *** diegoaguilar has joined #angularjs
[17:14:13] *** diegoaguilar has quit IRC
[17:14:32] *** diegoaguilar has joined #angularjs
[17:14:33] *** Flashwit has joined #angularjs
[17:14:38] *** niftylettuce has joined #angularjs
[17:14:40] *** nerdfiles has joined #angularjs
[17:15:24] *** thirdknife has joined #angularjs
[17:15:33] *** codeitloadit has quit IRC
[17:16:17] *** lnrdo has quit IRC
[17:17:59] *** annlewis has joined #angularjs
[17:18:32] *** lnrdo has joined #angularjs
[17:18:57] *** shinnya has joined #angularjs
[17:19:44] *** elsevero has quit IRC
[17:19:50] <prometh> is this not correct?: `return { scope:{ test:"asdf" } }` <div class="$test" my-directive>
[17:20:39] *** junmin has joined #angularjs
[17:21:52] *** edrocks__ has quit IRC
[17:22:15] *** dpicky_ has joined #angularjs
[17:22:20] *** fantnn has joined #angularjs
[17:22:28] *** illume has quit IRC
[17:22:45] *** busticated has joined #angularjs
[17:22:47] *** annlewis has quit IRC
[17:23:00] *** Dmitri has joined #angularjs
[17:23:01] *** pelim has quit IRC
[17:23:07] *** itamar__ has quit IRC
[17:23:20] *** itamarjp has quit IRC
[17:23:53] *** itamarjp has joined #angularjs
[17:24:06] *** clivejo has joined #angularjs
[17:24:07] *** itamar__ has joined #angularjs
[17:25:16] *** dpicky has quit IRC
[17:26:18] *** pelim has joined #angularjs
[17:26:33] <icfantv> prometh: please don't get demanding. if people are available to help, they will. snarky comments and poor attitude will get you KB'd
[17:26:36] <jslootbeek> good day, all
[17:26:54] *** ccohn has joined #angularjs
[17:27:04] *** step1step2 has joined #angularjs
[17:27:23] *** itamar__ has quit IRC
[17:27:28] <icfantv> jdhawke: are you using bootstrap or UIBS by any chance?
[17:27:49] *** Ir1sh has joined #angularjs
[17:27:53] *** itamar__ has joined #angularjs
[17:28:30] *** CanyonMan has joined #angularjs
[17:28:44] <prometh> icfantv: i asked before jdhawke
[17:28:50] *** dan2k3k4 has quit IRC
[17:29:00] *** conan_the_destro has joined #angularjs
[17:29:47] *** duall has quit IRC
[17:30:08] *** Aliks has joined #angularjs
[17:30:09] *** aks has quit IRC
[17:30:24] <icfantv> prometh: seriously?
[17:30:39] <prometh> you're purposely not helping me
[17:30:41] *** bbankes_ has joined #angularjs
[17:31:03] *** swordfish has quit IRC
[17:31:19] <icfantv> prometh: you're right. when i woke up this morning i said to myself, "adam, your goal today is to NOT help someone in the angular chat room."
[17:31:27] *** ccohn has quit IRC
[17:31:33] <Vladimirski> Any idea why an angular expression wouldn't get the value?
[17:31:34] *** itamar__ has quit IRC
[17:31:36] <icfantv> prometh: please just chill out. and to answer your question, i believe you want ng-class
[17:32:00] <prometh> maybe after your coffee you read my question and my distaste for a non-busy chatroom and decided to help someone who asked for help after i did
[17:32:43] *** itamar__ has joined #angularjs
[17:33:07] *** jacksparrow007 has quit IRC
[17:33:10] <prometh> i can't use ngClass because the value is based on a router
[17:33:39] *** anix has quit IRC
[17:33:40] <icfantv> Vladimirski: that's a pretty vague question, can you please be more specific?
[17:33:40] *** aks has joined #angularjs
[17:33:43] *** Foxandxss has joined #angularjs
[17:33:56] <Foxandxss> I was summoned
[17:34:18] <prometh> Foxandxss: the world wants you to work for free
[17:34:26] *** Aliks has quit IRC
[17:34:50] *** bbankes has quit IRC
[17:34:56] *** Ugolin has quit IRC
[17:34:56] <BahamutWC|Laptop> prometh: there is no reason for a sense of entitlement for freely offered help - behaving that way is likely to get no help
[17:34:57] *** itamarjp has quit IRC
[17:35:11] *** greengriminal has joined #angularjs
[17:35:17] <prometh> BahamutWC|Laptop: i give much to open source and help in #node.js -- this channel has very little activity
[17:35:20] <prometh> it's disheartening
[17:35:23] <prometh> and annoying
[17:35:35] *** itamarjp has joined #angularjs
[17:35:47] *** elton has quit IRC
[17:35:49] <BahamutWC|Laptop> it used to be very active, but a lot of us ran away due to a flood of very poor questions
[17:35:55] <Foxandxss> indeed
[17:36:00] <Foxandxss> that is why I don't join anymore
[17:36:12] <prometh> ok
[17:36:33] <Foxandxss> so if you help lots on node channel you know how this work
[17:36:41] <Foxandxss> you ask a question, if someone wants to help you, it will, if not, bad luck
[17:36:57] <prometh> sure, but node channel has activity
[17:37:01] <jslootbeek> that's not very encouraging to devs new to Angular. Is there a need for two angular channels?
[17:37:03] <BahamutWC|Laptop> also not all questions are equal in difficulty
[17:37:12] <Foxandxss> jslootbeek: what is the other?
[17:37:41] <BahamutWC|Laptop> just thought to chime in, I have to shower/go to work soon
[17:37:46] <jslootbeek> Foxandxss, I'm asking. If you're saying that you don't come anymore because the questions are "poor", maybe there should be a #angularjs-beginners channel
[17:38:04] <Foxandxss> jslootbeek: no
[17:38:10] <Foxandxss> poor questions !== noob questions
[17:38:20] <Foxandxss> "plz help me, this doesn't work"
[17:38:23] <Foxandxss> that is a poor question
[17:38:41] <Foxandxss> "I wrote this code (plunker) and I tried X and Y and it seems to be be doing nothing. Any ideas"?
[17:38:43] *** Odarys has quit IRC
[17:38:45] <Foxandxss> that is a good noob question
[17:39:09] <jslootbeek> Foxandxss, agreed. however, as something grows, it's inevitable that there will be a larger range of qustions.
[17:39:19] <Foxandxss> I understand that
[17:39:23] <Foxandxss> I have been here for the last 3 years
[17:39:26] <prometh> can i get some help?
[17:39:32] *** bbankes__ has joined #angularjs
[17:39:39] *** MrBaboon has joined #angularjs
[17:39:58] <prometh> is this not correct?: `return { scope:{ test:"asdf" } }` <div class="$test" my-directive>
[17:40:11] <Foxandxss> no
[17:40:22] <prometh> how can i set static values to the scope?
[17:40:30] <prometh> must i do it on "link" or something ?
[17:40:44] <jslootbeek> Foxandxss, I'm not trying to start an argument. Simply suggesting a possible solution to your concern.
[17:40:56] *** leolove has joined #angularjs
[17:41:01] *** Bodin has quit IRC
[17:41:17] <BahamutWC|Laptop> what type of static value, is it just a simple string?
[17:41:19] <Vladimirski> icfantv: well in the template I specify an expression like this: <h1>{{ currentSong.name }}</h1> but instead of the songname showing up in the view the actual expression text is showing, as if it can't get the value for some reason
[17:41:22] <prometh> BahamutWC|Laptop: yes
[17:41:26] <BahamutWC|Laptop> simple strings/numbers can use the @ binding
[17:41:53] <BahamutWC|Laptop> then you can do something like <div test=“test-string-for-binding” my-directive>
[17:42:11] <Foxandxss> jslootbeek: I don't have any issues
[17:42:23] <BahamutWC|Laptop> objects you need to use the two way binding =, but one can also use the bind once :: to make it behave like a static type
[17:42:24] *** bbankes has joined #angularjs
[17:42:29] *** p0k0 has quit IRC
[17:42:43] *** bbankes_ has quit IRC
[17:42:44] *** mischat_ has joined #angularjs
[17:43:20] <BahamutWC|Laptop> prometh: right, so use scope: { test: ‘@‘ }
[17:43:24] *** bbankes_ has joined #angularjs
[17:43:31] <prometh> i only want the value for use in concatenating in a `class` attribute
[17:43:36] <prometh> i don't need two-way binding
[17:43:36] <BahamutWC|Laptop> and then just do <div test=“asdf” my-directive>
[17:43:48] *** uNki has quit IRC
[17:44:00] <BahamutWC|Laptop> @ is a simple one-way binding
[17:44:01] *** rickmak_ has joined #angularjs
[17:44:11] <prometh> i don't like test="asdf"
[17:44:23] <BahamutWC|Laptop> if you want it to be a static variable on scope without specification, just do scope.test = asdf in the linking function or controller
[17:44:24] <prometh> that's not a class
[17:44:27] *** bbankes__ has quit IRC
[17:44:50] *** Dmitri has quit IRC
[17:45:05] *** swordfish has joined #angularjs
[17:45:13] <Foxandxss> jslootbeek: you're free to ask any question you want, just be sure you put some effort and everybody will be happy enough
[17:45:14] <prometh> <div ciass="$test">
[17:45:18] <prometh> i need it in a class attribute
[17:45:38] *** bbankes__ has joined #angularjs
[17:45:46] *** mischat has quit IRC
[17:46:11] <prometh> <div ng-class="{ '@test':true}"> <!-- maybe? -->
[17:46:23] *** lite_ has joined #angularjs
[17:46:43] <BahamutWC|Laptop> in that situation, one should manually do element.addClass/removeClass and work with it inside the directive
[17:46:46] *** bbankes has quit IRC
[17:46:59] <prometh> but that means adding the class is done outside of the template
[17:47:01] <prometh> i want it in th etemplate
[17:47:04] *** kladrian has quit IRC
[17:47:22] *** mischat_ has quit IRC
[17:47:24] *** tips101_ has joined #angularjs
[17:47:28] <BahamutWC|Laptop> you could do ng-class=“{myClass: test}” or class=“{{test}}”
[17:47:29] <jslootbeek> Foxandxss, I agree with you.
[17:47:38] <prometh> ahhh {{test}}
[17:47:46] <prometh> that's whwere i fucked up
[17:47:46] *** bbankes_ has quit IRC
[17:47:55] *** crono has quit IRC
[17:47:59] *** bayousoft has quit IRC
[17:48:08] *** victortyau has quit IRC
[17:48:22] *** bbankes has joined #angularjs
[17:48:26] <icfantv> Vladimirski: sounds like angular isn't being loaded
[17:48:28] <prometh> BahamutWC|Laptop: i get weird output
[17:48:38] *** crono has joined #angularjs
[17:48:49] *** jimklo has joined #angularjs
[17:48:51] <Vladimirski> icfantv: how do I now?
[17:49:11] <BahamutWC|Laptop> have to go hygene/shower now
[17:49:32] *** bbankes_ has joined #angularjs
[17:49:39] *** mkulke has quit IRC
[17:49:45] <Vladimirski> icfantv: Well the rest of the buttons and text is showing in the view, also other controllers are working. So it's abit strnage
[17:49:45] <icfantv> Vladimirski: do you have a <script> block for including angular.js?
[17:49:49] <icfantv> oh
[17:49:50] <icfantv> ok
[17:50:08] <icfantv> so you're seeing the literal text "{{ blah }}"
[17:50:11] *** aks has quit IRC
[17:50:15] <Vladimirski> yes
[17:50:24] <icfantv> can you gist the relevant HTML/JS?
[17:50:36] <prometh> BahamutWC|Laptop: oops, my bad.. all works fine now.. tahnks!
[17:50:37] *** speakingcode has joined #angularjs
[17:50:46] *** zotune has quit IRC
[17:50:46] *** bbankes__ has quit IRC
[17:50:56] <icfantv> Vladimirski: that could also happen if your HTML is outside of angular
[17:51:04] *** thirdkni_ has joined #angularjs
[17:51:18] *** lite_ has quit IRC
[17:51:33] <icfantv> Vladimirski: i don't see that expression anywhere
[17:51:36] *** OtherAllan has joined #angularjs
[17:51:38] *** aks has joined #angularjs
[17:51:45] *** bbankes__ has joined #angularjs
[17:52:51] <icfantv> Vladimirski: anywhere in that HTML file you just posted
[17:52:55] *** junmin has quit IRC
[17:52:57] *** tips101_ has quit IRC
[17:53:02] *** bbankes has quit IRC
[17:53:02] *** thirdknife has quit IRC
[17:53:38] *** benjamingr_ has joined #angularjs
[17:54:14] *** Vladimirski_ has joined #angularjs
[17:54:37] *** bbankes has joined #angularjs
[17:54:41] *** bayousoft has joined #angularjs
[17:54:44] *** bbankes_ has quit IRC
[17:55:28] *** prometh has quit IRC
[17:55:39] *** Vladimirski has quit IRC
[17:55:44] *** bbankes_ has joined #angularjs
[17:56:14] *** dbclk has quit IRC
[17:56:33] *** phrozensilver has joined #angularjs
[17:56:59] *** Rutix has joined #angularjs
[17:56:59] *** Rutix has joined #angularjs
[17:57:01] *** bbankes__ has quit IRC
[17:57:24] *** punknroll has quit IRC
[17:57:28] *** conan_the_destro has quit IRC
[17:57:29] *** tiagoboldt has quit IRC
[17:57:38] *** crono has quit IRC
[17:57:46] *** chronos has joined #angularjs
[17:58:13] *** dbclk has joined #angularjs
[17:58:13] <icfantv> Vladimirski_: no worries. and the controller code? which expression are you having issues with? or all of them?
[17:59:00] *** lnrdo has quit IRC
[17:59:16] *** bbankes has quit IRC
[17:59:32] *** lnrdo has joined #angularjs
[17:59:39] *** aks has quit IRC
[18:00:38] *** fantnn has quit IRC
[18:00:50] *** tiagoboldt has joined #angularjs
[18:02:04] *** shinnya has quit IRC
[18:03:14] *** drptbl has quit IRC
[18:03:29] <Vladimirski_> icfantv: all of them, even the image doesn't load
[18:04:28] *** dpicky has joined #angularjs
[18:04:29] *** joaoneto has quit IRC
[18:05:12] <Vladimirski_> icfantv: I haven't used angular.copy() before, maybe it's that?
[18:05:30] *** dpicky_ has quit IRC
[18:06:19] <icfantv> Vladimirski_: as i still don't have your JS, i can't say
[18:06:27] *** PeterMetz has joined #angularjs
[18:06:30] <icfantv> i'd be guessing at this point
[18:06:41] *** Perseus0 has joined #angularjs
[18:06:53] *** eago has joined #angularjs
[18:06:58] *** smtudor has quit IRC
[18:07:04] *** tangorri has quit IRC
[18:08:24] *** aks has joined #angularjs
[18:08:53] *** devPaul has quit IRC
[18:08:53] *** dbclk has quit IRC
[18:08:57] <Perseus0> hey, noob here... my factory is appears as undefined and can't quite figure why: myApp.factory('personService', function(){
[18:09:42] *** aks has quit IRC
[18:10:02] *** dbclk has joined #angularjs
[18:10:25] *** dpicky has quit IRC
[18:10:29] *** conan_the_destro has joined #angularjs
[18:10:47] *** smtudor has joined #angularjs
[18:11:13] *** aks has joined #angularjs
[18:11:35] *** vrockai has quit IRC
[18:12:18] *** tomphp has quit IRC
[18:12:50] *** miqui has quit IRC
[18:13:28] *** miqui has joined #angularjs
[18:13:29]
<dp> I'm using angular-datatables, and within one of the columns that I'm adding, I need to do an AJAX request, which then implies promises, which I'm still pretty new at. I just want to return a string from the ".then" method call. My code is available at http://sprunge.us/QBMF -- what am I doing wrong?
[18:14:53] *** eago has quit IRC
[18:15:14] *** davi has joined #angularjs
[18:15:15] *** davi has joined #angularjs
[18:17:17] *** ararog has joined #angularjs
[18:17:29] *** leolrrj has quit IRC
[18:17:54] *** thirdkni_ has quit IRC
[18:18:05] *** aks has quit IRC
[18:18:45] *** annlewis has joined #angularjs
[18:19:54] *** ararog has quit IRC
[18:20:05] *** Mattch has quit IRC
[18:20:58] <icfantv> Vladimirski_: one sec, sorry
[18:21:02] <icfantv> working on a production issue
[18:21:10] <Vladimirski_> no probs :)
[18:21:14] *** mitte has joined #angularjs
[18:21:19] *** aks has joined #angularjs
[18:22:13] *** skunkz has quit IRC
[18:22:23] <icfantv> Vladimirski_: i need the controller JS for that specific template you're having trouble with
[18:23:27] *** annlewis has quit IRC
[18:23:30] <Vladimirski_> it's the first .controller function =)
[18:23:40] *** aks has quit IRC
[18:24:13] *** Zalabinsky has joined #angularjs
[18:25:03] <Perseus0> I'm having trouble by getting an undefined service icfantv
[18:25:04] *** s00pcan has quit IRC
[18:25:16] *** rickmak_ has quit IRC
[18:25:19] *** lmatteis has joined #angularjs
[18:25:25] *** Goobbue has joined #angularjs
[18:25:49] *** nerdfiles has quit IRC
[18:25:52] <icfantv> Vladimirski_: yea, you never sent me that one. :-)
[18:25:56] <icfantv> lemme look
[18:26:01] <icfantv> Perseus0: one sec, mate
[18:26:02] *** nerdfiles has joined #angularjs
[18:26:08] *** miqui has quit IRC
[18:26:13] *** s00pcan has joined #angularjs
[18:26:23] <Perseus0> thanks bro icfantv
[18:26:36] *** miqui has joined #angularjs
[18:27:04] <cc0_1> has anyone figured out the mystery of discerning browser reloads vs closes?
[18:27:28] <icfantv> Vladimirski_: let me ask you this, what do you think the value is of $scope.songs[0] on line 9?
[18:27:28] *** guilbep has quit IRC
[18:27:39] *** ccohn has joined #angularjs
[18:27:42] *** Aliks has joined #angularjs
[18:28:30] *** baweaver has joined #angularjs
[18:28:39] *** fantnn has joined #angularjs
[18:28:45] <icfantv> Vladimirski_: i'll give you a hint. it's not what you think it is
[18:28:59] <Perseus0> :D
[18:29:18] *** intellix has quit IRC
[18:29:20] <Perseus0> mind reader ;)
[18:29:42] *** Roge152 has quit IRC
[18:30:57] *** ulkesh has quit IRC
[18:31:28]
<Perseus0> icfantv: what i just mentioned http://laravel.io/bin/YyQjy i'm getting an undefined service in line 15... thanks and take your time :)
[18:32:07] *** ccohn has quit IRC
[18:32:16] *** ulkesh has joined #angularjs
[18:32:25] <icfantv> Vladimirski_: i'm going to move on now since you haven't responded. basically, you're attempting to reference something before it's been defined, which in javascript will yield undefined.
[18:32:43] <icfantv> and angular will silently ignore that so none of your templates will populate.
[18:32:46] *** baweaver has quit IRC
[18:32:52] *** Aliks_ has joined #angularjs
[18:32:52] *** elton has joined #angularjs
[18:33:02] <icfantv> move the copy command to AFTER the array.
[18:33:19] <icfantv> Perseus0: taking a look now
[18:33:27] <Perseus0> ty icfantv
[18:33:31] *** rubyronin has joined #angularjs
[18:33:49] <icfantv> Perseus0: you're not injecting it properly. you're missing it from your array
[18:34:03] <icfantv> you have '$scope' you also need 'personService'
[18:34:24] *** Aliks has quit IRC
[18:34:28] *** nilsi has quit IRC
[18:34:31] <Perseus0> function($scope, personService)
[18:34:34] <Perseus0> yes, here
[18:34:38] *** liamonade has quit IRC
[18:34:46] <Vladimirski_> icfantv: the value of $scope.songs[0] should be the first element in the array songs
[18:34:47] <Vladimirski_> no?
[18:35:01] *** Daerist has quit IRC
[18:35:28] <icfantv> when you use the [] syntax (which you should), the strings specify the value angular looks up and then the order they appear are the order they are injected into the function
[18:35:30] *** asteele has joined #angularjs
[18:36:10] <icfantv> Perseus0: so you want myApp.controller(…, ['$scope', 'personService', function($scope, personService) …])
[18:36:21] <Perseus0> oh
[18:36:34] <Perseus0> thanks, it does make sense
[18:36:34] *** Sky[x] has quit IRC
[18:37:00] <icfantv> Vladimirski_: read my above comments. you WANT it to be the first element in the array, but it's not. you're referencing something before it's defined. in a higher order language that would barf. and in ES6+ or TS, i think it would also barf (not sure).
[18:37:02] <Perseus0> works, ty bro icfantv :)
[18:37:21] *** devPaul has joined #angularjs
[18:37:28] <Vladimirski_> oh okey, I thought it didn't matter in what order i typed it
[18:37:29] <icfantv> but in JS, that's totally a legal thing to do , you just get undefined instead of what you REALLY want.
[18:37:33] <Vladimirski_> gonna try icfantv :D
[18:37:37] <Vladimirski_> thanks icfantv
[18:37:49] <icfantv> Vladimirski_: it depends. if hoisting is used you can do some weird stuff
[18:38:00] <icfantv> but you shouldn't rely on hoisting for proper coding
[18:38:05] <icfantv> Perseus0: yep
[18:38:19] *** morissette has joined #angularjs
[18:38:22] *** elton has quit IRC
[18:40:18] *** yky has joined #angularjs
[18:40:42] *** yky is now known as Guest87729
[18:40:56] <Vladimirski_> icfantv: THanks alot man, that worked. I really didn't think the order mattered..
[18:41:21] <Perseus0> ^good coding song
[18:41:24] <icfantv> haha. oh stop
[18:41:51] *** tiagoboldt has quit IRC
[18:42:38] <Vladimirski_> :D
[18:42:49] *** joaoneto has joined #angularjs
[18:42:54] *** Zemzemi has quit IRC
[18:42:58] *** junmin has joined #angularjs
[18:44:06] *** ulkesh has quit IRC
[18:44:09] *** phil has joined #angularjs
[18:44:27] *** fantnn has quit IRC
[18:44:33] *** phil is now known as Guest23035
[18:44:52] *** zlalanne has joined #angularjs
[18:46:09] <Guest23035> Hi can someone post a link to where I can always find the latest version of angular2? I want to update via npm, but am not sure what the latest build is
[18:46:18] *** soee_ has joined #angularjs
[18:47:17] *** fantnn has joined #angularjs
[18:47:25] *** theblang has quit IRC
[18:48:29] *** ulkesh has joined #angularjs
[18:48:39] *** sbellina has joined #angularjs
[18:49:25] <icfantv> gah
[18:49:26] <icfantv> sorry
[18:49:32] <icfantv> stupid browser
[18:50:19] *** soee has quit IRC
[18:50:32] *** pascal__ has joined #angularjs
[18:50:40] <pascal__> hi
[18:50:44] *** MrBaboon has quit IRC
[18:51:04] *** floriangosse has joined #angularjs
[18:51:10] <floriangosse> Hey gusy,
[18:51:14] <floriangosse> guys
[18:51:28] <pascal__> can someone help me?
[18:51:54] <floriangosse> If I add interceptors the http service, is there an order on which they will be executed?
[18:52:41] *** m8 has quit IRC
[18:52:51] *** joaoneto has quit IRC
[18:53:37] *** Zemzemi has joined #angularjs
[18:53:51] *** MrBaboon has joined #angularjs
[18:53:51] *** Zemzemi has quit IRC
[18:54:05] *** TyrfingMjolnir has quit IRC
[18:54:23] *** Perseus0 has quit IRC
[18:54:43] *** uNki has joined #angularjs
[18:55:13] *** TyrfingMjolnir has joined #angularjs
[18:55:51] *** Aliks_ has quit IRC
[18:56:24] *** joaoneto has joined #angularjs
[18:56:39] *** starsparrow has joined #angularjs
[18:57:31] *** joaoneto has quit IRC
[18:58:29] *** lnrdo_ has joined #angularjs
[18:59:39] *** saurav has joined #angularjs
[18:59:42] *** Tennis has quit IRC
[18:59:42] *** uNki has quit IRC
[19:00:17] <saurav> can anyone help with spring mvc + angularjs
[19:00:17] *** SteenJobs has joined #angularjs
[19:00:24] *** baweaver has joined #angularjs
[19:02:10] *** lnrdo has quit IRC
[19:02:51] *** MrBaboon has quit IRC
[19:03:41] *** steeze has quit IRC
[19:04:22] <icfantv> saurav: i can try. what are you trying to do?
[19:04:25] *** ansimation has joined #angularjs
[19:04:50] <icfantv> floriangosse: i don't know of the top of my head. it depends on how angular adds the interceptors internally. you need to look at the source to see.
[19:04:51] *** junmin has quit IRC
[19:05:03] *** SteenJobs has quit IRC
[19:05:23] *** jdhawke has quit IRC
[19:05:28] <icfantv> floriangosse: but here's the rub. that could change and i would argue that if your app needs to have some reliance on the order of interceptors, the order of application of the interceptors needs to be enforced by you
[19:05:30] *** saurav has quit IRC
[19:05:53] *** ansimation has quit IRC
[19:06:04] *** pascal__ has quit IRC
[19:06:25] *** mellernoia-work has joined #angularjs
[19:07:26] *** squeakytoy has joined #angularjs
[19:07:46] *** mellernoia has quit IRC
[19:08:15] *** Guest23035 has quit IRC
[19:10:13] *** ukk has quit IRC
[19:10:14] *** jlebrech has quit IRC
[19:13:01] *** bengilli_ has quit IRC
[19:13:08] <icfantv> floriangosse: again, unless the API states something about order and your reliance on it, i would be very hesitant to rely on it.
[19:13:28] *** Dmitri has joined #angularjs
[19:13:29] <icfantv> floriangosse: is there a specific reason you want to rely on order such that you can't enforce it in your app?
[19:13:59] <floriangosse> icfantv: Maybe I will implement a wrapper for my interceptors.
[19:14:02] <icfantv> floriangosse: oh, wait a second
[19:14:02] *** SteenJobs has joined #angularjs
[19:14:11] <icfantv> floriangosse: the docs DO state something about order
[19:14:24] <floriangosse> icfantv: Where?
[19:14:36] <icfantv> floriangosse: i read that as the interceptors will be applied in the order they are added for the request and in the reverse order for a response.
[19:14:55] <icfantv> in the comments for the source you just sent me
[19:15:06] <icfantv> look at lines 368-372
[19:15:40] *** xtreamwayz has quit IRC
[19:16:23] <icfantv> floriangosse: but one thing that does worry me is that the angular docs don't specify this
[19:17:14] <icfantv> this raises a red flag for me in that while they probably won't, given their comments in the source code, they COULD change it.
[19:17:24] <icfantv> but they would document that as a breaking change
[19:17:38] <icfantv> how many interceptors do you have?
[19:17:53] *** zigzagzig has quit IRC
[19:17:56] <floriangosse> icfantv: Yes, I know. But this is stupid. If I want to be the first to intercept request AND response I can't use the same interceptor.
[19:18:06] *** Dmitri has quit IRC
[19:18:11] <floriangosse> Currently I have two intceptors
[19:18:27] <icfantv> sure you can. they're just properties on the object.
[19:18:33] <icfantv> oh
[19:18:35] *** dszmaj has quit IRC
[19:18:37] *** ararog has joined #angularjs
[19:18:37] <icfantv> nm. i understand you now
[19:18:47] <icfantv> right.
[19:19:21] <icfantv> if you have two interceptors and you want the same order applied on both the request and response, you have to do some rejiggering
[19:19:25] *** dszmaj has joined #angularjs
[19:19:31] *** annlewis has joined #angularjs
[19:19:34] <icfantv> because of how angular handles the interceptors
[19:20:06] <floriangosse> Yes, I have a workaround for it that works now.
[19:20:14] <icfantv> cool
[19:20:42] *** junmin has joined #angularjs
[19:20:54] <floriangosse> The best way would be if I can add interceptors for reponse and request separate.
[19:21:46] <floriangosse> $httpProvider.requestInterceptors.push('myInterceptor');
[19:21:48] <floriangosse> $httpProvider.responseInterceptors.push('myInterceptor');
[19:23:12] *** swordfis_ has joined #angularjs
[19:24:07] *** annlewis has quit IRC
[19:24:37] *** nanuko has quit IRC
[19:25:07] *** illume has joined #angularjs
[19:25:58] *** \du has quit IRC
[19:26:32] *** swordfish has quit IRC
[19:27:35] *** swordfis_ has quit IRC
[19:28:07] *** iraj has quit IRC
[19:28:11] *** bayousoft has quit IRC
[19:28:16] *** joaoneto has joined #angularjs
[19:28:24] *** ccohn has joined #angularjs
[19:29:08] *** SteenJobs has quit IRC
[19:32:20] *** iamvfl has joined #angularjs
[19:33:16] *** ccohn has quit IRC
[19:34:28] *** aks has joined #angularjs
[19:34:37] <icfantv> floriangosse: which you can do, just don't implement response or responseError in your request interceptors and request and requestError in your responseInterceptors
[19:35:16] *** elton has joined #angularjs
[19:36:12] <floriangosse> icfantv: Yes this means that i would have to split my interceptors into two.
[19:37:38] *** rubyronin has quit IRC
[19:38:32] *** tfry has joined #angularjs
[19:38:52] *** jareddlc has joined #angularjs
[19:39:36] *** aks has quit IRC
[19:39:43] *** elton has quit IRC
[19:39:53] *** TheFirstAvenger has joined #angularjs
[19:40:00] <iamvfl> hey folkerinos
[19:40:09] *** mitte has quit IRC
[19:40:19] <iamvfl> I have an array in my scope, and I'm pushing objects to the array, but my view isn't updating right away
[19:40:24] *** ararog has quit IRC
[19:40:28] <iamvfl> not sure why that is
[19:41:01] <iamvfl> the array is in line 19 of the controller. I push objects into it in line 34.
[19:41:06] *** iraj has joined #angularjs
[19:41:15] *** Naim has joined #angularjs
[19:41:22] <iamvfl> Line 8 of the view is where I render the items.
[19:41:40] *** TheFirstAvenger has quit IRC
[19:41:44] <iamvfl> If I do a console log after I do array.push, I can see that my array is updated properly, but the view fails to update
[19:42:00] <Naim> hi
[19:42:14] <Naim> I wanted to ask a few questions on angularjs
[19:43:10] *** iraj has quit IRC
[19:43:10] *** iraj has joined #angularjs
[19:43:23] *** leolrrj has joined #angularjs
[19:44:10] <icfantv> iamvfl: what do you mean it's not updating right away. is it updating at all?
[19:44:27] <Naim> what benefit would i get using angular with a backend framework like rails or express?
[19:44:28] *** ahhhndi has joined #angularjs
[19:44:42] *** fantnn has quit IRC
[19:46:08] *** frem has joined #angularjs
[19:46:15] *** erol has quit IRC
[19:46:25]
<dp> I'm using angular-datatables, and within one of the columns that I'm adding, I need to do an AJAX request, which then implies promises, which I'm still pretty new at. I just want to return a string from the ".then" method call. My code is available at http://sprunge.us/QBMF -- what am I doing wrong?
[19:46:26] *** phrozensilver has quit IRC
[19:46:35] <iamvfl> icfantv: Sometimes it updates after I do a second push, but only the first item is displayed
[19:46:42] <iamvfl> I found the problem, though
[19:46:46] <icfantv> iamvfl: you might start by putting <pre>{{ messages | json }}</pre> in your template to see if youre getting anything.
[19:46:51] <icfantv> ok
[19:47:10] <iamvfl> icfantv I'm definitely getting something and my array is updating properly, the view just wasn't updating
[19:47:13] *** italoacasas has quit IRC
[19:47:14] *** marthinal has quit IRC
[19:47:41] <icfantv> iamvfl: you're not changing the reference of your array
[19:47:55] *** phrozensilver has joined #angularjs
[19:48:19] *** MrBaboon has joined #angularjs
[19:48:47] <icfantv> that SO applies to changing the scoped' reference of the array.
[19:48:53] *** dascodeman has joined #angularjs
[19:48:57] *** Naim has quit IRC
[19:49:39] *** zumba_ad_ has joined #angularjs
[19:49:44] <icfantv> $scope.foo = []; and then later saying $scope.foo = …
[19:49:49] <icfantv> you're changing the reference
[19:49:58] <icfantv> but in your code, you're not
[19:50:17] <icfantv> you're just pushing values
[19:51:10] *** Vladimirski_ has quit IRC
[19:51:10] *** zigzagzig has joined #angularjs
[19:51:20] *** dszmaj has quit IRC
[19:53:52] *** mandric has quit IRC
[19:54:05] *** swordfish has joined #angularjs
[19:54:06] *** zumba_ad_ has quit IRC
[19:54:14] *** swordfish has quit IRC
[19:54:36] *** nerdfiles has quit IRC
[19:54:50] *** nerdfiles has joined #angularjs
[19:55:03] *** thirdknife has joined #angularjs
[19:55:56] *** lnrdo_ has quit IRC
[19:57:07] *** bbankes_ has quit IRC
[19:58:11] *** italoacasas has joined #angularjs
[19:58:13] *** bbankes has joined #angularjs
[20:01:31] *** benvantende has quit IRC
[20:01:56] *** iamvfl has quit IRC
[20:02:28] *** bbankes has quit IRC
[20:02:53] *** michaelm has joined #angularjs
[20:04:32] *** bbankes has joined #angularjs
[20:05:08] *** ngbot has joined #angularjs
[20:05:08] <ngbot> angular.js/master e57cf13 Justas Brazauskas: docs: fix typos throughout the codebase...
[20:05:08] *** ngbot has left #angularjs
[20:07:12] *** ollo has joined #angularjs
[20:07:26] *** iceball has joined #angularjs
[20:07:47] <ollo> a question about ngroute and ngview
[20:08:51] <ollo> forget it please :-) its another matter
[20:09:25] *** fantnn has joined #angularjs
[20:09:34] <ollo> I set a ui.carousel in a view, with some images from an object in an js file
[20:09:45] <ollo> with ngrepeatç
[20:10:01] *** bbankes has quit IRC
[20:10:12] <ollo> now I want to click in the images to open another view but I don't know how to do it
[20:10:14] <ollo> any idea?
[20:10:37] *** _matix has quit IRC
[20:11:04] *** bbankes has joined #angularjs
[20:11:10] *** casf has quit IRC
[20:11:16] *** nerdfiles has quit IRC
[20:11:42] *** Schalla has joined #angularjs
[20:11:43] *** Schalla has joined #angularjs
[20:12:37] *** bbankes has quit IRC
[20:13:22] *** bengillies has joined #angularjs
[20:13:37] *** bbankes has joined #angularjs
[20:14:37] *** rossk has joined #angularjs
[20:14:52] *** Aliks has joined #angularjs
[20:15:32] *** floriangosse has left #angularjs
[20:16:02] *** rossk has quit IRC
[20:16:18] *** tomphp has joined #angularjs
[20:17:28] *** Sky[x] has joined #angularjs
[20:18:03] *** jimklo has quit IRC
[20:18:14] *** bengillies has quit IRC
[20:18:15] *** morissette has quit IRC
[20:18:52] *** sergey has joined #angularjs
[20:19:53] *** casf has joined #angularjs
[20:20:17] *** annlewis has joined #angularjs
[20:24:35] *** pelim has quit IRC
[20:24:46] *** annlewis has quit IRC
[20:25:42] *** Goobbue has quit IRC
[20:26:06] *** Goobbue has joined #angularjs
[20:28:09] *** dascodeman has quit IRC
[20:28:40] *** tomphp has quit IRC
[20:28:58] *** fantnn has quit IRC
[20:29:09] *** ccohn has joined #angularjs
[20:29:10] *** bbankes has quit IRC
[20:29:18] *** lemur has joined #angularjs
[20:30:06] *** Goobbue has quit IRC
[20:30:13] *** c00ljs has quit IRC
[20:30:16] *** itamar__ has quit IRC
[20:30:19] *** bbankes has joined #angularjs
[20:30:22] *** fantnn has joined #angularjs
[20:30:28] *** dascodeman has joined #angularjs
[20:30:55] *** itamar__ has joined #angularjs
[20:31:17] *** tomphp has joined #angularjs
[20:32:15] *** phelix has joined #angularjs
[20:32:59] <phelix> I am using ui.slider it works perfectly fine in desktop. However in mobile it seems that it doesn't even initialize as its not adding the correct classes etc as how it does on desktop version. Anyone have any ideas what could be causing this?
[20:33:27] *** ccohn has quit IRC
[20:33:32] *** dascodeman has quit IRC
[20:34:23] *** lemur has quit IRC
[20:34:37] *** nanuko has joined #angularjs
[20:34:52] *** michaelm has quit IRC
[20:35:25] *** illume has quit IRC
[20:35:44] *** _matix has joined #angularjs
[20:35:51] *** codeitloadit has joined #angularjs
[20:36:01] *** tomphp has quit IRC
[20:36:02] *** elton has joined #angularjs
[20:36:05] *** Ragnar has joined #angularjs
[20:36:40] *** Garfield-fr has joined #angularjs
[20:37:28] *** Guest87729 has quit IRC
[20:37:51] *** shinnya has joined #angularjs
[20:37:55] *** lmatteis has quit IRC
[20:38:26] *** bbankes has quit IRC
[20:38:36] *** davi has quit IRC
[20:40:23] *** elton has quit IRC
[20:40:26] *** p0k0 has joined #angularjs
[20:40:37] *** codeitloadit has quit IRC
[20:40:46] *** annlewis has joined #angularjs
[20:41:41] *** annlewis_ has joined #angularjs
[20:43:28] *** SomeKittens has joined #angularjs
[20:44:16] *** marc_v92 has joined #angularjs
[20:45:24] *** benjamingr_ has quit IRC
[20:45:35] *** annlewis has quit IRC
[20:47:17] *** hackel has joined #angularjs
[20:47:38] *** tomphp has joined #angularjs
[20:49:39] *** itamar__ has quit IRC
[20:49:42] *** itamarjp has quit IRC
[20:50:00] *** cotko has joined #angularjs
[20:50:15] *** tomphp has quit IRC
[20:50:47] *** annlewis_ has quit IRC
[20:53:05] *** bbankes has joined #angularjs
[20:53:42] *** OtherAllan has quit IRC
[20:55:12] *** illume has joined #angularjs
[20:56:50] *** OtherAllan has joined #angularjs
[20:57:06] *** niftylettuce has quit IRC
[20:59:15] *** dascodeman has joined #angularjs
[21:00:08] *** dascodeman has quit IRC
[21:00:23] <marc_v92> I've got a factory that does some $http calls to get the current's users status within a workflow, and then load in the necessary step (again, using $http) dynamically.
[21:00:24] *** dascodeman has joined #angularjs
[21:00:34] *** wyu_ has joined #angularjs
[21:00:36] *** wyu has quit IRC
[21:00:37] *** wyu_ is now known as wyu
[21:00:49] <marc_v92> However, the steps can be any one of a number of predefined types (surveys, activities, etc)
[21:01:17] *** Bloomer has quit IRC
[21:01:26] *** blitheBoudica has quit IRC
[21:01:32] <marc_v92> So I'm needing to use $compile() so that if a "survey" type is returned, I can use $compile("<survey></survey>"), and so on for activities, etc.
[21:01:51] *** fantnn has quit IRC
[21:02:34] *** diegoaguilar has quit IRC
[21:02:37] <marc_v92> But I'm having trouble wrapping my head around how to implement the $compile. From my reading, I see that using $scope in a factory is a bad idea, so I'm confused as to how I can run the various async calls to get the data I need, and then pass that into the main controller to run the correct $compile command. Could anyone point me in the right direction?
[21:02:41] *** dascodeman has quit IRC
[21:03:03] *** baweaver has quit IRC
[21:04:00] *** fantnn has joined #angularjs
[21:05:17] *** mikeones has quit IRC
[21:05:34] *** mikeones has joined #angularjs
[21:06:34] *** Hubatrix has joined #angularjs
[21:08:32] *** OtherAllan has quit IRC
[21:08:39] *** ollo has quit IRC
[21:09:52]
<Hubatrix> hey guys i am new the angular js started seconds back and wrote a small thing to check if i understood basics but this loading a blank screen can some one help me ? http://sprunge.us/RhSD
[21:10:06] <Hubatrix> Iis
[21:10:09] <Hubatrix> *is
[21:10:11] *** s3shs has joined #angularjs
[21:11:05] <Hubatrix> anyone here?
[21:11:39] *** blitheBoudica has joined #angularjs
[21:12:41] <s3shs> Is there a particular d3 directive I should use, or do people mostly roll their own?
[21:12:55] <Hubatrix> anyone ?
[21:13:28] *** cuebix-wk has quit IRC
[21:13:37] *** dascodeman has joined #angularjs
[21:14:08] *** diegoaguilar has joined #angularjs
[21:14:36] *** wyu has quit IRC
[21:14:58] *** wyu has joined #angularjs
[21:15:14] *** jieryn has quit IRC
[21:15:46] <icfantv> Hubatrix: hang on, lemme take a look. also, if someone is available to help, they will. just gotta be patient. :-)
[21:15:52] *** dascodeman has quit IRC
[21:16:02] <Hubatrix> į¹hanks icfantv
[21:16:16] <icfantv> Hubatrix: put your <script> tags in the <head>
[21:16:30] <icfantv> move the ng-app to <body>
[21:16:35] *** Bodin has joined #angularjs
[21:16:43] <icfantv> leaving it on <html> can cause issues w/ ngAnimate
[21:16:43] <marc_v92> Hubatrix: <script type="text/javascript" src="app.js"</script>
[21:16:47] <marc_v92> Missing the ">"
[21:16:54] <icfantv> and that ^^
[21:17:15] <icfantv> Hubatrix: your first stop should be your developer console in your browser
[21:17:50] *** twh1808 has joined #angularjs
[21:18:10] *** cotko has quit IRC
[21:18:30] <twh1808> Is there a timeframe for the 1.5 release?
[21:18:39] <icfantv> twh1808: when it's ready. ;-)
[21:18:52] <icfantv> twh1808: but is in beta
[21:18:54] *** wonder95 has joined #angularjs
[21:19:09] <icfantv> oh, it's in RC
[21:19:10] <Hubatrix> oh thanks marc_v92 it was 1 syntax error and thanks icfantv for proper code orientation
[21:19:12] <icfantv> go for it
[21:19:25] <twh1808> I realize it's in beta, but it's not published to NPM and that's how our current application pulls dependencies.
[21:19:40] *** storresi has quit IRC
[21:19:45] <twh1808> rc/beta, whatever the tag is now.
[21:19:58] <icfantv> out of beta, officially in RC
[21:20:05] *** dascodeman has joined #angularjs
[21:20:16] <icfantv> google doesn't typically announce release dates for projects.
[21:20:22] <icfantv> that never went so well for MSFT
[21:21:16] <twh1808> I figured as much, just wasn't sure if anyone had an "estimated date".
[21:21:46] *** tiwest has quit IRC
[21:22:40] *** simion314 has quit IRC
[21:22:44] *** twh1808 has quit IRC
[21:23:32] *** illume has quit IRC
[21:23:49] *** leolrrj has quit IRC
[21:24:07] <dman777_alter> whats the best way to convert a object to query string with angular 1.2.*?
[21:24:15] *** leolrrj has joined #angularjs
[21:24:30] *** tiwest has joined #angularjs
[21:27:00] *** joaoneto has quit IRC
[21:27:25] *** Jusuchin has joined #angularjs
[21:28:09] *** Sky[x] has quit IRC
[21:28:19] <Jusuchin> Is anyone able to help with a ui-grid question?
[21:29:00] *** juddey has joined #angularjs
[21:29:54] *** ccohn has joined #angularjs
[21:30:16] *** greengriminal has quit IRC
[21:30:21] *** s3shs has quit IRC
[21:30:46] *** swordfish has joined #angularjs
[21:31:19] *** TyrfingMjolnir has quit IRC
[21:31:33] *** jieryn has joined #angularjs
[21:32:57] *** cotko has joined #angularjs
[21:33:17] *** baweaver has joined #angularjs
[21:34:07] *** ccohn has quit IRC
[21:34:08] *** umpacto has joined #angularjs
[21:34:12] <umpacto> hi
[21:34:34] *** TyrfingMjolnir has joined #angularjs
[21:35:15] *** TyrfingMjolnir has quit IRC
[21:35:36] *** TyrfingMjolnir has joined #angularjs
[21:36:05] *** lemur has joined #angularjs
[21:36:43] *** elton has joined #angularjs
[21:37:00] *** tobias47n9e_ has joined #angularjs
[21:37:37] *** zeioth has quit IRC
[21:38:27] *** baweaver has quit IRC
[21:38:41] *** s3shs has joined #angularjs
[21:39:55] *** bayousoft has joined #angularjs
[21:40:37] *** tobias47n9e__ has quit IRC
[21:41:24] *** elton has quit IRC
[21:45:10] *** umpacto has quit IRC
[21:45:46] *** sbellina has quit IRC
[21:45:46] *** OtherAllan has joined #angularjs
[21:47:22] *** annlewis has joined #angularjs
[21:47:52] *** jmitchell has joined #angularjs
[21:48:19] *** rho has quit IRC
[21:49:25] *** bayousoft has quit IRC
[21:51:46] *** annlewis has quit IRC
[21:51:52] <Ragnar> Hey, how do you guys typically handle open graph tags in SPAs where different views should have different meta tags?
[21:56:30] *** ASTP001 has quit IRC
[21:56:52] *** ASTP001 has joined #angularjs
[21:59:47] *** fantnn has quit IRC
[21:59:52] <Hubatrix> hey icfantv marc_v92 i want to learn how to use loopback.io and basic blog implementation like only admin can write and viewers can read etc, is there any example or tutorial for it?
[22:01:37] *** fantnn has joined #angularjs
[22:02:24] *** elyssonmr has quit IRC
[22:02:51] *** phelix has quit IRC
[22:03:19] <Hubatrix> marc_v92: icfantv ??
[22:03:41] <icfantv> Hubatrix: dude, i have no idea
[22:03:50] <marc_v92> Hubatrix: Please show patience. Many of us work during the day while we're on IRC and can't immediately drop what we're doing whenever you need a hand.
[22:03:53] *** lemur has quit IRC
[22:03:56] <icfantv> dman777_alter: what's a query string?
[22:04:02] <icfantv> oh
[22:04:05] <icfantv> in the URL
[22:04:16] <marc_v92> Hubatrix: You're also more likely to get support if you don't specifically mention users when you're asking an open question.
[22:04:16] <icfantv> dman777_alter: let angular do it?
[22:04:27] *** baweaver has joined #angularjs
[22:04:28] *** ASTP001 has quit IRC
[22:04:45] * icfantv attempts to work during the day...
[22:05:03] *** Jardayn has quit IRC
[22:05:08] <jmitchell> Is there a way to wrap a built-in angular type?
[22:05:37] <jmitchell> I would like to create an angular.value object that I can inject into a controller, but I want it to inherit from sane defaults
[22:05:54] *** jonno11 has joined #angularjs
[22:06:27] *** Nephro has joined #angularjs
[22:06:31] *** tomphp has joined #angularjs
[22:07:13] *** Aliks has quit IRC
[22:07:33] *** Hubatrix has quit IRC
[22:07:48] <Nephro> Hello, studying angularjs and currently on custom element/attribute directives and ng-include. Question: isn't it a major turnoff if I am working on a big project and structure it into small templates and the browser would have to recursively traverse the dependency tree of these templates and go back back and forth between the server?
[22:09:46] *** jtimon has quit IRC
[22:11:12] *** pelim has joined #angularjs
[22:12:14] *** phrozensilver has quit IRC
[22:12:28] *** squeakytoy has quit IRC
[22:14:13] *** OtherAllan has quit IRC
[22:14:34] *** Aliks has joined #angularjs
[22:14:38] *** iraj has quit IRC
[22:15:11] *** bengillies has joined #angularjs
[22:15:54] *** squeakytoy has joined #angularjs
[22:16:46] *** ansimation has joined #angularjs
[22:17:19] *** marc_v92 has quit IRC
[22:17:30] *** owenjones has joined #angularjs
[22:17:33] *** FIFOd has joined #angularjs
[22:17:57] *** OnkelTem has quit IRC
[22:18:37] *** OnkelTem has joined #angularjs
[22:19:00] *** steeze has joined #angularjs
[22:20:28] *** bengillies has quit IRC
[22:21:06] <icfantv> jmitchell: explain
[22:21:32] *** Z3R0 has joined #angularjs
[22:21:41] *** jareddlc has quit IRC
[22:21:44] *** Z3R0 has quit IRC
[22:21:52] *** thatslifeson has joined #angularjs
[22:21:54] <icfantv> Nephro: depends how you build your project. any loaded template is placed in to angular's $templateCache so subsequent requests are just pulled from memory
[22:22:12] *** owenjones has quit IRC
[22:22:35] <jmitchell> but I would really like to extend it from some defaults (all these are gonna have submit actions)
[22:22:44] <Nephro> icfantv, but either way, if I have, say, hundreds of templates and they are nested, with there be hundreds of calls to the server?
[22:22:51] <icfantv> Nephro: so if you don't use a product like webpack and you don't preadd your templates into the cache, then there will be one request per template assuming you're using templateUrl
[22:23:49] <icfantv> Nephro: but you can use a product like webpack that will load ALL your templates at build time and put them into the cache so they're not pulled down individually, but rather sent down with the initial page load (because they're packaged as part of your bundle.js file).
[22:24:05] <Nephro> meaning before I start any sort of serious project on Angular I also need to grasp a 3rd party tool?
[22:24:21] <icfantv> Nephro: if you don't do what i suggested, then yes but only one and only when the template is requested.
[22:24:38] <icfantv> if you don't ever load a directive that has a template, angular won't fetch it.
[22:25:06] <icfantv> Nephro: no. not really. but gulp and wepback are build tools, not programming tools
[22:25:15] <icfantv> you do need a way to run your tests
[22:25:34] *** phrozensilver has joined #angularjs
[22:25:35] *** pelim has quit IRC
[22:25:36] <icfantv> and the build tools allow you to have only ONE script include instead of dozens
[22:25:42] *** pelim has joined #angularjs
[22:25:50] <icfantv> requirejs also lets you do this
[22:25:57] <icfantv> w/ JS files. not w/ templates
[22:26:23] <Nephro> icfantv, well I was doing something like that with watchify or whatever it's called and the output is not too human readable. Not sure how that can work with html but I will check it out
[22:26:31] <icfantv> but requireJS will put script blocks in the <head> for each dependency so it's not REALLY saving you anthing other than lazy loading
[22:26:53] <icfantv> Nephro: the html isn't compressed. it can't be. it's your template
[22:27:15] <icfantv> it just bundles everythign together so you only have one file to download for your entire app and all of its dependencies
[22:27:29] <icfantv> like, even the angular.js file gets bundled
[22:28:10] <icfantv> jmitchell: i'm still not clear on what problem you're attempting to solve
[22:28:24] *** lemur has joined #angularjs
[22:28:31] <Nephro> I understand how it can bundle html templates into one file, that's ok, but how will it trick angular to not call the server? Is the cache population some sort of builtin functionality of that webpack?
[22:29:29] <icfantv> Nephro: no. angular checks the template cache (i think) and if it's not there will pull from the server and then place into the cache.
[22:29:45] *** ansimation has quit IRC
[22:29:46] <jmitchell> ok I just had a convo w a coworker and realized that I don't really need to do this to solve my problem, but basically what I wanted to be able to do is to be able to create like a `angular.formConfig('nameOfForm', {//my object})`
[22:29:55] <icfantv> webpack has a plugin that will scan all your JS files and look for where you are using external templates and put them into the cache
[22:30:05] <jmitchell> and that object would like inherit from a base object
[22:30:06] <icfantv> it basically creates a JS wrapper that loads them
[22:30:10] *** doppio|Laptop has joined #angularjs
[22:30:33] <icfantv> jmitchell: still not following
[22:30:39] *** ccohn has joined #angularjs
[22:30:50] <icfantv> jmitchell: higher level, what problem are you trying to solve
[22:31:14] *** ASTP001 has joined #angularjs
[22:31:29] <jmitchell> making an injectable that extended
[22:31:37] <icfantv> Nephro: if you do preload your cache, howver, the syntax is different for your ng-include
[22:31:42] <jmitchell> from somewhere else. fiddlin' hold on
[22:31:52] *** TheoMurpse has quit IRC
[22:32:03] <icfantv> nephro, you need to wrap it in single and double quotes. ala ng-include="'myfile.html'"
[22:33:03] *** lemur has quit IRC
[22:33:27] <Nephro> icfantv, so if I have something like "app.directive('d', function(){ return { restrict: 'E', templateUrl: 'foo.html'}; })" webpack can switch it out to a js wrapper?
[22:34:02] *** TheoMurpse has joined #angularjs
[22:34:16] <jmitchell> icfantv that's the essential thing I want to be able to do
[22:35:14] *** ccohn has quit IRC
[22:35:22] *** ansimation has joined #angularjs
[22:35:52] *** lemur has joined #angularjs
[22:36:49] *** sonofdirt has quit IRC
[22:36:49] *** chronos has quit IRC
[22:36:58] <icfantv> Nephro: it will create one wrapper for ALL the templates. not one for each.
[22:37:06] *** crono has joined #angularjs
[22:37:25] *** elton has joined #angularjs
[22:37:43] *** ulkesh has quit IRC
[22:38:05] *** ulkesh has joined #angularjs
[22:38:33] *** lemur has quit IRC
[22:38:37] *** tomphp has quit IRC
[22:38:38] *** baweaver has quit IRC
[22:39:21] *** Bodin has quit IRC
[22:39:25] *** iceball has quit IRC
[22:39:37] *** TheoMurpse has quit IRC
[22:39:50] *** Bodin has joined #angularjs
[22:40:04] *** Jusuchin has quit IRC
[22:40:14] *** robert__ has joined #angularjs
[22:40:30] <icfantv> jmitchell: sorry to beat a dead horse, but i still don't knwo what you want to do. from a high level, please explain it to me
[22:40:32] <icfantv> conceptually
[22:41:14] <jmitchell> you have 30 objects that all have some attribute in them that is similar
[22:41:29] <jmitchell> you don't want to have to copy and paste that code into every object
[22:41:47] <icfantv> what are you doing w/ that object?
[22:42:02] *** elton has quit IRC
[22:42:27] <jmitchell> basically building it up and then putting it on vm/scope
[22:42:36] <icfantv> you can create a service and store the base object on it and "get" the object out of the service as a copy.
[22:42:45] <icfantv> you might also be interested in angular-formly
[22:42:59] <jmitchell> yeah this is wrapping angular-formly
[22:43:10] <icfantv> and defining the formly fields array?
[22:43:19] <jmitchell> fields/model/etc.
[22:43:37] <icfantv> yea, create a service that provides the stuff or use a const
[22:43:42] *** ASTP001 has quit IRC
[22:44:03] <icfantv> angular.module(…).constant(...)
[22:45:09] <jmitchell> yep that works, the part that I'm having trouble with is how I can make the generalize/base stuff inherit
[22:45:24] <jmitchell> I don't wanna do it in every single controller
[22:45:46] *** robert__ has quit IRC
[22:46:05] *** FIFOd has quit IRC
[22:46:37] <jmitchell> and I could wrap the object value in a service, but then I'm still copy and pasting the "inherit from this base const" in every one of these
[22:46:41] *** lmatteis has joined #angularjs
[22:47:04] <jmitchell> well I guess that really isn't bad
[22:47:34] *** siba has joined #angularjs
[22:47:53] *** ctanga has quit IRC
[22:48:09] *** annlewis has joined #angularjs
[22:51:01] <icfantv> jmitchell: angular.extend?
[22:51:07] *** cesar_ has joined #angularjs
[22:51:08] *** ASTP001 has joined #angularjs
[22:51:26] *** yky_ has joined #angularjs
[22:51:31] *** cesar_ is now known as Guest6922
[22:51:43] *** jmitchell has quit IRC
[22:51:46] *** fedenunez has quit IRC
[22:52:15] *** jmitchell has joined #angularjs
[22:52:25] *** sergey has quit IRC
[22:52:32] *** Guest6922 has quit IRC
[22:52:46] *** annlewis has quit IRC
[22:52:55] *** cesarc has joined #angularjs
[22:53:56] *** dascodeman has quit IRC
[22:54:26] *** jieryn has quit IRC
[22:54:47] *** ASTP001 has quit IRC
[22:55:09] *** ASTP001 has joined #angularjs
[22:56:14] *** Aliks has quit IRC
[22:56:26] *** kk_drop has quit IRC
[22:56:46] *** blitheBoudica has quit IRC
[22:56:51] *** Aliks has joined #angularjs
[22:56:53] *** wyu has quit IRC
[22:59:47] *** fred-fri has joined #angularjs
[23:00:36]
<fred-fri> i want to be able to write new Capital(1000) in the controller that uses this service, what do i need to do in order to enable that? http://pastebin.com/6M4cU9vW
[23:02:25] *** doppio|Laptop has quit IRC
[23:02:45] *** ASTP001 has quit IRC
[23:03:05] *** Nephro has quit IRC
[23:03:57] *** swordfish has quit IRC
[23:05:14] *** jmitchell has quit IRC
[23:05:21] *** ASTP001 has joined #angularjs
[23:07:03] *** Schalla has quit IRC
[23:10:00] *** fantnn has quit IRC
[23:10:38] *** dcherman2 has joined #angularjs
[23:11:25] *** yky_ has quit IRC
[23:12:31] *** Sky[x] has joined #angularjs
[23:13:15] *** starsparrow has quit IRC
[23:14:13] *** hexus0 has joined #angularjs
[23:14:18] *** dcherman has quit IRC
[23:14:26] *** mellernoia-work has quit IRC
[23:15:05] *** swordfish has joined #angularjs
[23:16:24] <okanaganrusty> i'm stuck, can someone please tell me why this angular 1.4.8 is not working, i'm sure it's something blatantly obvious, i've just been staring at this for too long.
[23:16:36] *** dcherman2 has quit IRC
[23:16:54] <diegoaguilar> okanaganrusty, explain more ur problem
[23:16:58] *** bengillies has joined #angularjs
[23:17:08] *** yky_ has joined #angularjs
[23:17:32] <okanaganrusty> diegoaguilar, i'm receiving an error: Uncaught Error: [$injector:modulerr] Failed to instantiate module anonymouscallrejectionApp due to:
[23:17:32] <okanaganrusty> Error: [$injector:nomod] Module 'anonymouscallrejectionApp' is not available! You either misspelled the module name or forgot to load it. If registering a module ensure that you specify the dependencies as the second argument.
[23:17:41] *** cocao has quit IRC
[23:17:44] <okanaganrusty> even though i believe i've defined the app properly
[23:18:21] <diegoaguilar> okanaganrusty, please use unminified resources during dev
[23:18:47] *** sbellina has joined #angularjs
[23:21:35] <diegoaguilar> can someone mention me
[23:21:38] <diegoaguilar> Im testing sounds
[23:22:06] *** mven has quit IRC
[23:22:20] *** Poeticode has quit IRC
[23:22:32] *** bengillies has quit IRC
[23:22:55] *** AndrewIsh has quit IRC
[23:24:15] *** ngbot has joined #angularjs
[23:24:15] <ngbot> angular.js/master 6988667 Georgios Kalpakas: docs($routeProvider): document `resolveAs` and assiging `resolve` map on scope...
[23:24:16] <ngbot> angular.js/master c7ed8a3 Georgios Kalpakas: docs(component): add examples on how to use components with `ngRoute`...
[23:24:16] *** ngbot has left #angularjs
[23:25:58] *** Bennit_GRR has quit IRC
[23:26:14] *** Lunks has quit IRC
[23:26:41] *** cocao has joined #angularjs
[23:27:59] *** yky_ has quit IRC
[23:29:25] *** diosney_ has quit IRC
[23:30:04] *** alphonse23__ is now known as alphonse23_
[23:30:40] *** fixl has joined #angularjs
[23:31:20] *** steeze has quit IRC
[23:31:25] *** ccohn has joined #angularjs
[23:32:02] *** leolove has quit IRC
[23:32:51] *** Codefriar has joined #angularjs
[23:33:05] *** diegoaguilar has quit IRC
[23:33:20] *** diegoaguilar has joined #angularjs
[23:34:56] *** italoacasas has quit IRC
[23:35:03] *** John___ has joined #angularjs
[23:35:20] <John___> hi
[23:35:20] *** dcherman has joined #angularjs
[23:35:53] <John___> I was wondering why I would wish to use a front end framework with a backend framework like rails or express
[23:35:53] *** ccohn has quit IRC
[23:36:02] <John___> what benefit would I get out of it
[23:37:15] *** leolrrj-alt has joined #angularjs
[23:38:12] *** zigzagzig has quit IRC
[23:38:13] *** fantnn has joined #angularjs
[23:38:16] *** elton has joined #angularjs
[23:38:33] *** CanyonMan has quit IRC
[23:39:28] *** encryptd_fractal has quit IRC
[23:40:04] *** Goobbue has joined #angularjs
[23:40:42] *** jbro has quit IRC
[23:40:58] *** leolrrj has quit IRC
[23:42:32] *** leolrrj-alt has quit IRC
[23:42:49] *** elton has quit IRC
[23:43:14] *** mary5030 has quit IRC
[23:43:26] *** bbankes has quit IRC
[23:43:26] *** chairmanmow has quit IRC
[23:43:34] *** fantnn has quit IRC
[23:44:28] *** Coldblackice has joined #angularjs
[23:44:54] *** John___ has quit IRC
[23:45:13] *** macabre has quit IRC
[23:46:58] *** walden is now known as walden|afk
[23:47:26] *** leolrrj has joined #angularjs
[23:48:54] *** annlewis has joined #angularjs
[23:48:58] *** Aliks has quit IRC
[23:49:08] *** cocao has quit IRC
[23:49:31] *** TheoMurpse has joined #angularjs
[23:49:37] *** codeitloadit has joined #angularjs
[23:49:47] *** fantnn has joined #angularjs
[23:49:51] *** codeitloadit has quit IRC
[23:50:21] *** fantnn has quit IRC
[23:50:30] *** codeitloadit has joined #angularjs
[23:50:35] *** benvantende has joined #angularjs
[23:52:28] *** dman777_alter has quit IRC
[23:52:46] *** tomphp has joined #angularjs
[23:53:39] *** annlewis has quit IRC
[23:55:02] *** ASTP001 has quit IRC
[23:55:57] *** thirdkni_ has joined #angularjs
[23:56:48] *** Aliks has joined #angularjs
[23:57:06] *** thirdknife has quit IRC
[23:57:23] *** fscala has quit IRC
[23:57:24] *** baweaver has joined #angularjs
[23:58:30] *** fscala has joined #angularjs
[23:59:00] *** ASTP001 has joined #angularjs
[23:59:12] *** squeakytoy has quit IRC
[23:59:51] *** thirdknife has joined #angularjs