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

Toggle Join/Part | bottom
[00:01:36] *** dc_ has quit IRC
[00:02:02] *** bayousoft has quit IRC
[00:02:21] *** wxo has quit IRC
[00:02:35] *** dc_ has joined #angularjs
[00:02:53] *** dbouwman has joined #angularjs
[00:02:59] *** Xethron has quit IRC
[00:04:48] *** moritzs has quit IRC
[00:04:49] *** nodweber has quit IRC
[00:04:50] *** Xethron has joined #angularjs
[00:06:05] *** Reskp has joined #angularjs
[00:06:11] *** heavyhor1e has quit IRC
[00:06:15] *** johnstorey has joined #angularjs
[00:06:21] *** heavyhorse has joined #angularjs
[00:07:34] *** cristatus has quit IRC
[00:07:39] *** bmac has joined #angularjs
[00:08:01] *** carbonpile has joined #angularjs
[00:08:04] *** Mouzi has quit IRC
[00:08:10] *** dc_ has quit IRC
[00:11:01] *** dc_ has joined #angularjs
[00:12:42] *** seydoggy has joined #angularjs
[00:12:57] *** SomeKittens has quit IRC
[00:13:52] *** dcherman has joined #angularjs
[00:15:36] *** dc_ has quit IRC
[00:16:04] *** ckboii89 has joined #angularjs
[00:17:11] *** seydoggy has quit IRC
[00:17:46] *** hswolff has quit IRC
[00:18:18] *** feelfine has quit IRC
[00:19:50] *** wxo has joined #angularjs
[00:19:52] *** leyluj has quit IRC
[00:20:20] *** ckboii89 has quit IRC
[00:20:43] *** blueadept` has quit IRC
[00:20:54] *** blueadept has joined #angularjs
[00:20:59] *** thebigredgeek has quit IRC
[00:21:09] *** mennea has joined #angularjs
[00:21:21] *** DuelShark has quit IRC
[00:22:37] *** dcherman has quit IRC
[00:22:57] *** nodweber has joined #angularjs
[00:24:24] *** wxo has quit IRC
[00:25:48] *** mennea has quit IRC
[00:26:14] *** wxo has joined #angularjs
[00:27:14] *** asterick has joined #angularjs
[00:28:53] *** dc_ has joined #angularjs
[00:28:59] *** gordroid has joined #angularjs
[00:29:31] *** jharbaugh has joined #angularjs
[00:30:29] *** kennbrodhagen has quit IRC
[00:30:30] *** nodweber has quit IRC
[00:30:52] *** jharbaugh has joined #angularjs
[00:30:54] *** wxo has quit IRC
[00:31:27] *** MacWinner has joined #angularjs
[00:32:22] *** Siecje has quit IRC
[00:32:30] *** wxo has joined #angularjs
[00:32:53] *** anjumkaiser has joined #angularjs
[00:33:26] *** gordroid has quit IRC
[00:33:53] *** danielpquinn has joined #angularjs
[00:34:07] <MacWinner> i have a custom directive that can appear on a page 50 times.. each directive has the ability to send an ajax request to update it's own data via a customer service .. is there going to be a big problem if I broadcast an event from the controller to tell all instances to do an ajax update? ie, I was hoping that I didn't need to do some extra logic to batch the request in my customer service.. or maybe there is some library or
[00:34:07] <MacWinner> example out there to help do this?
[00:35:16] *** jharbaugh has quit IRC
[00:35:53] *** whunt has joined #angularjs
[00:35:58] <snurfery> tell all of them to do an update?
[00:36:00] <snurfery> at once?
[00:36:07] <snurfery> that seems like it would cause some issues
[00:36:53] *** TheAceOfHearts has quit IRC
[00:37:12] <snurfery> whatever you're doing with broadcast you can probably do with a service instead
[00:37:23] <MacWinner> yeah.. basically each item is a list of tags for an object.. i want the user to be able to update the tags on each item in bulk
[00:37:36] <snurfery> oic
[00:37:37] <snurfery> hmm
[00:37:54] *** carbonpile has quit IRC
[00:38:09] *** fedenunez has quit IRC
[00:38:16] <snurfery> and you can't just alter the underlying data directly?
[00:38:24] *** danielpquinn has quit IRC
[00:38:27] <MacWinner> i like that each directive is independent of the other and that I can orchestrate them with events..
[00:38:29] <snurfery> if there are 50 of these things, there has to be an array with all that stuff in there
[00:38:48] *** endash has quit IRC
[00:39:27] *** mfunkie has joined #angularjs
[00:39:30] *** caitp has joined #angularjs
[00:39:39] <MacWinner> i mean I could probably do some tricks around batching everything together and then send them all together.. i was hoping for a simpler way though.. like maybe the service could auto-batch multiple requests if there are X number of outstanding $http requests
[00:39:55] * snurfery nods
[00:39:57] <snurfery> that sounds great
[00:40:12] <snurfery> inject the service into each one of the directives
[00:40:21] <MacWinner> so each direvtive wourld call: customService.updateTags(myId, newTags)
[00:40:24] <snurfery> then they can just queue up their updates on a variable on the service
[00:40:27] *** Guest43899 is now known as JSON_voorhees
[00:40:57] <MacWinner> yeah.. got any pointers to maybe an example of someone who has done this? i can imagine there may be corner cases..
[00:41:02] *** jamto11 has joined #angularjs
[00:41:11] <MacWinner> the service can return a promise to each directive
[00:41:26] <snurfery> yup
[00:41:41] <snurfery> shouldn't be too crazy, that's what angular's good at =)
[00:42:42] <MacWinner> i guess the service can have an internal array of outstanding requests and there associated deferreds.. when each batch is complete, i can resolve the assoicated deffered.. sound reasonable?
[00:42:57] *** sheeppower has quit IRC
[00:43:16] <snurfery> absolutely
[00:44:10] <MacWinner> so I get that each customerService.updateTags() call will push an item on the internal array.. what's the best way to process that array in batches and syncronize the $http calls?
[00:44:49] <MacWinner> some sort of timer that checks it every X milliseconds?
[00:44:51] <snurfery> maybe use $interval to process the queue
[00:44:55] *** Emperor_Earth_ has joined #angularjs
[00:45:00] <snurfery> yeah that's exactly what it does
[00:45:14] <snurfery> and I just got finished building this polling service with it too
[00:45:31] <snurfery> just remember that you have to manually cancel it..!
[00:45:45] *** jamto11 has quit IRC
[00:45:56] <snurfery> var cancelPromise = $interval(function() {...}, 5000);
[00:45:58] <snurfery> then later
[00:46:04] *** whunt has quit IRC
[00:46:16] *** dc_ has quit IRC
[00:46:17] <MacWinner> alrighty.. thanks for the tips
[00:46:24] <snurfery> $scope.$on('$destroy', function() $interval.cancel(cancelPromise));
[00:47:54] *** wartdev has quit IRC
[00:48:36] *** Emperor_Earth has quit IRC
[00:48:53] *** cristatus has joined #angularjs
[00:49:27] *** daslicht has quit IRC
[00:49:52] *** endash has joined #angularjs
[00:50:13] *** dc_ has joined #angularjs
[00:50:43] *** evilaliv3 has joined #angularjs
[00:50:49] <MacWinner> snurfery, actually.. maybe i don't need $interval.. I can just make the service recursively check the queue array for any oustanding requests..On the $http .then(), if there are outstanding items, i can batch them, mark them as being in process, and make the next $http with that batch..
[00:51:18] *** fedenunez has joined #angularjs
[00:51:24] <MacWinner> does that make sense? I'm not a js expert at all.. trying to avoid some weird race conditions that I may not be aware of
[00:52:32] *** SchizoDuckie has joined #angularjs
[00:52:32] *** RootWeiller has quit IRC
[00:52:50] <SchizoDuckie> Hi all :)
[00:52:50] *** Xethron has quit IRC
[00:53:21] *** cristatus has quit IRC
[00:53:26] <SchizoDuckie> I've got a problem that baffles me: my <form> tag disappears, and therefore I cannot access the form directive on the scope
[00:53:36] *** vincentjr has joined #angularjs
[00:53:38] <snurfery> just depends on how you code it, I'm sure either way can work
[00:53:45] *** fold has quit IRC
[00:53:51] <snurfery> SchizoDuckie: do you accidentally have a form within a form?
[00:53:52] <Reskp> hi guys, how can i compile an ng-bind-html without using a directive or include?
[00:54:19] <snurfery> Reskp: search for $sce and you can prepare the html in your controller
[00:54:21] <SchizoDuckie> hmmm possibly snurfery
[00:54:52] *** abierbaum has joined #angularjs
[00:54:57] *** dc_ has quit IRC
[00:54:57] <SchizoDuckie> snurfery: yep. you are a god! thanks
[00:55:04] *** abierbaum has quit IRC
[00:55:11] <snurfery> oh shit seriously? sweeeet
[00:55:11] <snurfery> haha
[00:55:20] <Reskp> snurfery taht what i did but ng-clickk does not works.=> content: $compile($sce.trustAsHtml('Win a new level or view 3 ads to unlock a new level.<br><div class="btn" ng-click="viewAd()">VIEW AD</div>'))
[00:55:24] <snurfery> I only know because I did the same damn thing
[00:55:29] <SchizoDuckie> haha brilliant
[00:55:36] <SchizoDuckie> i've been bithcing at this for an hour
[00:55:39] <MacWinner> wow
[00:55:39] <SchizoDuckie> like wtf
[00:55:42] <Reskp> oups forget $compile ;)
[00:55:43] <SchizoDuckie> but that explains a lot :P
[00:56:58] <snurfery> hmm I haven't worked with compile too much
[00:57:12] <snurfery> but you have to feed it a scope somehow
[00:57:23] <snurfery> or else it won't know where the hell to find viewAd()
[00:57:27] <snurfery> are you doing that?
[00:57:40] *** cime has quit IRC
[00:58:42] <Reskp> hm viewAd is attach to scope
[00:59:02] *** wilmoore has joined #angularjs
[00:59:05] <snurfery> right but you have to attach that to the html you just compiled
[00:59:22] <snurfery> if I understand the process correctly, that is
[00:59:52] <Reskp> how can i do ti without a directive?
[01:00:40] *** kroogs has joined #angularjs
[01:00:56] *** feelfine has joined #angularjs
[01:01:14] <snurfery> you just use $compile right?
[01:01:17] *** jharbaugh has joined #angularjs
[01:01:17] <snurfery> I'm looking through the docs
[01:01:25] *** InezK is now known as InezK_away
[01:01:28] <snurfery> $compile(element.contents())(scope);
[01:01:34] *** wartdev has joined #angularjs
[01:01:38] *** altious has quit IRC
[01:01:49] *** nanoyak has quit IRC
[01:02:19] <Reskp> sure
[01:02:29] <Reskp> but what is element in my kind?
[01:02:42] <snurfery> var element = $compile('<p>{{total}}</p>')(scope);
[01:02:49] <snurfery> I'm seeing all these examples
[01:02:56] <snurfery> on here https://docs.angularjs.org/api/ng/service/$compile
[01:03:01] <snurfery> wayyyyy down at the bottom
[01:03:01] <Reskp> oh ok
[01:03:14] <Reskp> thjanks i will read it
[01:03:16] <snurfery> it's a long-ass article on directives, just go to the very end
[01:03:32] *** MathiasM has quit IRC
[01:03:47] <Reskp> does not have time to make directive :( one day iwll refactor :p
[01:03:58] *** KushS has quit IRC
[01:05:04] *** pdillinger has quit IRC
[01:05:38] *** bayousoft has joined #angularjs
[01:05:41] *** kroogs has quit IRC
[01:05:45] *** jharbaugh has quit IRC
[01:05:52] *** The_HunterT has joined #angularjs
[01:08:16] *** evilaliv3 has quit IRC
[01:09:34] *** benjf has quit IRC
[01:09:53] *** dashed has quit IRC
[01:10:09] *** marchizan has quit IRC
[01:10:25] *** enxtur has joined #angularjs
[01:12:03] *** MathiasM has joined #angularjs
[01:12:28] *** dashed has joined #angularjs
[01:13:12] *** notarnico has joined #angularjs
[01:15:11] *** enxtur has quit IRC
[01:15:38] *** altious has joined #angularjs
[01:16:44] *** ckboii89 has joined #angularjs
[01:17:11] *** dylukes has joined #angularjs
[01:18:04] *** Alina-malina has quit IRC
[01:18:04] *** InezK_away is now known as InezK
[01:18:32] *** shinnya has quit IRC
[01:18:48] *** snurfery has left #angularjs
[01:19:12] <SchizoDuckie> Can anyone explain me another form vagueness thingie to me?
[01:19:13] <SchizoDuckie> http://plnkr.co/edit/AghHrfDZUTs0g1YYqvZl?p=preview
[01:19:22] <SchizoDuckie> I'm trying to adjust the viewvalue from the controller
[01:19:26] *** DexterTheDragon has joined #angularjs
[01:19:30] *** Validatorian has quit IRC
[01:19:33] <SchizoDuckie> e..g. press password hash button, calculate sh1 hash, update the viewvalue
[01:19:49] *** peldan has quit IRC
[01:19:50] *** fold has joined #angularjs
[01:19:51] <SchizoDuckie> what am I missing?
[01:19:53] *** Nek has quit IRC
[01:20:15] *** peldan has joined #angularjs
[01:20:45] *** altious has quit IRC
[01:21:08] *** ckboii89 has quit IRC
[01:21:47] *** mennea has joined #angularjs
[01:23:19] *** RandyT has quit IRC
[01:23:42] *** shinnya has joined #angularjs
[01:24:27] *** peldan has quit IRC
[01:25:10] *** The_HunterT has quit IRC
[01:25:26] *** RandyT has joined #angularjs
[01:26:10] *** gordroid has joined #angularjs
[01:26:45] *** mennea has quit IRC
[01:27:18] *** The_HunterT has joined #angularjs
[01:28:17] *** imduffy15 has joined #angularjs
[01:28:22] *** mfunkie has quit IRC
[01:29:17] *** wxo has quit IRC
[01:29:24] *** mfunkie has joined #angularjs
[01:29:26] *** ngoyal has quit IRC
[01:29:55] *** ngoyal has joined #angularjs
[01:30:30] <imduffy15> Hi. I've an API that exposes hateoas based resources. I'm querying resource Service a service links to dependencies and a template. How can I go about resolving the template and dependencies links asynchronously and not returning the service until they have resolved?
[01:31:39] <SchizoDuckie> your way of thinking is wrong. You will return the service early, but not the result of the service (a promise)
[01:31:49] *** pdillinger has joined #angularjs
[01:32:22] *** cristatus has joined #angularjs
[01:32:22] *** rodyhaddad has joined #angularjs
[01:33:25] <imduffy15> SchizoDuckie: I don't want to return a promise though. I'm using resolve: and want the data before my view is loaded.
[01:34:14] <SchizoDuckie> You could fiddle with $injector.get
[01:34:26] <SchizoDuckie> but i'm not sure that will work
[01:34:37] *** danielpquinn has joined #angularjs
[01:34:40] *** dylukes has quit IRC
[01:35:11] <imduffy15> SchizoDuckie: Is there any way I can tell $q.defer() that it needs two resolves before returning?
[01:35:28] <SchizoDuckie> sure. $q.all
[01:35:38] *** klaut has joined #angularjs
[01:35:48] *** Amol has joined #angularjs
[01:36:05] <SchizoDuckie> just push them into an array and feed that to $q.all(array).then(function() { p.resolve()})
[01:36:13] *** moritzs has joined #angularjs
[01:36:36] *** ifmw has joined #angularjs
[01:37:11] <elnur> \o/
[01:37:17] *** MathiasM has quit IRC
[01:37:29] *** KushS has joined #angularjs
[01:37:34] *** wxo has joined #angularjs
[01:37:40] *** ngoyal has quit IRC
[01:37:41] <imduffy15> SchizoDuckie: Can the anonymous function you have there add more urls to the array passed to $q.all ?
[01:37:53] <elnur> Any idea on when I can't respond() after $httpBackend.expectGET() when using it in Protractor?
[01:38:09] *** pdillinger has quit IRC
[01:38:20] <SchizoDuckie> imoduffy: just queue up another promise around it, and only then resolve the first
[01:38:26] *** Amol has quit IRC
[01:38:46] *** matiasow has joined #angularjs
[01:39:03] *** heavyhorse has quit IRC
[01:39:13] <imduffy15> SchizoDuckie: Smart! thank you :)
[01:39:15] *** danielpquinn has quit IRC
[01:39:18] *** heavyhorse has joined #angularjs
[01:39:26] <SchizoDuckie> if you want to fiddle with modifying requests you'll have to look into $httpProvider.interceptors
[01:39:31] <SchizoDuckie> https://github.com/SchizoDuckie/DuckieTV/blob/angular/js/app.js#L172 <- working example
[01:39:41] *** senayar has quit IRC
[01:39:55] *** sgnl has joined #angularjs
[01:40:15] *** morenoh149 has joined #angularjs
[01:40:49] <imduffy15> Great thank you very much :)
[01:41:18] <SchizoDuckie> i'm using more heavy promise based stuff in the FavoritesController
[01:41:25] <SchizoDuckie> erh, FavoritesService
[01:42:05] *** Zeeshan_M has quit IRC
[01:42:25] *** wxo has quit IRC
[01:42:32] *** KushS has quit IRC
[01:43:03] *** Terabyte has joined #angularjs
[01:43:15] <SchizoDuckie> and np :)
[01:43:15] <Terabyte> hey
[01:43:31] <SchizoDuckie> hai :)
[01:43:34] *** heavyhorse has quit IRC
[01:44:05] <Terabyte> are there any good alternatives to angular-ui's typeahead?
[01:44:15] <SchizoDuckie> I'm writing them myself
[01:44:18] <SchizoDuckie> using just promises
[01:44:21] <Terabyte> oh cool
[01:44:31] <SchizoDuckie> it's really quite simple if you think about it
[01:44:42] <Terabyte> the component works if i hardcode the typeahead population, but breaks if i fetch it via an http request.
[01:44:45] <SchizoDuckie> just a model value that's monitored, and a request that refreshes
[01:45:12] *** foofoobar has quit IRC
[01:45:59] <Terabyte> all the typeahead components i've found work in very basic scenarios, single value arrays (not key-value arrays), where the array is hardcoded, and where translation doesn't have to occur on page load.
[01:46:24] <SchizoDuckie> Maybe this'll help you: https://github.com/SchizoDuckie/DuckieTV/blob/angular/js/directives/torrentDialog.js
[01:46:52] *** cristatus has quit IRC
[01:46:56] <Terabyte> do you have a demo of it working?
[01:47:05] <SchizoDuckie> yes: http://duckietv.github.io/DuckieTV/
[01:47:13] <SchizoDuckie> click the 3rd icon on the top left (magnet icon)
[01:47:19] <SchizoDuckie> then hit the green button
[01:47:54] <SchizoDuckie> The 'type your search query' box runs it through a cors proxy when the page is accessed over http, but you'll get the point
[01:48:43] <SchizoDuckie> hmm whoops there's actually a bug i see now
[01:48:49] <Terabyte> ah, hmm, that's dynamic autocomplete, not entirely what I want.
[01:49:04] *** rodyhaddad has quit IRC
[01:49:16] *** Alina-malina has joined #angularjs
[01:49:20] *** Alina-malina has joined #angularjs
[01:49:43] <Terabyte> the data on the backend could change. i'm thinking of a scenario where somebody sends domain.com/?id=24 and then it goes and fetches the list of all id mappings, finds 24 maps to "bob" and displays bob by default in the box. and visa versa.
[01:51:29] *** mfunkie has quit IRC
[01:51:37] <SchizoDuckie> that doesn't really matter does it? that happens with my list as well
[01:51:46] <SchizoDuckie> you just want to update the input as you type
[01:53:08] *** Zeeshan_M has joined #angularjs
[01:53:55] <Terabyte> SchizoDuckie yeah but it looks like you're submitting raw text, and displaying raw text.
[01:54:04] *** RedOrangeZ has joined #angularjs
[01:54:21] <Terabyte> ng-model is just text here, there's no {key=1, value="bob"} magic
[01:54:49] *** cdnicoll has joined #angularjs
[01:55:24] *** wartdev has quit IRC
[01:56:10] <SchizoDuckie> that would still have to be bound somewhere wouldn't it? Anyway I don't think i completely comprehend your problem
[01:56:21] *** moritzs has quit IRC
[01:56:28] *** lordkryss has joined #angularjs
[01:57:18] *** bmac has quit IRC
[01:58:11] <Terabyte> SchizoDuckie https://github.com/angular-ui/bootstrap/issues/2396
[01:58:24] *** matiasow has quit IRC
[01:59:34] <SchizoDuckie> is it not a matter of calling $scope.$apply after updating the value from remote Terabyte?
[01:59:40] <SchizoDuckie> it sounds like that.
[01:59:52] <SchizoDuckie> data pulled in from outside the scope that needs to be put into the scope
[02:00:07] <SchizoDuckie> especially since it works when hardcoded
[02:00:25] <Terabyte> ok let me try
[02:00:54] *** Circlefusion has quit IRC
[02:00:55] *** kroogs has joined #angularjs
[02:01:30] *** SomeKittens has joined #angularjs
[02:01:59] *** jharbaugh has joined #angularjs
[02:04:03] <Terabyte> hmm, where do you trigger it?
[02:04:23] <Terabyte> i had a get().then() but the last thing has to be return; we want to trigger it after it's returned right?
[02:05:04] <SchizoDuckie> uhm. can you work a plunkr for this? i have no idea
[02:05:08] *** hswolff has joined #angularjs
[02:05:24] *** kroogs has quit IRC
[02:05:39] <Terabyte> i have lines 5-9 here https://gist.github.com/danielburrell/96e21a011bc8d2fd5f58
[02:05:42] *** dc_ has joined #angularjs
[02:06:03] *** jharbaugh has quit IRC
[02:06:28] *** Nijikoku_ is now known as Nijiko
[02:07:35] *** RedOrangeZ has quit IRC
[02:08:27] *** pkayfire_ has quit IRC
[02:09:01] *** DrMabuse_ has quit IRC
[02:09:15] *** rau has joined #angularjs
[02:09:27] *** Alina-malina has quit IRC
[02:09:55] *** squeakytoy2 has joined #angularjs
[02:09:56] <SchizoDuckie> i'm not sure you can inject a promise there
[02:09:57] *** josh-k_ has joined #angularjs
[02:10:56] *** squeakytoy has quit IRC
[02:10:57] *** Captain_Picard has joined #angularjs
[02:11:42] *** rau has quit IRC
[02:11:48] *** MathiasM has joined #angularjs
[02:13:04] *** josh-k has quit IRC
[02:13:07] *** endash has quit IRC
[02:13:16] <Terabyte> SchizoDuckie hmm, what about the formatLabel function, can that for loop work on that promise or are you supposed to do something else
[02:13:27] *** klaut has quit IRC
[02:13:43] <SchizoDuckie> I really need a working interacting example to help you
[02:13:57] *** jeffszusz has quit IRC
[02:14:30] <Terabyte> is there a baseline plunkr i can copy?
[02:14:40] <Terabyte> like "Minimal angularjs + angularui dependencies"
[02:15:09] <SchizoDuckie> idunno
[02:15:14] <Terabyte> k
[02:15:31] <Terabyte> i need to sign off, but i'll try and build one in future, seems to be the popular thing to have
[02:15:54] *** Nizumzen has quit IRC
[02:16:02] *** MathiasM has quit IRC
[02:16:09] <SchizoDuckie> np. nn
[02:16:53] *** rghy has joined #angularjs
[02:16:58]
[02:16:59] <rghy> warning
[02:16:59] <rghy> you may be watched
[02:16:59] <rghy> do usa&israel use the internet(facebook,youtube,twitter, chat rooms ..ect)to spy??
[02:17:00] <rghy> do usa&israel use the internet 2 collect informations,,can we call that spying??
[02:17:00] <rghy> do they record&analyse everything we do on the internet,,can they harm you using these informations??
[02:17:00] *** rghy has quit IRC
[02:17:13] *** rghy has joined #angularjs
[02:17:28] *** one_zero has joined #angularjs
[02:17:30] *** ckboii89 has joined #angularjs
[02:17:43] *** rghy has joined #angularjs
[02:17:46] *** InezK is now known as InezK_away
[02:18:19] *** rghy has left #angularjs
[02:19:02] *** jangoh has joined #angularjs
[02:19:12] *** styles has quit IRC
[02:19:53] *** earthquake has quit IRC
[02:21:32] *** ckboii89 has quit IRC
[02:22:12] *** RedOrangeZ has joined #angularjs
[02:22:35] *** mennea has joined #angularjs
[02:23:19] *** gordroid has quit IRC
[02:23:37] *** gordroid has joined #angularjs
[02:23:50] *** Tim has joined #angularjs
[02:24:19] *** nemothekid has joined #angularjs
[02:24:26] *** endash has joined #angularjs
[02:25:25] *** marr has quit IRC
[02:25:59] *** intellix has quit IRC
[02:26:52] *** mennea has quit IRC
[02:26:56] *** SonikBoom has quit IRC
[02:27:59] *** gordroid has quit IRC
[02:28:07] *** Tim has quit IRC
[02:29:23] *** earthquake has joined #angularjs
[02:29:34] *** zwacky has quit IRC
[02:29:45] *** Asiajey has quit IRC
[02:29:56] *** Captain_Picard has quit IRC
[02:29:58] *** Yancy has quit IRC
[02:30:08] *** Yancy has joined #angularjs
[02:31:02] *** Emperor_Earth_ has quit IRC
[02:31:13] *** kennbrodhagen has joined #angularjs
[02:34:01] *** gordroid has joined #angularjs
[02:35:06] *** subnl2 has joined #angularjs
[02:35:16] *** Reskp has quit IRC
[02:35:18] *** danielpquinn has joined #angularjs
[02:36:13] *** rodyhadd_ has joined #angularjs
[02:36:15] *** kennbrodhagen has quit IRC
[02:36:19] *** rodyhadd_ is now known as rodyhaddad
[02:38:26] *** gordroid has quit IRC
[02:38:57] *** OdinIncarnate has joined #angularjs
[02:39:18] *** SpearThruster has quit IRC
[02:40:03] *** danielpquinn has quit IRC
[02:41:53] *** TheAceOfHearts has joined #angularjs
[02:41:57] *** jamto11 has joined #angularjs
[02:44:08] *** dc_ has quit IRC
[02:46:04] *** jamto11 has quit IRC
[02:48:08] *** fold has quit IRC
[02:48:47] *** dylukes has joined #angularjs
[02:49:17] *** dman777_alter has joined #angularjs
[02:49:43] *** rho has joined #angularjs
[02:50:01] <dman777_alter> hello there in angular land. How can I get a controller to initialize on start up of the browser without waiting for the user to click on the view?
[02:50:10] *** imduffy15 has quit IRC
[02:51:04] *** lordkryss has quit IRC
[02:52:03] *** tfennelly has joined #angularjs
[02:55:42] *** gordroid has joined #angularjs
[02:56:15] *** rho has quit IRC
[02:56:50] *** tfennelly has quit IRC
[02:56:58] *** BahamutWC|Work has quit IRC
[02:58:04] <TheAceOfHearts> it should happen automatically
[02:59:23] *** fold has joined #angularjs
[03:00:19] *** gordroid has quit IRC
[03:00:47] <s3shs> Is there a tool that will cull all of the assemble all of the license agreements from all of the libraries I use in to one web page?
[03:00:53] *** kroogs has joined #angularjs
[03:00:57] <s3shs> Perhaps from my license.json?
[03:01:02] <s3shs> Rather, package.json?
[03:01:18] <dman777_alter> TheAceOfHearts: hmm...I guess what I mean is I want the $scope data for each controller to populate a head of time...maybe I should ask...how can I load all the views automatically on start up instead of lazy loading?
[03:01:49] <TheAceOfHearts> I don't understand
[03:01:52] *** pHcF has joined #angularjs
[03:02:45] *** jharbaugh has joined #angularjs
[03:03:51] *** bayousoft has quit IRC
[03:03:56] *** nemothekid has quit IRC
[03:04:56] <dman777_alter> TheAceOfHearts: my webserver sends a sse broadcast with json data when the client first connects...I use a service to catch the broadcast and inject this service into all the controllers. but only the active view gets it that data.
[03:05:24] *** kroogs has quit IRC
[03:05:42] <TheAceOfHearts> if the service is getting the data why wouldn't all the controllers have access to it?
[03:05:46] <TheAceOfHearts> just store the data in the service
[03:06:08] *** SchizoDuckie has quit IRC
[03:06:12] *** Reskp has joined #angularjs
[03:06:52] *** gordroid has joined #angularjs
[03:07:10] *** jharbaugh has quit IRC
[03:07:17] *** nemothekid has joined #angularjs
[03:07:24] <bobdobbs> how do I get angular to work in plnkr?
[03:08:15] <bobdobbs> like, I use 'find and external libraries', and choose angular. but when I run my demo app, I'm not getting angular functionality
[03:08:49] <dman777_alter> TheAceOfHearts: I see.... http://bpaste.net/show/1ZloIRxt21Xa95nF6poC/ how would I go about storing the data in the service for both controllers?
[03:09:49] *** gordroidJS has joined #angularjs
[03:10:27] <TheAceOfHearts> too tired to look at code atm, but you should be storing the data in an object or something… and then you should be able to access it in any controller
[03:10:27] *** dharrigan has quit IRC
[03:11:04] *** Reskp has quit IRC
[03:11:20] *** enxtur has joined #angularjs
[03:11:21] *** ngoyal has joined #angularjs
[03:11:31] <dman777_alter> TheAceOfHearts: ok...that points my in the right direction. thanks!
[03:11:40] <TheAceOfHearts> yeah
[03:11:43] *** gordroid has quit IRC
[03:11:48] <TheAceOfHearts> so, services are like
[03:11:55] <TheAceOfHearts> ugh, I forgot the word
[03:12:03] <TheAceOfHearts> there's only one instance of your service
[03:12:08] <TheAceOfHearts> so the data is the same everywhere
[03:12:17] *** ngoyal_ has joined #angularjs
[03:12:35] *** ngoyal_ has joined #angularjs
[03:14:11] *** JimmyKane___ has quit IRC
[03:14:34] *** gordroid has joined #angularjs
[03:14:50] *** stirling_ has quit IRC
[03:15:50] *** ngoyal has quit IRC
[03:15:57] *** enxtur has quit IRC
[03:16:47] *** rodyhaddad has quit IRC
[03:17:25] *** gordroidJS has quit IRC
[03:17:40] *** Ymesio has quit IRC
[03:18:05] *** CptChaos_ has joined #angularjs
[03:18:18] *** ckboii89 has joined #angularjs
[03:19:08] *** gordroid has quit IRC
[03:19:31] *** teslanick1 has joined #angularjs
[03:19:32] *** teslanick1 has quit IRC
[03:20:19] *** Captain_Picard has joined #angularjs
[03:20:44] *** wilmoore has quit IRC
[03:21:15] *** RedOrangeZ has quit IRC
[03:21:54] *** CptChaos has quit IRC
[03:21:58] *** hswolff has quit IRC
[03:22:20] *** ckboii89 has quit IRC
[03:22:30] *** Ymesio has joined #angularjs
[03:22:53] *** bbankes has joined #angularjs
[03:23:04] *** cobakobodob has quit IRC
[03:23:20] *** mennea has joined #angularjs
[03:23:41] *** tk has quit IRC
[03:24:11] <aviraldg> TheAceOfHearts, singletons :)
[03:24:21] <TheAceOfHearts> yeah, that
[03:24:24] <TheAceOfHearts> too much to drink
[03:24:48] <bobdobbs> how do I conditionally display an html element, depending on the value of a scope variable?
[03:24:56] <aviraldg> haha
[03:25:05] <aviraldg> bobdobbs, ngShow
[03:25:21] <bobdobbs> thanks
[03:25:40] *** manbo has joined #angularjs
[03:26:05] <manbo> hi
[03:26:28] *** cmoneylulz has joined #angularjs
[03:27:11] *** wartdev has joined #angularjs
[03:27:56] *** mennea has quit IRC
[03:27:58] <manbo> question, how to execute curl to get response from cross domain rest api
[03:28:01] *** gordroid has joined #angularjs
[03:28:31] *** nemothekid has quit IRC
[03:28:45] *** rau has joined #angularjs
[03:29:25] <aviraldg> manbo, curl?
[03:29:33] *** jharbaugh has joined #angularjs
[03:29:37] <bobdobbs> aviraldg: it looks like ngShow will show or hide depending on a truth value. What if I want to show or hide depending on a particular value outside of true or false?
[03:29:54] <aviraldg> ngSwitch
[03:29:57] <bobdobbs> thanks
[03:30:02] *** ngoyal_ is now known as ngoyal
[03:30:14] *** Yancy has quit IRC
[03:30:17] <manbo> yes, to execute curl from js and return to client
[03:30:25] *** Yancy has joined #angularjs
[03:31:01] <bobdobbs> curl from js?
[03:31:03] <aviraldg> You mean $http(...)? Why would you use curl?
[03:31:52] <aviraldg> if you control the api, modify the csp, otherwise use jsonp if that's supported
[03:31:53] <manbo> oh.. $http can get cross domain rest api response?
[03:32:15] <aviraldg> yes, ^
[03:32:23] *** darrin has quit IRC
[03:32:29] *** gordroid has quit IRC
[03:33:07] <manbo> cool. i am new to node.js ... i wii try . thx
[03:33:07] *** Foxandxss has quit IRC
[03:33:29] *** wartdev has quit IRC
[03:33:38] <bobdobbs> Is it normal to have the user set the value of a scope variable ?
[03:34:06] <bobdobbs> I mean, is it usual to have a scope variable set by taking input from a user?
[03:34:20] *** jharbaugh has quit IRC
[03:34:27] <aviraldg> Why not?
[03:34:54] <bobdobbs> just wondering. I'm new to angular.
[03:35:02] *** LuxuryMode has quit IRC
[03:35:05] *** davek has quit IRC
[03:35:19] *** Siecje has joined #angularjs
[03:35:27] *** LuxuryMode has joined #angularjs
[03:36:04] *** danielpquinn has joined #angularjs
[03:36:18] *** mrwn has joined #angularjs
[03:37:00] <bobdobbs> also, is it possible to inspect the values of scope variable from the chrome dev tools?
[03:37:40] <mewm> bobdobbs: there is a chrome extension that helps you with that
[03:37:45] <aviraldg> https://chrome.google.com/webstore/detail/angularjs-batarang/ighdmehidhipcmcojjgiloacoafjmpfk?hl=en
[03:38:13] *** cmoneylulz has quit IRC
[03:38:23] *** dbouwman has quit IRC
[03:39:30] <bobdobbs> thanks
[03:40:03] *** Captain_Picard has quit IRC
[03:40:45] *** guyz has quit IRC
[03:40:52] *** danielpquinn has quit IRC
[03:41:10] *** manbo has quit IRC
[03:41:45] *** deg- has quit IRC
[03:42:07] *** chltjdgh86 has joined #angularjs
[03:42:58] *** carbonpile has joined #angularjs
[03:43:23] *** deg- has joined #angularjs
[03:46:02] *** TorchDragon has joined #angularjs
[03:46:33] *** CptChaos_ has quit IRC
[03:47:09] *** pHcF has quit IRC
[03:47:30] *** MathiasM has joined #angularjs
[03:47:52] *** disorder20 has quit IRC
[03:50:05] *** cobakobodob has joined #angularjs
[03:50:59] *** TorchDragon has quit IRC
[03:51:52] *** MathiasM has quit IRC
[03:52:30] *** RedOrangeZ has joined #angularjs
[03:53:05] *** jeffscottward has joined #angularjs
[03:54:31] *** gnar_matix has joined #angularjs
[03:54:42] <jeffscottward> hey all. anyone have a quick answer for this noob dealing with CRUD models and stopping HTTP from overwriting
[03:54:59] *** Captain_Picard has joined #angularjs
[03:55:18] <aviraldg> What's the question?
[03:55:34] *** drej has joined #angularjs
[03:55:35] *** josh-k_ has quit IRC
[03:56:09] *** josh-k has joined #angularjs
[03:56:24] <jeffscottward> Because of Angular doing the dirty check. it Keeps firing off HTTP requests
[03:56:46] <jeffscottward> I’m using UI router so I think its executing the controller each time theres a new URL
[03:57:15] <aviraldg> Do you have code that I can look at?
[03:57:46] <jeffscottward> and per every successful HTTP request, it overwrites my data. Trying to basically HTTP request 1 time. and be able to add more data after
[03:57:50] <jeffscottward> but it gets clobbered
[03:58:01] <jeffscottward> lemme put it in a plunkr
[03:59:38] *** hswolff has joined #angularjs
[04:00:21] <jeffscottward> Yea thats not gonna work. Easier to clone it and $ gulp serve
[04:00:22] *** josh-k has quit IRC
[04:00:23] <jeffscottward> https://github.com/jeffscottward/meetMe
[04:01:13] *** mrwn has quit IRC
[04:01:20] <jeffscottward> the file i’m looking at is app/scripts/appointments/appointments-ctrl.js
[04:02:00] *** kennbrodhagen has joined #angularjs
[04:03:42] *** chrisshattuck has joined #angularjs
[04:06:33] *** tk has joined #angularjs
[04:07:22] *** Reskp has joined #angularjs
[04:07:59] *** Circlefusion has joined #angularjs
[04:09:29] *** gnar_matix has quit IRC
[04:09:56] *** gnar_matix has joined #angularjs
[04:10:17] *** anjumkaiser has quit IRC
[04:10:24] *** Yancy has quit IRC
[04:10:34] *** Yancy has joined #angularjs
[04:11:34] *** Reskp has quit IRC
[04:11:40] *** cobakobodob has quit IRC
[04:12:20] *** gordroid has joined #angularjs
[04:12:28] *** vincentjr has quit IRC
[04:13:24] *** kennbrodhagen has quit IRC
[04:14:15] *** chrisshattuck has quit IRC
[04:14:33] *** gnar_matix has quit IRC
[04:14:38] *** chrisshattuck has joined #angularjs
[04:14:59] *** nectarys has joined #angularjs
[04:15:05] *** jeffscottward has quit IRC
[04:16:46] <bobdobbs> I'm trying to figure out how to impliment logic that responds to user choices. I've got a template with this segment of code: http://laravel.io/bin/DP8qx
[04:16:48] *** gordroid has quit IRC
[04:17:33] <nectarys> can someone explain me this code please ?
[04:17:33] <bobdobbs> I now want to set a variable based on the user choice. In js, I have this: http://laravel.io/bin/QqXz3
[04:17:56] <bobdobbs> So now I'm wondering where to put that fragment of logic
[04:18:17] *** tk has quit IRC
[04:18:25] <nectarys> http://pastebin.com/Nf9tw7F8
[04:19:03] *** ckboii89 has joined #angularjs
[04:19:11] <bobdobbs> currently, I have it within my controller. But it doesn't get the user's choice.
[04:19:29] *** TheAceOfHearts has quit IRC
[04:19:29] *** euskadi31 has quit IRC
[04:20:03] <bobdobbs> this is what I have so far in my external js: http://laravel.io/bin/Bj7la
[04:20:31] *** MuffinMan` has quit IRC
[04:21:18] <bobdobbs> basically, I want to get the users choice of 'pronoun', so that I use that choice in some logic further into my pap
[04:21:20] <bobdobbs> *app
[04:22:41] *** chrisshattuck has quit IRC
[04:23:18] *** ckboii89 has quit IRC
[04:24:52] *** arizzo has joined #angularjs
[04:24:53] *** dcherman has joined #angularjs
[04:25:11] *** nectarys has quit IRC
[04:25:50] *** gordroid has joined #angularjs
[04:26:06] *** snapwich has quit IRC
[04:27:54] *** arizzo_ has joined #angularjs
[04:28:17] *** fold has quit IRC
[04:28:36] *** Hackwar1 has joined #angularjs
[04:28:48] <bobdobbs> If I want to access scope variable values set by the user, do I have to put my inspecting code into a view?
[04:30:03] *** gordroid has quit IRC
[04:30:04] *** Hackwar has quit IRC
[04:30:21] *** bbankes has quit IRC
[04:30:25] *** jharbaugh has joined #angularjs
[04:30:30] *** Toka has joined #angularjs
[04:30:31] *** boneskul_ has joined #angularjs
[04:31:31] *** arizzo has quit IRC
[04:31:35] *** InezK_away is now known as InezK
[04:32:03] *** boneskull has quit IRC
[04:32:57] *** SomeKittens has quit IRC
[04:33:45] *** davesidious has joined #angularjs
[04:34:13] *** arizzo has joined #angularjs
[04:34:29] *** davesidious_ has quit IRC
[04:34:49] *** Toka has quit IRC
[04:34:59] <caitp> bobdobbs: what?
[04:35:02] *** dman777_alter has quit IRC
[04:35:02] *** jharbaugh has quit IRC
[04:35:03] <aviraldg> bobdobbs, you want to update pronoun when gender changes, I guess?
[04:35:37] <caitp> do they even have pronouns for all 9000 genders that facebook came up with?
[04:36:05] <bobdobbs> aviraldg: yep
[04:36:48] *** loser has joined #angularjs
[04:36:55] *** danielpquinn has joined #angularjs
[04:37:04] *** arizzo_ has quit IRC
[04:37:13] <loser> Hi everyone
[04:37:47] *** mewm has quit IRC
[04:38:17] *** arizzo_ has joined #angularjs
[04:38:17] <bobdobbs> aviraldg: currently, when the user creates a choice, where I have {{gender}} gets updated. But the variable $scope.pronoun remains empty
[04:38:26] *** k-dawg has joined #angularjs
[04:38:31] *** cobakobodob has joined #angularjs
[04:39:39] *** arizzo_ has quit IRC
[04:39:48] <bobdobbs> aviraldg: but that's only when I have my logic in the external js file, within the controller definition.
[04:40:06] *** johnnyfive has quit IRC
[04:40:11] *** arizzo_ has joined #angularjs
[04:40:12] *** asdofindia has quit IRC
[04:40:15] <bobdobbs> I could test to see if that logic works if I put a script in my view, but I'm kinda resistant to doing that.
[04:41:16] *** senayar has joined #angularjs
[04:41:20] *** nemothekid has joined #angularjs
[04:41:32] *** danielpquinn has quit IRC
[04:41:33] *** arizzo has quit IRC
[04:41:40] *** asdofindia has joined #angularjs
[04:42:46] *** jamto11 has joined #angularjs
[04:42:55] *** tfennelly has joined #angularjs
[04:43:57] *** tyfighter has joined #angularjs
[04:44:02] *** ETBlue has joined #angularjs
[04:45:44] *** senayar has quit IRC
[04:47:03] *** jamto11 has quit IRC
[04:47:24] *** asdofindia has quit IRC
[04:47:51] *** tfennelly has quit IRC
[04:48:32] *** ipalaus has quit IRC
[04:48:51] *** kennbrodhagen has joined #angularjs
[04:50:17] *** chrisshattuck has joined #angularjs
[04:50:53] *** Yancy has quit IRC
[04:51:04] *** Yancy has joined #angularjs
[04:51:33] *** arizzo_ has quit IRC
[04:52:17] *** arizzo has joined #angularjs
[04:52:25] *** dbouwman has joined #angularjs
[04:52:53] *** cpciv has joined #angularjs
[04:53:37] *** thedodd has joined #angularjs
[04:53:38] *** jobney has joined #angularjs
[04:54:31] *** aviraldg has quit IRC
[04:55:02] *** jangoh has quit IRC
[04:55:12] *** SomeKittens has joined #angularjs
[04:57:21] *** arizzo has quit IRC
[04:57:30] *** cpciv1 has joined #angularjs
[04:57:35] *** cpciv has quit IRC
[04:58:42] *** jobney has quit IRC
[04:59:29] *** JoshGlzBrk has quit IRC
[04:59:45] *** patrickc_ has joined #angularjs
[05:00:01] *** charuru has quit IRC
[05:00:07] *** kroogs has joined #angularjs
[05:03:21] *** mehlah has quit IRC
[05:03:34] *** chrisshattuck has quit IRC
[05:05:20] *** kroogs has quit IRC
[05:05:20] *** tigrang has quit IRC
[05:07:45] *** davek has joined #angularjs
[05:08:03] *** kennbrodhagen has quit IRC
[05:08:15] *** Reskp has joined #angularjs
[05:11:02] *** gordroid has joined #angularjs
[05:11:25] *** aqlx86 has joined #angularjs
[05:11:47] *** tylerjohnst has quit IRC
[05:12:54] *** Reskp has quit IRC
[05:13:01] *** Captain_Picard has quit IRC
[05:13:21] *** ckboii89 has joined #angularjs
[05:14:33] *** RedOrangeZ has quit IRC
[05:14:47] *** aviraldg has joined #angularjs
[05:14:59] *** dman777_alter has joined #angularjs
[05:15:32] <dman777_alter> to store data in a service, do I store it on the rootscope in the service? not sure where since the $scope is in the controller and not in the service
[05:15:35] *** mac_ified has quit IRC
[05:15:52] *** gordroid has quit IRC
[05:16:12] *** cobakobodob has quit IRC
[05:16:19] *** jonnybro has joined #angularjs
[05:16:36] *** bphogan_afk is now known as bphogan
[05:20:25] *** cpciv has joined #angularjs
[05:20:28] *** cpciv1 has quit IRC
[05:21:11] *** jobney has joined #angularjs
[05:21:47] *** Siecje has quit IRC
[05:22:34] *** digifiv5e has joined #angularjs
[05:22:44] *** chrisshattuck has joined #angularjs
[05:22:48] *** digifiv5e is now known as Guest22956
[05:24:05] *** shinnya has quit IRC
[05:24:32] *** hswolff has quit IRC
[05:24:34] *** jobney has quit IRC
[05:26:39] *** feelfine has quit IRC
[05:26:51] *** drake01 has joined #angularjs
[05:27:18] *** patrickc_ has quit IRC
[05:27:52] *** patrickc_ has joined #angularjs
[05:28:39] *** jonnybro has quit IRC
[05:30:00] *** chrisshattuck has quit IRC
[05:30:10] *** night-owl-MBP has joined #angularjs
[05:30:17] *** patrick__ has joined #angularjs
[05:30:36] *** shinnya has joined #angularjs
[05:30:44] *** gunn has joined #angularjs
[05:31:08] *** jharbaugh has joined #angularjs
[05:32:06] *** patrickc_ has quit IRC
[05:34:56] *** pdillinger has joined #angularjs
[05:35:18] *** jharbaugh has quit IRC
[05:35:20] *** jonnybro has joined #angularjs
[05:35:45] *** patrick__ has quit IRC
[05:36:04] *** tigrang has joined #angularjs
[05:36:21] *** patrickc_ has joined #angularjs
[05:37:40] *** danielpquinn has joined #angularjs
[05:37:40] *** patrickc_ has quit IRC
[05:37:48] *** TheAceOfHearts has joined #angularjs
[05:37:56] *** patrickc_ has joined #angularjs
[05:38:28] *** OdinIncarnate has quit IRC
[05:38:36] *** drake01 has quit IRC
[05:38:42] *** Columcille has quit IRC
[05:39:19] *** benjf has joined #angularjs
[05:39:24] *** pdillinger has quit IRC
[05:39:25] *** kfr2 has joined #angularjs
[05:39:55] *** set_almighty has quit IRC
[05:42:10] *** danielpquinn has quit IRC
[05:42:57] *** cobakobodob has joined #angularjs
[05:43:05] *** patrickc_ has quit IRC
[05:43:13] *** MathiasM has joined #angularjs
[05:44:55] *** bbankes has joined #angularjs
[05:46:34] *** mac_ified has joined #angularjs
[05:47:17] *** MathiasM has quit IRC
[05:49:36] *** night-owl-MBP has quit IRC
[05:49:39] *** steffengy has joined #angularjs
[05:49:46] *** k-dawg has quit IRC
[05:50:09] *** bbankes has quit IRC
[05:51:04] *** mac_ified has quit IRC
[05:51:59] *** Terabyte has quit IRC
[05:52:33] *** elxa has quit IRC
[05:52:56] *** steffengy1 has quit IRC
[05:53:27] *** corban has joined #angularjs
[05:54:55] *** elxa has joined #angularjs
[05:57:27] *** asdofindia has joined #angularjs
[06:00:34] *** kroogs has joined #angularjs
[06:02:45] *** LuxuryMode has quit IRC
[06:04:32] *** bphogan is now known as bphogan_afk
[06:04:42] *** harvey203 has joined #angularjs
[06:05:06] *** jaredjones has quit IRC
[06:05:32] *** kroogs has quit IRC
[06:06:10] *** tylerdmace has joined #angularjs
[06:07:03] *** Circlefusion has quit IRC
[06:07:18] *** tigrang has quit IRC
[06:08:01] *** Circlefusion has joined #angularjs
[06:08:26] *** gordroid has joined #angularjs
[06:08:33] *** xavia has joined #angularjs
[06:08:39] *** xavia has quit IRC
[06:08:39] *** jaredjones has joined #angularjs
[06:08:58] *** Reskp has joined #angularjs
[06:10:17] *** bmac has joined #angularjs
[06:12:46] *** anjumkaiser has joined #angularjs
[06:12:54] *** gordroid has quit IRC
[06:13:03] *** Reskp has quit IRC
[06:13:50] *** LuxuryMode has joined #angularjs
[06:14:31] *** tomzx is now known as tomzx`afk
[06:14:39] *** jonnybro has quit IRC
[06:14:44] *** Ethix has quit IRC
[06:24:30] *** lordjancso has joined #angularjs
[06:25:43] *** lordjancso has quit IRC
[06:26:04] *** lordjancso has joined #angularjs
[06:27:03] *** RandyT has quit IRC
[06:28:57] *** RandyT has joined #angularjs
[06:29:33] *** FunnyLookinHat has quit IRC
[06:29:34] *** moritzs has joined #angularjs
[06:30:35] *** wilmoore has joined #angularjs
[06:31:33] *** fold has joined #angularjs
[06:32:00] *** jharbaugh has joined #angularjs
[06:33:58] *** dcherman has quit IRC
[06:35:31] *** bphogan_afk is now known as bphogan
[06:36:57] *** jharbaugh has quit IRC
[06:42:49] *** alt_qq has quit IRC
[06:43:18] *** chltjdgh_ has joined #angularjs
[06:43:41] *** jamto11 has joined #angularjs
[06:43:54] *** chltjdgh86 has quit IRC
[06:44:35] <nemothekid> Doesn Angualr 1.3 have an backwards incompatible changes with 1.2?
[06:44:52] *** jtimon has joined #angularjs
[06:45:25] *** TrevDev_ has joined #angularjs
[06:45:47] *** asdofindia has quit IRC
[06:46:22] *** bphogan is now known as bphogan_afk
[06:47:07] <TheAceOfHearts> yes
[06:47:26] *** karihre_ has joined #angularjs
[06:47:34] *** cswelin has quit IRC
[06:47:56] *** cswelin- has joined #angularjs
[06:48:19] *** night-owl has quit IRC
[06:48:27] *** jamto11 has quit IRC
[06:48:49] *** Sawbones has joined #angularjs
[06:48:53] *** Xion__ has joined #angularjs
[06:49:01] *** atomi_ has joined #angularjs
[06:49:03] *** TrevDev has quit IRC
[06:49:03] *** Sgeo has quit IRC
[06:49:04] *** wafflejock_ has quit IRC
[06:49:05] *** Pierre_N_ has joined #angularjs
[06:49:05] *** licyeus_ has joined #angularjs
[06:49:25] *** wafflejock_ has joined #angularjs
[06:49:32] *** daivyk_ has joined #angularjs
[06:50:12] *** karihre has quit IRC
[06:50:12] *** D-Boy has quit IRC
[06:51:16] *** mac_ified has joined #angularjs
[06:51:37] *** asdofindia has joined #angularjs
[06:51:42] *** squeakytoy has joined #angularjs
[06:51:58] *** notarnico has quit IRC
[06:52:24] *** Gambit-- has joined #angularjs
[06:53:42] *** Gambit- has quit IRC
[06:54:11] *** mosez_ has joined #angularjs
[06:54:11] *** tonini_ has joined #angularjs
[06:54:14] *** squeakytoy2 has quit IRC
[06:54:47] *** wilsey has joined #angularjs
[06:55:43] *** D-Boy has joined #angularjs
[06:55:56] *** mac_ified has quit IRC
[06:56:07] *** aaronmitchell has joined #angularjs
[06:56:24] *** sacho_ has quit IRC
[06:56:49] *** Xion_ has quit IRC
[06:57:54] *** charuru has joined #angularjs
[06:57:59] *** defreece has joined #angularjs
[06:58:14] *** mosez has quit IRC
[06:58:14] *** NigelS has quit IRC
[06:58:15] *** Pierre_N has quit IRC
[06:58:16] *** tonini has quit IRC
[06:58:16] *** daivyk has quit IRC
[06:58:16] *** licyeus has quit IRC
[06:58:17] *** atomi has quit IRC
[06:58:17] *** subnl2 has quit IRC
[06:58:29] *** zelrik has quit IRC
[06:58:38] *** skakri` has joined #angularjs
[06:58:42] *** diffalot has quit IRC
[06:58:51] *** zelrik has joined #angularjs
[06:59:03] *** medusa has quit IRC
[06:59:05] *** diffalotmore has joined #angularjs
[06:59:14] *** diffalotmore is now known as diffalot
[06:59:27] *** skakri has quit IRC
[06:59:28] *** medusa has joined #angularjs
[06:59:39] *** Ymesio has quit IRC
[06:59:46] *** NigelS has joined #angularjs
[07:00:33] *** zaal_ has joined #angularjs
[07:00:35] *** Mer|inDMC has joined #angularjs
[07:00:39] *** ericduran_ has joined #angularjs
[07:00:42] *** dested has quit IRC
[07:00:43] *** zaal has quit IRC
[07:00:44] *** Johnny- has quit IRC
[07:00:45] *** callumacrae has quit IRC
[07:00:46] *** Sawbones has quit IRC
[07:01:24] *** ericduran has quit IRC
[07:01:25] *** MerlinDMC has quit IRC
[07:01:25] *** zenodub has quit IRC
[07:01:26] *** ericduran_ is now known as ericduran
[07:01:45] *** Johnny- has joined #angularjs
[07:01:52] *** sacho has joined #angularjs
[07:02:14] *** zenodub has joined #angularjs
[07:02:18] *** alt_qq has joined #angularjs
[07:04:05] *** night-owl has joined #angularjs
[07:04:28] *** callumacrae has joined #angularjs
[07:05:13] *** mennea has joined #angularjs
[07:05:25] *** dested has joined #angularjs
[07:05:46] *** Sgeo has joined #angularjs
[07:05:46] *** MathiasM has joined #angularjs
[07:06:11] *** gordroid has joined #angularjs
[07:07:23] *** dman777_alter has quit IRC
[07:08:42] *** moritzs has quit IRC
[07:08:47] *** kennbrodhagen has joined #angularjs
[07:09:05] *** patrickc_ has joined #angularjs
[07:09:47] *** MathiasM has quit IRC
[07:09:49] *** Reskp has joined #angularjs
[07:10:07] *** JoshGlzBrk has joined #angularjs
[07:10:08] *** aaronmitchell has quit IRC
[07:10:26] *** teslanick has joined #angularjs
[07:11:07] *** gordroid has quit IRC
[07:12:25] *** bphogan_afk is now known as bphogan
[07:13:07] *** enxtur has joined #angularjs
[07:13:33] *** kennbrodhagen has quit IRC
[07:13:37] *** patrickc_ has quit IRC
[07:13:42] *** aaronmitchell has joined #angularjs
[07:13:57] *** squeakytoy has quit IRC
[07:14:07] <Cixis> https://www.youtube.com/watch?v=bUR_eUVcABg
[07:14:08] *** Reskp has quit IRC
[07:14:23] <Cixis> pretty cool + the way the guy talks is the funniest thing i've heard all day
[07:14:37] *** bphogan is now known as bphogan_afk
[07:15:10] *** squeakytoy has joined #angularjs
[07:15:27] *** tk has joined #angularjs
[07:16:20] *** wilmoore has quit IRC
[07:17:02] *** leyluj has joined #angularjs
[07:17:33] *** Milanito has joined #angularjs
[07:17:42] *** enxtur has quit IRC
[07:17:56] *** bmac has quit IRC
[07:20:03] *** teslanick has quit IRC
[07:21:50] *** Yancy has quit IRC
[07:22:00] *** Yancy has joined #angularjs
[07:22:30] *** xaxisx has joined #angularjs
[07:25:23] *** ngoyal has quit IRC
[07:25:27] *** benjf has quit IRC
[07:25:59] *** ngoyal has joined #angularjs
[07:28:06] *** jaredjones has quit IRC
[07:28:50] *** fold has quit IRC
[07:30:45] *** ngoyal has quit IRC
[07:30:46] *** jaredjones has joined #angularjs
[07:31:33] *** fedenunez has quit IRC
[07:32:41] *** josh-k has joined #angularjs
[07:32:42] *** braoru has joined #angularjs
[07:32:43] *** jharbaugh has joined #angularjs
[07:34:20] *** josh-k_ has joined #angularjs
[07:34:45] *** Sawbones has joined #angularjs
[07:35:45] *** bphogan_afk is now known as bphogan
[07:35:55] *** pdillinger has joined #angularjs
[07:36:11] *** drej has quit IRC
[07:36:24] *** ppppaul has joined #angularjs
[07:37:43] *** jharbaugh has quit IRC
[07:37:54] *** josh-k has quit IRC
[07:39:06] *** danielpquinn has joined #angularjs
[07:39:20] *** Sawbones has quit IRC
[07:40:44] *** pdillinger has quit IRC
[07:42:36] *** jaredjones has quit IRC
[07:42:55] *** kroogs has joined #angularjs
[07:43:53] *** fixl has joined #angularjs
[07:44:03] *** danielpquinn has quit IRC
[07:46:33] *** dbouwman has quit IRC
[07:46:47] *** jaredjones has joined #angularjs
[07:48:19] *** aaronmitchell has quit IRC
[07:48:23] *** blueadept has quit IRC
[07:48:45] *** rburns has joined #angularjs
[07:49:41] *** aaronmitchell has joined #angularjs
[07:49:42] *** dashed has quit IRC
[07:50:27] *** JakeSays is now known as AnswerMan
[07:51:04] *** AnswerMan is now known as JakeSays
[07:51:14] *** JoshGlzBrk has quit IRC
[07:52:57] *** SomeKittens has quit IRC
[07:54:55] *** Milanito has quit IRC
[07:55:26] *** auser has joined #angularjs
[07:56:52] *** leyluj has quit IRC
[07:57:51] *** gnar_matix has joined #angularjs
[07:58:05] *** InezK is now known as InezK_away
[07:58:33] *** JoshGlzBrk has joined #angularjs
[07:59:54] *** ppppaul has quit IRC
[08:00:37] *** mac_ified has joined #angularjs
[08:01:02] *** gunn has quit IRC
[08:01:57] *** Yancy has quit IRC
[08:02:04] *** ckboii89 has quit IRC
[08:02:08] *** Yancy has joined #angularjs
[08:03:18] *** gordroid has joined #angularjs
[08:04:16] *** bphogan is now known as bphogan_afk
[08:04:39] *** bphogan_afk is now known as bphogan
[08:04:56] *** mennea has quit IRC
[08:05:19] *** MathiasM has joined #angularjs
[08:05:33] *** sgnl has quit IRC
[08:06:51] *** mac_ified has quit IRC
[08:07:52] *** gordroid has quit IRC
[08:07:52] *** morenoh149 has quit IRC
[08:09:13] *** drej has joined #angularjs
[08:09:22] *** MathiasM has quit IRC
[08:09:50] *** patrickc_ has joined #angularjs
[08:10:35] *** Reskp has joined #angularjs
[08:10:40] *** diffalot has quit IRC
[08:11:23] *** auser has quit IRC
[08:11:59] *** KushS has joined #angularjs
[08:12:12] *** asdofindia_ has joined #angularjs
[08:12:21] *** asdofindia has quit IRC
[08:12:51] *** rburns has quit IRC
[08:12:55] *** diffalot has joined #angularjs
[08:13:14] *** dc_ has joined #angularjs
[08:13:21] *** KushS has quit IRC
[08:14:08] *** rburns has joined #angularjs
[08:14:20] *** patrickc_ has quit IRC
[08:14:57] *** jstimm has joined #angularjs
[08:15:03] *** Reskp has quit IRC
[08:15:06] *** jstimm has quit IRC
[08:15:12] *** ppppaul has joined #angularjs
[08:16:33] *** davedev24_ has quit IRC
[08:16:39] *** asdofindia_ has quit IRC
[08:16:54] *** aviraldg has quit IRC
[08:18:00] *** TheAceOfHearts has quit IRC
[08:20:34] *** rburns has quit IRC
[08:21:38] *** daivyk_ has quit IRC
[08:25:12] *** braoru has quit IRC
[08:26:11] *** thedodd has quit IRC
[08:27:56] *** leyluj has joined #angularjs
[08:28:16] *** InezK_away is now known as InezK
[08:28:54] *** Sawbones has joined #angularjs
[08:29:21] *** asdofindia_ has joined #angularjs
[08:30:08] *** lordjancso has quit IRC
[08:30:21] *** tigrang has joined #angularjs
[08:30:35] *** lordjancso has joined #angularjs
[08:30:51] *** asdofindia_ is now known as asdofindia
[08:31:16] *** asdofindia has joined #angularjs
[08:31:33] *** aviraldg has joined #angularjs
[08:31:35] *** night-owl-MBP has joined #angularjs
[08:32:09] *** night-owl-MBP has quit IRC
[08:32:30] *** josh-k_ has quit IRC
[08:33:11] *** Sawbones has quit IRC
[08:33:38] *** jharbaugh has joined #angularjs
[08:33:42] *** davedev24_ has joined #angularjs
[08:35:46] *** Nijikokun has joined #angularjs
[08:36:19] *** Yahkob has joined #angularjs
[08:37:11] *** aqlx86 has quit IRC
[08:37:24] *** tyfighter has quit IRC
[08:37:50] *** jharbaugh has quit IRC
[08:38:15] *** Nijiko has quit IRC
[08:38:46] *** dnewkerk has quit IRC
[08:39:52] *** InezK is now known as InezK_away
[08:39:56] *** danielpquinn has joined #angularjs
[08:41:34] *** howzus has joined #angularjs
[08:42:13] *** Yancy has quit IRC
[08:42:24] *** Yancy has joined #angularjs
[08:42:52] *** night-owl-MBP has joined #angularjs
[08:43:45] *** ngbot has joined #angularjs
[08:43:45] <ngbot> [angular.js] petebacondarwin pushed 1 new commit to master: http://git.io/923wmQ
[08:43:45] <ngbot> angular.js/master 0a51a05 Bill Neubauer: docs(tutorial/step-9): link to list of filters rather than filterProvider...
[08:43:45] *** ngbot has left #angularjs
[08:44:12] *** night-owl-MBP has quit IRC
[08:44:39] *** jamto11 has joined #angularjs
[08:44:45] *** danielpquinn has quit IRC
[08:44:55] *** sigurding has joined #angularjs
[08:46:19] *** altious has joined #angularjs
[08:47:41] *** gnar_matix has quit IRC
[08:48:08] *** gnar_matix has joined #angularjs
[08:48:42] *** DrMabuse has joined #angularjs
[08:49:03] *** jamto11 has quit IRC
[08:50:31] *** aqlx86 has joined #angularjs
[08:52:26] *** gnar_matix has quit IRC
[08:52:50] *** Alina-malina has joined #angularjs
[08:53:08] *** noocode has quit IRC
[08:53:18] *** Yahkob has quit IRC
[08:53:30] *** dnewkerk has joined #angularjs
[08:53:45] *** subnl2 has joined #angularjs
[08:53:54] *** subnl2 has left #angularjs
[08:54:58] *** tarnus has quit IRC
[08:55:58] *** charuru has quit IRC
[08:56:54] *** deg- has quit IRC
[08:57:59] *** netto_ has joined #angularjs
[08:58:45] *** deg- has joined #angularjs
[08:59:57] *** noocode has joined #angularjs
[09:00:46] *** dylukes has quit IRC
[09:01:01] *** gordroid has joined #angularjs
[09:01:32] *** pdillinger has joined #angularjs
[09:01:33] *** dc_ has quit IRC
[09:01:59] *** aqlx86 has quit IRC
[09:04:17] *** aaronmitchell has quit IRC
[09:04:37] *** dc_ has joined #angularjs
[09:05:11] *** sigurding has quit IRC
[09:05:33] *** gordroid has quit IRC
[09:07:04] *** Alina-malina has quit IRC
[09:08:20] *** Thorn has quit IRC
[09:08:51] *** mzehrer_ has joined #angularjs
[09:08:53] *** dc_ has quit IRC
[09:09:39] *** kennbrodhagen has joined #angularjs
[09:09:47] *** klaut has joined #angularjs
[09:10:06] *** KushS has joined #angularjs
[09:10:14] *** Alina-malina has joined #angularjs
[09:10:35] *** patrickc_ has joined #angularjs
[09:11:18] *** Reskp has joined #angularjs
[09:12:05] *** asdofindia has quit IRC
[09:14:09] *** kennbrodhagen has quit IRC
[09:14:32] *** ppppaul has quit IRC
[09:14:33] *** dcherman has joined #angularjs
[09:15:02] *** patrickc_ has quit IRC
[09:15:02] *** leyluj has quit IRC
[09:15:09] *** mennea has joined #angularjs
[09:15:34] *** Reskp has quit IRC
[09:15:37] *** leyluj has joined #angularjs
[09:16:00] *** leyluj has joined #angularjs
[09:17:47] *** dbouwman has joined #angularjs
[09:18:44] *** sigurding has joined #angularjs
[09:20:48] *** aqlx has joined #angularjs
[09:22:08] *** dbouwman has quit IRC
[09:23:07] *** Sawbones has joined #angularjs
[09:24:13] *** nick__ has joined #angularjs
[09:24:39] <nick__> intreasting node
[09:24:49] *** AsaPrab has joined #angularjs
[09:26:32] *** ngoyal has joined #angularjs
[09:27:10] *** phuh has joined #angularjs
[09:27:52] *** phuh has quit IRC
[09:27:55] *** Sawbones has quit IRC
[09:28:14] *** nick__ has quit IRC
[09:29:01] *** AsaPrab has quit IRC
[09:29:16] *** gauravsaini03 has joined #angularjs
[09:29:59] *** pkayfire has joined #angularjs
[09:30:52] *** Jon30 has quit IRC
[09:30:54] *** ngoyal has quit IRC
[09:30:54] *** InezK_away is now known as InezK
[09:32:05] *** leyluj has quit IRC
[09:32:09] *** MacWinner has quit IRC
[09:33:00] *** leyluj has joined #angularjs
[09:34:12] *** jharbaugh has joined #angularjs
[09:34:32] *** Mouzi has joined #angularjs
[09:37:25] *** kroogs has quit IRC
[09:39:19] *** jharbaugh has quit IRC
[09:40:19] *** JoshGlzBrk has quit IRC
[09:40:20] *** zelrik has quit IRC
[09:40:21] *** zelrik has joined #angularjs
[09:40:35] *** InezK is now known as InezK_away
[09:40:40] *** danielpquinn has joined #angularjs
[09:41:09] *** Gambit-- has quit IRC
[09:41:11] *** pkayfire has quit IRC
[09:41:45] *** pkayfire has joined #angularjs
[09:43:33] *** anjumkaiser has quit IRC
[09:43:57] *** JoshGlzBrk has joined #angularjs
[09:45:21] *** danielpquinn has quit IRC
[09:46:12] *** pkayfire has quit IRC
[09:48:29] *** Thorn has joined #angularjs
[09:49:43] *** netto_ is now known as nettofarah
[09:49:50] *** Sawbones has joined #angularjs
[09:52:36] *** anjumkaiser has joined #angularjs
[09:52:52] *** JesseEichar_ has joined #angularjs
[09:55:01] *** defreece has quit IRC
[09:57:59] *** mcgwier has joined #angularjs
[09:58:52] *** gordroid has joined #angularjs
[09:59:24] *** Milanito has joined #angularjs
[09:59:52] *** MathiasM has joined #angularjs
[10:00:28] *** IJNX has joined #angularjs
[10:00:51] *** tylerdmace has quit IRC
[10:01:09] *** DrMabuse has quit IRC
[10:02:11] *** DrMabuse has joined #angularjs
[10:02:46] *** aqlx is now known as aqlx86
[10:03:00] *** bphogan is now known as bphogan_afk
[10:03:23] *** gordroid has quit IRC
[10:03:57] *** MathiasM has quit IRC
[10:04:07] *** dcherman has quit IRC
[10:05:00] *** tdierks1 has joined #angularjs
[10:06:25] *** tdierks3 has quit IRC
[10:07:16] *** phooby has joined #angularjs
[10:07:43] *** gordroid has joined #angularjs
[10:07:56] *** foofoobar has joined #angularjs
[10:08:01] *** DrMabuse has quit IRC
[10:11:00] *** tigrang has quit IRC
[10:11:22] *** patrickc_ has joined #angularjs
[10:11:56] *** dnewkerk has quit IRC
[10:12:06] *** gordroid has quit IRC
[10:12:09] *** Reskp has joined #angularjs
[10:12:24] *** pkayfire has joined #angularjs
[10:12:38] *** davek has quit IRC
[10:13:39] *** JoshGlzBrk has quit IRC
[10:14:12] *** IJNX has quit IRC
[10:15:08] *** terrykfwong has joined #angularjs
[10:16:02] *** dested has quit IRC
[10:16:02] *** patrickc_ has quit IRC
[10:16:34] *** Reskp has quit IRC
[10:17:21] *** dylanlindgren has joined #angularjs
[10:18:24] *** dbouwman has joined #angularjs
[10:18:45] *** aqlx86 has quit IRC
[10:20:04] *** zwacky has joined #angularjs
[10:21:46] *** IJNX has joined #angularjs
[10:22:33] *** dbouwman has quit IRC
[10:26:33] *** pkayfire has quit IRC
[10:27:09] *** pkayfire has joined #angularjs
[10:29:36] *** KushS has quit IRC
[10:31:30] *** pkayfire has quit IRC
[10:31:40] *** InezK_away is now known as InezK
[10:32:47] *** Sawbones has quit IRC
[10:34:05] *** pdillinger has quit IRC
[10:34:36] *** kroogs has joined #angularjs
[10:35:04] *** jharbaugh has joined #angularjs
[10:37:25] *** DrMabuse has joined #angularjs
[10:37:33] *** Al` has joined #angularjs
[10:38:58] *** tfennelly has joined #angularjs
[10:39:15] *** kroogs has quit IRC
[10:39:57] *** jharbaugh has quit IRC
[10:41:24] *** InezK is now known as InezK_away
[10:41:25] *** danielpquinn has joined #angularjs
[10:42:52] *** sheeppower has joined #angularjs
[10:44:22] *** dc_ has joined #angularjs
[10:45:03] *** jdj_dk has joined #angularjs
[10:45:23] *** jamto11 has joined #angularjs
[10:45:58] *** danielpquinn has quit IRC
[10:46:06] *** tomzx`afk has quit IRC
[10:46:19] *** nemothekid has quit IRC
[10:46:23] *** danielpquinn has joined #angularjs
[10:48:37] *** dc_ has quit IRC
[10:48:58] *** tomzx`afk has joined #angularjs
[10:49:34] *** jdj_dk has quit IRC
[10:49:35] *** InezK_away is now known as InezK
[10:50:06] *** jamto11 has quit IRC
[10:50:41] *** danielpquinn has quit IRC
[10:51:58] *** nemothekid has joined #angularjs
[10:55:41] *** gordroid has joined #angularjs
[10:55:42] *** klaut has quit IRC
[10:56:17] *** tarnus has joined #angularjs
[10:58:48] *** senayar has joined #angularjs
[10:59:54] *** dnewkerk has joined #angularjs
[11:00:00] *** sacho has quit IRC
[11:00:00] *** gordroid has quit IRC
[11:00:23] *** sacho has joined #angularjs
[11:00:26] *** pdillinger has joined #angularjs
[11:00:34] *** tarnus has quit IRC
[11:02:45] *** InezK is now known as InezK_away
[11:03:10] *** zz_Brocken is now known as Brocken
[11:05:23] *** MathiasM has joined #angularjs
[11:05:57] <Cixis> i finally filtered joins and parts in irssi, now you fuckers keep changing your nicks
[11:06:03] *** pdillinger has quit IRC
[11:09:45] *** orion1111 has joined #angularjs
[11:09:47] *** MathiasM has quit IRC
[11:10:27] *** kennbrodhagen has joined #angularjs
[11:12:07] *** patrickc_ has joined #angularjs
[11:12:59] *** Reskp has joined #angularjs
[11:13:51] *** mihalybak has joined #angularjs
[11:14:10] *** Xethron has joined #angularjs
[11:14:51] *** kennbrodhagen has quit IRC
[11:14:53] *** enxtur has joined #angularjs
[11:16:14] *** fg3 has joined #angularjs
[11:16:51] *** patrickc_ has quit IRC
[11:17:26] *** leyluj has quit IRC
[11:17:41] <fg3> I display a list with ng-repeat, then an item is removed from the list using HTML5 draggable -- How can I get the original list to redraw at this point?
[11:17:42] *** leyluj has joined #angularjs
[11:17:44] *** Reskp has quit IRC
[11:17:49] *** loser has quit IRC
[11:18:22] *** boptop_ has quit IRC
[11:19:08] *** dbouwman has joined #angularjs
[11:19:36] *** enxtur has quit IRC
[11:20:44] *** tfennell_ has joined #angularjs
[11:23:41] *** dbouwman has quit IRC
[11:24:40] *** ch3pa has joined #angularjs
[11:24:49] *** mihalybak has left #angularjs
[11:25:06] *** tfennelly has quit IRC
[11:25:31] *** DuelShark has joined #angularjs
[11:27:24] *** ngoyal has joined #angularjs
[11:30:27] *** Nek has joined #angularjs
[11:32:09] *** ngoyal has quit IRC
[11:33:23] *** zwacky has quit IRC
[11:33:24] *** SchizoDuckie has joined #angularjs
[11:33:54] <trippo> 12
[11:34:56] *** mewm has joined #angularjs
[11:35:04] *** DrMabuse has quit IRC
[11:35:13] *** drej has quit IRC
[11:35:52] *** jharbaugh has joined #angularjs
[11:36:30] *** terrykfwong has joined #angularjs
[11:38:19] *** Al` has quit IRC
[11:39:05] *** jdj_dk has joined #angularjs
[11:39:09] *** altious has quit IRC
[11:39:15] *** ngoyal has joined #angularjs
[11:40:13] *** jharbaugh has quit IRC
[11:40:32] *** ngoyal_ has joined #angularjs
[11:42:31] *** ngoyal_ has quit IRC
[11:43:15] <sacho> fg3, trigger a digest cycle when you remove the item.
[11:43:22] <sacho> e.g. with $scope.$apply()
[11:43:48] <fg3> sacho: the item is not being removed from $scope - just in the dom
[11:43:50] *** jdj_dk has quit IRC
[11:44:03] <fg3> so $apply() does not do it
[11:44:06] *** ngoyal__ has joined #angularjs
[11:44:09] *** ngoyal has quit IRC
[11:44:33] <sacho> well, remove it from the data as well.
[11:44:37] *** disorder20 has joined #angularjs
[11:44:43] <fg3> sacho: I don't want to
[11:44:57] <sacho> what do you want then
[11:45:45] *** phooby has quit IRC
[11:46:17] <fg3> use case one list element being moved to a second list: I copy and append the original element onto the first list. I need it sorted again so it goes into the correct order. Hence I need a redraw.
[11:46:17] *** Milanito has quit IRC
[11:47:04] *** danielpquinn has joined #angularjs
[11:47:29] <fg3> sacho: does that make sense?
[11:48:37] *** ngoyal__ has quit IRC
[11:49:29] <sacho> so once you add it do the data in the second list, do an apply.
[11:49:34] *** jk-5 is now known as jk-5|gone
[11:49:41] *** Al` has joined #angularjs
[11:50:03] <Al`> hey guys, I have this custom checkbox directive that I've created here: http://plnkr.co/edit/0W3ZviEVSWO3hJB7PFXd?p=preview
[11:50:24] <Al`> as you can see the 'name' field isn't getting interpolated so it's still displaying as {{elementName}} on the form
[11:50:27] *** nodweber has joined #angularjs
[11:50:41] <Al`> I believe I need to do something similar to this: http://stackoverflow.com/questions/21455695/angularjs-dynamic-form-field-validation/21457121#21457121 ie. update the name of the element at runtime
[11:51:17] *** danielpquinn has quit IRC
[11:51:20] <Al`> but since in my example I needed to update a child element of my template, I'm not really sure where to begin
[11:51:29] <Al`> is anyone able to help?
[11:52:01] <sacho> didn't caitp show you how to deal with your problem
[11:55:08] *** PokerAA has joined #angularjs
[11:55:17] *** btaz has joined #angularjs
[11:55:43] *** gordroid has joined #angularjs
[11:55:46] <PokerAA> hey guys, small question: any reason $rootScope will work under Chrome but not firefox?
[11:55:56] *** intellix has joined #angularjs
[11:56:18] <PokerAA> im having this problem $rootScope is only updated under chrom..
[11:57:09] <PokerAA> in the view I mean
[11:59:51] *** foofoobar has quit IRC
[11:59:58] *** ckboii89 has joined #angularjs
[12:00:03] *** gordroid has quit IRC
[12:00:08] <sacho> PokerAA, make a test case
[12:00:22] *** niop has joined #angularjs
[12:00:52] <fg3> sacho: you sparked an idea - let's see how it goes...
[12:01:21] <PokerAA> umm test case?
[12:01:25] *** jumpstracks has joined #angularjs
[12:01:37] <PokerAA> any documentation for that? or ex?
[12:01:47] <zbzzn> last time something worked in chrome and not in FF it was because the window didnt have event property
[12:01:59] <zbzzn> i.e. window.event defined in chrome but not in FF
[12:02:10] <zbzzn> just saying
[12:02:31] <PokerAA> it is a ng-click that is not working
[12:02:47] <zbzzn> do you have a variable named event?
[12:02:55] *** InezK_away is now known as InezK
[12:03:06] <PokerAA> umm nop
[12:03:08] *** ngoyal has joined #angularjs
[12:03:11] *** peldan has joined #angularjs
[12:03:18] <zbzzn> then I don't know without code sample
[12:03:22] *** juampy has joined #angularjs
[12:03:33] *** onr has joined #angularjs
[12:03:39] *** leyluj has quit IRC
[12:03:48] <PokerAA> i did something like that: $rootScope.logout = AuthService.logout
[12:03:59] <PokerAA> AuthService.logout is a function to logout a user
[12:04:16] <PokerAA> and in the view I have called ng-click="logout"
[12:04:17] *** gordroid has joined #angularjs
[12:04:20] *** Milanito has joined #angularjs
[12:04:31] <PokerAA> but it is not being called
[12:04:40] *** Milanito has quit IRC
[12:05:12] <zbzzn> don't you need to do ng-click="logout()"
[12:05:44] *** nodweber has quit IRC
[12:05:58] <PokerAA> yes sorry, thats what I have: ng-click="logout()"
[12:06:28] <zbzzn> and it works in chrome but not in ff?
[12:06:30] <niop> hi, this is a long shot, but might try asking here in case someone has some experience of nggrid and embedded controls. trying to embed jquery datepicker into column cells.. using directive, but while ng-model to save selected date is as it should be, row.entity.mydate, the cell to which date selection is applied seems to be random. anyone an idea why ng-model would save date to wrong cell, randomly?
[12:06:39] <PokerAA> yes
[12:06:53] <zbzzn> strange
[12:06:57] <PokerAA> yup
[12:06:58] <PokerAA> lol
[12:07:37] <PokerAA> it might have something to loading sequence?
[12:07:41] *** ngoyal has quit IRC
[12:07:46] *** ngoyal_ has joined #angularjs
[12:07:49] *** schonert has joined #angularjs
[12:08:28] *** ngoyal_ has quit IRC
[12:08:33] <niop> PokerAA: if it saves to the same locations in the session, maybe... but the cell seems to vary within the same session.
[12:08:40] <Moult> if my controller does $scope.foo = myService.foo, and myService.foo updates, is $scope.foo automatically updated too?
[12:08:47] *** gordroid has quit IRC
[12:09:18] *** jk-5|gone is now known as jk-5
[12:09:23] <schonert> hey guys - for some odd reason angular-socket-io fires two events on socket.on. is this a known issue?
[12:10:00] *** ngoyal has joined #angularjs
[12:10:13] *** Rocket has joined #angularjs
[12:10:36] *** Rocket is now known as Guest50587
[12:10:55] <niop> PokerAA: odd the randomness of it.. i would have expected something like that to be more deterministic. i guess might have to inspect further to get a better idea of what might be going on.
[12:11:12] *** peldan has quit IRC
[12:11:50] <PokerAA> checking
[12:11:57] *** ngoyal has quit IRC
[12:12:02] <PokerAA> thanks,
[12:12:14] <PokerAA> will update more symptoms sortly
[12:12:21] *** ngoyal has joined #angularjs
[12:12:23] *** nodweber has joined #angularjs
[12:12:47] *** terrykfwong has quit IRC
[12:12:47] *** InezK is now known as InezK_away
[12:12:52] *** patrickc_ has joined #angularjs
[12:13:05] *** ngoyal has quit IRC
[12:13:24] *** marr has joined #angularjs
[12:13:32] *** ngoyal has joined #angularjs
[12:13:39] *** dnewkerk has quit IRC
[12:13:45] *** ckboii89 has quit IRC
[12:13:46] *** Reskp has joined #angularjs
[12:13:59] *** asdofindia has joined #angularjs
[12:14:02] *** lordkryss has joined #angularjs
[12:14:06] *** ngoyal has quit IRC
[12:14:39] *** ngoyal has joined #angularjs
[12:15:57] *** DexterTheDragon has quit IRC
[12:16:04] *** niop has quit IRC
[12:16:18] <PokerAA> niop its seems rootScope is defined out side ng-repeat but not it ng-repeat
[12:16:28] <PokerAA> inside*
[12:16:33] <PokerAA> make any sense?
[12:16:43] <zbzzn> $rootScope is a service
[12:16:53] *** ngoyal has quit IRC
[12:17:31] <PokerAA> nop, its a variable..
[12:17:45] *** patrickc_ has quit IRC
[12:18:02] <sacho> PokerAA, a test case is a minimal example of your problem.
[12:18:13] <sacho> paste your code on plnkr, exhibiting your symptoms
[12:18:19] <sacho> see the topic for a template you can use
[12:18:26] <PokerAA> ohhh OK sorry will do
[12:18:39] <PokerAA> thanks :)
[12:18:45] <trippo> I'm having an issue with ng-clicks taking like 2 sec on older mobile devices (iphone 4, samsung galaxy nexus etc). I'm using Onsen UI and it might be the view render that takes time - although it's rather simple views. Any suggestion on what to look for? I'm now rebuilding to use ui-router instead of onsens built in navigator if that might solve it.
[12:18:49] *** obert has quit IRC
[12:18:52] <Al`> sacho: yes, sorry caitp did post a solution that involved adding a decorator to the ngmodel/form directives
[12:18:55] *** Reskp has quit IRC
[12:19:15] *** obert has joined #angularjs
[12:19:18] <Al`> but because of the structure i have I'm trying to find out if it's possible for me to update the name attribute of my specific directive
[12:19:52] <Al`> so I can isolate the changes rather than affect things that could have an impact somewhere else in the app
[12:19:55] *** dbouwman has joined #angularjs
[12:20:14] <sacho> the `form` directive doesn't listen for name changes.
[12:20:27] <sacho> no matter how many times you change your name, it won't register the change.
[12:20:31] <Al`> oh
[12:20:41] <Al`> so it really is a case of dealing with the form directly then
[12:20:47] <Al`> ok thanks, I'll try and find a way around this
[12:22:03] *** nemothekid has quit IRC
[12:24:37] *** dbouwman has quit IRC
[12:24:40] *** jumpstracks has quit IRC
[12:24:55] <PokerAA> how can I check the loading sequence of angular?
[12:24:59] *** evilaliv3 has joined #angularjs
[12:25:05] <PokerAA> only using the NET? in the console?
[12:25:24] <sacho> loading sequence..?
[12:25:44] <PokerAA> umm
[12:26:23] <PokerAA> ex: which files are currently being used.. which load first?
[12:27:09] <PokerAA> is it config -> run -> control?
[12:27:19] *** Guest50587 has quit IRC
[12:27:24] *** btaz has quit IRC
[12:28:54] *** hannesvdvreken has joined #angularjs
[12:28:54] *** disorder20 has quit IRC
[12:29:18] *** Nijikokun has quit IRC
[12:29:50] *** sigurding has quit IRC
[12:30:05] *** disorder20 has joined #angularjs
[12:30:06] *** ngoyal has joined #angularjs
[12:33:09] *** quantax_ has quit IRC
[12:33:50] *** Milanito has joined #angularjs
[12:34:45] *** ngoyal has quit IRC
[12:34:46] *** howzus has quit IRC
[12:36:07] *** TorchDragon has joined #angularjs
[12:36:37] *** jharbaugh has joined #angularjs
[12:38:20] *** hubertus_ has quit IRC
[12:38:30] *** feelfine has joined #angularjs
[12:38:52] *** hubertus_ has joined #angularjs
[12:39:12] *** LuxuryMode has quit IRC
[12:39:58] *** juampy has quit IRC
[12:41:06] *** TorchDragon has quit IRC
[12:41:11] *** ngoyal has joined #angularjs
[12:41:43] *** jharbaugh has quit IRC
[12:44:32] *** ipalaus has joined #angularjs
[12:45:19] *** anjumkaiser has quit IRC
[12:45:22] *** SchizoDuckie has left #angularjs
[12:45:33] *** ngoyal has quit IRC
[12:46:18] *** Nijikokun has joined #angularjs
[12:46:28] *** howzus has joined #angularjs
[12:46:29] *** jumpstracks has joined #angularjs
[12:46:51] *** anjumkaiser has joined #angularjs
[12:47:52] *** danielpquinn has joined #angularjs
[12:48:00] <sacho> PokerAA, the config is ran first, then the run bloc
[12:48:01] <sacho> k
[12:48:27] <sacho> https://docs.angularjs.org/guide/module
[12:48:34] *** krnflake has quit IRC
[12:50:11] *** krnflake has joined #angularjs
[12:50:13] *** nettofarah has quit IRC
[12:51:19] *** euskadi31 has joined #angularjs
[12:52:14] *** danielpquinn has quit IRC
[12:52:17] *** gordroid has joined #angularjs
[12:54:26] *** MathiasM has joined #angularjs
[12:56:04] *** peldan has joined #angularjs
[12:56:54] *** gordroid has quit IRC
[12:57:16] *** tarnus has joined #angularjs
[12:57:16] *** Daven__ has joined #angularjs
[12:58:32] *** MathiasM has quit IRC
[12:59:41] *** kroogs has joined #angularjs
[13:01:09] *** Daven__ has quit IRC
[13:01:34] *** msafi has quit IRC
[13:01:51] *** tarnus has quit IRC
[13:02:24] *** RedOrangeZ has joined #angularjs
[13:03:00] *** pdillinger has joined #angularjs
[13:03:49] *** InezK_away is now known as InezK
[13:05:04] *** kroogs has quit IRC
[13:07:03] *** pdillinger has quit IRC
[13:07:06] *** Asiajey has joined #angularjs
[13:07:26] <PokerAA> rootScope not updating from ng-view out is a known issue?
[13:08:41] *** Foxandxss has joined #angularjs
[13:10:17] *** pdillinger has joined #angularjs
[13:10:28] *** jumpstracks has quit IRC
[13:11:23] *** kennbrodhagen has joined #angularjs
[13:12:05] *** drej has joined #angularjs
[13:13:31] *** InezK is now known as InezK_away
[13:13:35] *** patrickc_ has joined #angularjs
[13:13:37] *** senayar has quit IRC
[13:13:50] *** jstroem has joined #angularjs
[13:14:08] *** senayar has joined #angularjs
[13:14:27] *** Reskp has joined #angularjs
[13:14:48] *** ckboii89 has joined #angularjs
[13:15:00] *** pdillinger has quit IRC
[13:15:20] *** mzehrer_ has quit IRC
[13:15:43] *** enxtur has joined #angularjs
[13:15:52] <orion1111> There is no way of retaining data when pressing F5, except the route variable, like /page/:id. Am I right?
[13:15:53] *** kennbrodhagen has quit IRC
[13:16:22] <Foxandxss> local storage?
[13:16:24] <Foxandxss> or session storage
[13:17:04] *** SpearThruster has joined #angularjs
[13:17:51] *** fl0ppy has joined #angularjs
[13:18:27] *** patrickc_ has quit IRC
[13:18:57] *** senayar has quit IRC
[13:19:03] *** Reskp has quit IRC
[13:19:04] *** ckboii89 has quit IRC
[13:19:06] *** Milanito has quit IRC
[13:19:38] *** phooby has joined #angularjs
[13:19:56] *** enxtur has quit IRC
[13:20:42] *** liri has joined #angularjs
[13:20:43] *** dbouwman has joined #angularjs
[13:20:52] *** ppppaul has joined #angularjs
[13:24:04] *** tfennell_ has quit IRC
[13:24:50] <orion1111> yeah, session storage works good
[13:25:08] *** dbouwman has quit IRC
[13:25:14] *** noobee has joined #angularjs
[13:25:19] <noobee> hi
[13:25:26] <noobee> how can I set ng-model in a form
[13:26:45] <Foxandxss> when you say form, you mean form tag?
[13:27:05] *** jdj_dk has joined #angularjs
[13:27:13] *** altious has joined #angularjs
[13:27:15] *** DrJae has joined #angularjs
[13:28:18] *** AciD`` has joined #angularjs
[13:29:51] *** Jae has quit IRC
[13:30:35] *** tfennelly has joined #angularjs
[13:31:34] *** jdj_dk has quit IRC
[13:31:34] *** InezK_away is now known as InezK
[13:32:25] *** msafi has joined #angularjs
[13:32:49] *** DrMabuse has joined #angularjs
[13:37:38] *** jharbaugh has joined #angularjs
[13:38:25] *** msafi has quit IRC
[13:40:05] *** anjumkaiser has quit IRC
[13:40:05] *** anjumkaiser1 has joined #angularjs
[13:40:46] <Asiajey> noobee: you want to attach all named inputs to model as keys ? i don't thimk it is possible
[13:40:59] <Asiajey> s/imk/ink/
[13:41:00] <noobee> yes
[13:41:15] *** InezK is now known as InezK_away
[13:41:16] <noobee> so i need to put ng-model attributes in each input tag?
[13:41:34] *** jharbaugh has quit IRC
[13:41:58] <Asiajey> noobee: probably yes, or make a directive which will take care on this itself
[13:42:46] <Asiajey> noobee: there is 1/100000 chance of miracle and just adding ng-model to <form> will work out of the box, did you tried ?
[13:42:51] *** daslicht has joined #angularjs
[13:42:56] <noobee> no
[13:43:08] <noobee> im new to angularjs
[13:43:36] *** daslicht has joined #angularjs
[13:43:43] *** daslicht has joined #angularjs
[13:43:44] <Asiajey> just use plnkc.co to try, better to try before ask, but i think it will not work
[13:43:47] *** dariocravero has joined #angularjs
[13:44:17] <noobee> nope didnt work
[13:44:37] <Asiajey> https://docs.angularjs.org/api/ng/directive/form
[13:45:03] <Asiajey> use this example, or make/search directive which will do it for you
[13:46:31] *** Milanito has joined #angularjs
[13:46:54] <Asiajey> https://github.com/angular/angular.js/issues/1716 this is answer to your question
[13:47:12] *** fl0ppy has quit IRC
[13:48:38] *** danielpquinn has joined #angularjs
[13:48:46] *** gordroid has joined #angularjs
[13:50:59] <Al`> hmm is there any obvious reason why my element name isn't being interpolated: http://plnkr.co/edit/0W3ZviEVSWO3hJB7PFXd?p=preview
[13:51:32] *** jk-5 is now known as jk-5|gone
[13:52:07] *** jumpstracks has joined #angularjs
[13:52:08] *** kennbrodhagen has joined #angularjs
[13:52:15] <Foxandxss> You need an ng-model per input
[13:52:40] *** dariocravero has quit IRC
[13:53:17] *** danielpquinn has quit IRC
[13:53:18] <Foxandxss> Al`: yes, that is not supported
[13:53:55] *** senayar has joined #angularjs
[13:54:33] *** SpearThruster has quit IRC
[13:54:47] *** Milanito has quit IRC
[13:54:57] *** Milanito has joined #angularjs
[13:56:07] <Al`> shit
[13:56:21] <Al`> well I'm incredibly confused about how I can do this then
[13:56:28] <Al`> what would you recommend?
[13:56:35] *** SpearThruster has joined #angularjs
[13:56:46] * sacho raises hand
[13:56:59] *** Daven__ has joined #angularjs
[13:59:28] *** Sakurazaki is now known as Sakurazaki|off
[13:59:36] *** DrMabuse has quit IRC
[14:00:24] *** kroogs has joined #angularjs
[14:00:45] *** tarnus has joined #angularjs
[14:01:24] <Al`> c'mon sacho, spit it out :-)
[14:01:33] <Al`> because that solution is based off what caitp recommended
[14:01:45] <Al`> unless I've massively misinterpeted it somehow
[14:01:51] <sacho> well, you're still not changing the form directive
[14:01:53] *** Sakurazaki|off is now known as Sakurazaki
[14:02:04] <sacho> really, one solution would be to just not use the form directive for this at all
[14:02:05] *** anjumkaiser1 has quit IRC
[14:02:17] <sacho> how much usefulness are you getting out of it?
[14:02:26] <Al`> I just want to use the simplest solution
[14:02:33] *** dariocravero has joined #angularjs
[14:02:35] <Al`> none atm because it's not working :-)
[14:02:39] <sacho> well, the simplest in this case is bascailly not using the form
[14:02:44] <sacho> *basically
[14:02:50] *** tfennelly has quit IRC
[14:02:57] <Al`> so what would you do instead?
[14:03:19] <sacho> I dunno, what do you want to do with the data from the form?
[14:03:22] <raijin> argh
[14:03:52] <Al`> well to describe the problem in more detail
[14:04:04] <Al`> that checkbox directive is a reusable component that's being used across a large project I'm working on
[14:04:19] <Al`> so there's a very high chance the other devs will be using it on forms for their solution
[14:04:28] <Al`> so I have to be able to cater for it I guess
[14:04:49] <Al`> speaking to one of the more knowledgable devs in our team, he mentioned we could update the name in the compile step of the directive
[14:05:03] <Al`> I don't know if that's an option? Although you mentioned it wouldn't make a difference earlier I think?
[14:05:09] *** kroogs has quit IRC
[14:05:10] <raijin> is it possible for text in a view to be inline editable via mezzanine
[14:05:35] *** Reskp has joined #angularjs
[14:06:29] <Foxandxss> Al`: caitp has a hack for that indeed
[14:06:33] <Foxandxss> to provide interpolation to name
[14:07:02] *** bayousoft has joined #angularjs
[14:07:16] <Al`> yea that's what I tried to base my solution on
[14:07:25] <Al`> well i say 'base my solution'
[14:07:31] <Al`> i just jammed what she wrote into it :-)
[14:08:02] <Al`> but it's not working correctly in what I have.. http://plnkr.co/edit/0W3ZviEVSWO3hJB7PFXd?p=preview
[14:08:23] <Foxandxss> I don't see her hack
[14:08:28] <Foxandxss> which was a couple of decorators IIRC
[14:08:44] <Al`> this is hers: http://plnkr.co/edit/hSMzWC?p=preview
[14:09:12] <Al`> and I've taken the formDirective decorator
[14:09:13] *** motionman has quit IRC
[14:09:31] <Al`> ah christ
[14:09:35] <Al`> it hasn't updated
[14:09:38] <Al`> sec
[14:09:58] <Al`> sorry, /this/ is what I have: http://plnkr.co/edit/0W3ZviEVSWO3hJB7PFXd?p=preview
[14:10:01] <Al`> with her hack in :-)
[14:10:04] <Al`> it wasn't saved
[14:10:39] *** jk-5|gone is now known as jk-5
[14:11:05] <Foxandxss> why you added just one of them?
[14:11:08] <Foxandxss> and why formDirective?
[14:11:26] <Al`> because in my situation I don't need the model one I don't think
[14:11:32] *** arizzo has joined #angularjs
[14:11:32] <sacho> weird
[14:11:41] <Al`> I only need the one that deals with forms
[14:12:08] *** jumpstracks has quit IRC
[14:12:21] *** Nijikokun has quit IRC
[14:14:21] *** patrickc_ has joined #angularjs
[14:15:01] *** fl0ppy has joined #angularjs
[14:15:12] *** earthquake has quit IRC
[14:15:23] *** ckboii89 has joined #angularjs
[14:16:08] *** nodweber has quit IRC
[14:16:46] *** fry has joined #angularjs
[14:17:07] *** fry has quit IRC
[14:17:45] <Foxandxss> Since I am the fortune cookie
[14:17:55] <Foxandxss> I am going to open one, seems to be for Al`
[14:18:02] <Foxandxss> "Don't apply a hack before understanding it"
[14:18:07] <Foxandxss> ouch :P
[14:18:54] *** patrickc_ has quit IRC
[14:19:32] *** ckboii89 has quit IRC
[14:20:11] *** m____s has joined #angularjs
[14:20:51] <sacho> Al`, you need the second one as well
[14:20:54] <sacho> the ng-model one
[14:20:55] <Foxandxss> No
[14:21:02] <Foxandxss> you only need the other
[14:21:09] <sacho> well, yeah
[14:21:17] <sacho> the formDirective one is for a dynamic form name
[14:21:18] <Foxandxss> that is what the fortune cookie said
[14:21:25] *** DexterTheDragon has joined #angularjs
[14:21:31] *** dbouwman has joined #angularjs
[14:21:47] * sacho has actually never seen how the form directive works, so
[14:21:59] <sacho> I just assumed the inputs were using the form's controller, or something
[14:22:35] *** tfennelly has joined #angularjs
[14:22:38] *** Sijdesign has joined #angularjs
[14:22:51] <Foxandxss> Al`: http://plnkr.co/edit/ftbvLQZPUZDOIqA3IdEn?p=preview
[14:24:01] *** tfennelly has quit IRC
[14:24:38] *** wa5ted has joined #angularjs
[14:25:00] *** storkme has joined #angularjs
[14:25:11] <sacho> (= binds to parent scope, @ to attributes)
[14:25:32] <Foxandxss> uhm?
[14:25:44] *** dbouwman has quit IRC
[14:26:27] <sacho> his first plnkr had ='s
[14:26:32] <sacho> well, at least the one I had opened
[14:26:47] *** dariocravero has quit IRC
[14:26:59] <sacho> I was just pointing out you changed those as well :)
[14:27:11] *** Willow has joined #angularjs
[14:27:41] *** nodweber has joined #angularjs
[14:28:33] *** tfennelly has joined #angularjs
[14:29:43] <orion1111> I use cookies to store data. Data is retained when I close one tab open new tab. But if I close FireFox and open again, data retrieved from cookie doesn't exist anymore.
[14:29:57] <orion1111> Is this browser issue?
[14:30:30] *** ngoyal has joined #angularjs
[14:30:51] *** phooby has left #angularjs
[14:30:55] <Foxandxss> sacho: I changed that, makes more sense to me
[14:30:58] <storkme> in my application I'm using Restangular to query the backend for some data based on the model in a drop down. When the drop down changes, I make a new Restangular query to get a new set of data with a different parameter. How can I bind my controller to this dynamic data set?
[14:31:08] <Foxandxss> orion1111: are those session cookies?
[14:31:10] <sacho> Foxandxss, of course, especially since the other one doesnt work (he's passing all those as attributes)
[14:31:42] <orion1111> Foxandxss: app.run(function($rootScope, Person, $cookies) - I use variable $cookies
[14:32:03] <PokerAA> guys my angular breaks after using directive which using jquery appendTo... how can I solve this?
[14:32:11] <Foxandxss> orion1111: I never worked with $cookies sorry
[14:32:23] <Foxandxss> but session cookies will disappear if you close the browser
[14:32:38] *** InezK_away is now known as InezK
[14:32:39] <PokerAA> its stops updating its scopes :-/
[14:32:52] <orion1111> is there a way to retain data after closing and reopening site?
[14:32:59] *** ngoyal has quit IRC
[14:33:01] *** ngoyal_ has joined #angularjs
[14:33:03] <orion1111> (I mean close/reopen window)
[14:33:10] <Foxandxss> LocalStorage
[14:33:43] <Foxandxss> PokerAA: if we have to guess what you did, you can be there all they long
[14:33:54] <Foxandxss> all day*
[14:34:14] <sacho> orion1111, the cookies that angular sets are set to expire immediately
[14:34:21] <sacho> (via $cookies)
[14:35:03] *** peldan has quit IRC
[14:35:06] <PokerAA> just took a plugin called jquery foggy and made it a directive...
[14:35:25] <sacho> nice.
[14:35:30] *** peldan has joined #angularjs
[14:36:09] <PokerAA> but I just realised it is doing its effect by using appendTo
[14:36:10] *** nodweber has quit IRC
[14:36:36] <PokerAA> so it breaks the angular variables in the div being appended
[14:36:46] *** dariocravero has joined #angularjs
[14:37:08] *** bel3atar has quit IRC
[14:37:35] *** drej has quit IRC
[14:37:56] *** ngoyal_ has quit IRC
[14:38:05] *** dariocravero has quit IRC
[14:38:12] *** jharbaugh has joined #angularjs
[14:39:16] *** OdinIncarnate has joined #angularjs
[14:39:33] *** peldan has quit IRC
[14:40:07] *** Dekans has joined #angularjs
[14:40:26] *** hannesvdvreken has quit IRC
[14:42:03] *** SpearThruster has quit IRC
[14:42:08] *** InezK is now known as InezK_away
[14:42:27] *** hannesvdvreken has joined #angularjs
[14:42:36] *** jharbaugh has quit IRC
[14:43:33] *** Xethron has quit IRC
[14:43:35] *** hannesvdvreken has quit IRC
[14:44:18] *** tfennelly has quit IRC
[14:44:31] <orion1111> I need LocalStorage tutorial, that works. Please, anyone?
[14:44:52] *** moritzs has joined #angularjs
[14:46:27] <Foxandxss> it is just 2-3 methods...
[14:46:30] *** gordroid has quit IRC
[14:46:32] <Foxandxss> add something, read something
[14:46:54] *** gordroid has joined #angularjs
[14:48:05] <orion1111> When I add 'localStorage' instead of 'ngCookies', it outputs blank page. This: var app = angular.module("MyApp", ['ngRoute', 'localStorage']).
[14:48:07] *** bayousoft has quit IRC
[14:49:06] <orion1111> also tried with 'LocalStorageModule'
[14:49:24] *** danielpquinn has joined #angularjs
[14:49:39] *** ngoyal has joined #angularjs
[14:50:46] *** hannesvdvreken has joined #angularjs
[14:51:33] *** gordroid has quit IRC
[14:52:27] *** Milanito has quit IRC
[14:52:58] *** one_zero has quit IRC
[14:53:18] <Foxandxss> orion1111: local store comes with the browser
[14:53:22] <Foxandxss> it is under window.
[14:53:28] <Foxandxss> is not an angular module or stuff like that
[14:54:20] *** danielpquinn has quit IRC
[14:54:54] *** Ethix has joined #angularjs
[14:54:57] *** ngoyal has quit IRC
[14:56:37] *** lw has joined #angularjs
[14:56:42] *** hannesvdvreken has quit IRC
[14:57:05] *** dylanlindgren has quit IRC
[14:57:27] <orion1111> I got it working
[14:58:02] *** FunnyLookinHat has joined #angularjs
[14:58:22] *** Xethron has joined #angularjs
[14:58:27] <orion1111> it works nicely now
[14:59:19] *** jumpstracks has joined #angularjs
[14:59:25] *** mennea_ has joined #angularjs
[14:59:28] *** dylanlindgren has joined #angularjs
[14:59:32] *** Milanito has joined #angularjs
[15:00:09] *** Siecje has joined #angularjs
[15:00:12] *** mennea__ has joined #angularjs
[15:00:14] *** ckboii89 has joined #angularjs
[15:00:16] *** kroogs has joined #angularjs
[15:00:18] *** DrMabuse has joined #angularjs
[15:00:56] *** gauravsaini03 has quit IRC
[15:01:16] *** mennea has quit IRC
[15:01:23] *** anjumkaiser has joined #angularjs
[15:01:41] *** CptChaos has joined #angularjs
[15:03:33] *** kennbrodhagen has quit IRC
[15:03:57] *** mennea_ has quit IRC
[15:04:20] *** ckboii89 has quit IRC
[15:05:20] *** mennea__ has quit IRC
[15:05:29] *** DrMabuse has quit IRC
[15:05:45] *** kroogs has quit IRC
[15:06:19] *** lw has quit IRC
[15:06:48] *** matiasow has joined #angularjs
[15:07:41] *** mennea has joined #angularjs
[15:07:46] *** jumpstracks has quit IRC
[15:07:59] *** motionman has joined #angularjs
[15:09:58] *** arizzo has quit IRC
[15:10:24] *** Nek has quit IRC
[15:10:33] *** evilaliv3 has quit IRC
[15:10:51] *** IJNX has quit IRC
[15:11:03] *** pdillinger has joined #angularjs
[15:11:17] *** ceephax has quit IRC
[15:11:58] *** Milanito has quit IRC
[15:12:08] *** fixl has quit IRC
[15:13:55] *** arizzo has joined #angularjs
[15:14:28] *** gordroid has joined #angularjs
[15:15:00] *** gordroidJS has joined #angularjs
[15:15:01] *** dylanlindgren has quit IRC
[15:15:04] *** patrickc_ has joined #angularjs
[15:15:22] *** dylukes has joined #angularjs
[15:15:40] *** jdj_dk has joined #angularjs
[15:15:49] *** IJNX has joined #angularjs
[15:15:57] *** pdillinger has quit IRC
[15:16:06] *** nodweber has joined #angularjs
[15:16:46] *** enxtur has joined #angularjs
[15:17:06] *** mzehrer_ has joined #angularjs
[15:18:07] *** Zerot has quit IRC
[15:18:14] *** hannesvdvreken has joined #angularjs
[15:18:33] *** gordroid has quit IRC
[15:18:34] *** mewm has quit IRC
[15:19:33] *** patrickc_ has quit IRC
[15:19:38] *** gordroidJS has quit IRC
[15:20:09] *** jdj_dk has quit IRC
[15:20:43] *** Siecje1 has joined #angularjs
[15:21:20] *** enxtur has quit IRC
[15:21:56] *** caitp has quit IRC
[15:22:15] *** dbouwman has joined #angularjs
[15:22:23] *** wartdev has joined #angularjs
[15:22:26] *** caitp has joined #angularjs
[15:22:36] *** wartdev has quit IRC
[15:22:48] *** Siecje has quit IRC
[15:22:50] *** bayousoft has joined #angularjs
[15:22:54] *** dylanlindgren has joined #angularjs
[15:26:34] *** kennbrodhagen has joined #angularjs
[15:26:35] *** quantax- has joined #angularjs
[15:27:02] *** dbouwman has quit IRC
[15:28:50] *** kennbrodhagen has quit IRC
[15:31:32] *** patrickc_ has joined #angularjs
[15:32:32] *** patrickc_ has quit IRC
[15:33:00] *** FunnyLookinHat has quit IRC
[15:33:08] *** patrickc_ has joined #angularjs
[15:37:12] *** AngularUI has joined #angularjs
[15:37:12] <AngularUI> [bootstrap] MrOrz opened pull request #2425: fix(modal): port of @thcipriani's solution to modal body shift (master...modal-scrollbar) http://git.io/4X7Cvw
[15:37:12] *** AngularUI has left #angularjs
[15:37:28] *** fl0ppy has quit IRC
[15:37:39] *** patrickc_ has quit IRC
[15:38:33] *** TorchDragon has joined #angularjs
[15:39:04] *** hannesvdvreken has quit IRC
[15:39:08] *** jharbaugh has joined #angularjs
[15:40:40] *** bayousoft has quit IRC
[15:41:08] *** caitp has quit IRC
[15:41:12] *** hannesvdvreken has joined #angularjs
[15:41:26] *** arizzo_ has joined #angularjs
[15:42:21] *** arizzo has quit IRC
[15:42:46] *** TorchDragon has quit IRC
[15:42:57] *** Zerot has joined #angularjs
[15:43:33] *** jharbaugh has quit IRC
[15:43:36] *** patrickc_ has joined #angularjs
[15:44:29] *** arizzo has joined #angularjs
[15:44:51] *** zikomiko has joined #angularjs
[15:45:08] *** mennea has quit IRC
[15:45:25] <zikomiko> hi. anyone has an experience with http://blueimp.github.io/jQuery-File-Upload/ ?
[15:45:45] *** hannesvdvreken has quit IRC
[15:46:58] *** marr has quit IRC
[15:48:33] *** arizzo_ has quit IRC
[15:49:00] *** sacho has quit IRC
[15:49:23] *** sacho has joined #angularjs
[15:49:31] *** mercwithamouth has joined #angularjs
[15:49:50] *** toinbis has joined #angularjs
[15:50:11] *** danielpquinn has joined #angularjs
[15:53:24] <zikomiko> anyone there?
[15:54:53] *** danielpquinn has quit IRC
[15:55:58] *** dylukes has quit IRC
[15:57:03] *** dylanlindgren has quit IRC
[15:58:11] *** boptop has joined #angularjs
[15:58:57] *** mercwith1mouth has joined #angularjs
[15:58:59] *** wxo has joined #angularjs
[15:59:10] <Foxandxss> Sunday
[15:59:52] *** patrickc_ has quit IRC
[16:00:14] *** dylanlindgren has joined #angularjs
[16:00:21] *** IJNX has quit IRC
[16:00:43] *** kroogs has joined #angularjs
[16:00:53] *** mercwithamouth has quit IRC
[16:00:55] <zikomiko> oh, right
[16:01:01] *** Willow has quit IRC
[16:01:06] *** ckboii89 has joined #angularjs
[16:01:06] *** DrMabuse has joined #angularjs
[16:01:11] <zikomiko> and what about you? :)
[16:01:35] *** Willow has joined #angularjs
[16:02:31] <Al`> Foxandxss: thanks for your solution - i had to afk a bit
[16:02:51] <Foxandxss> zikomiko: also sunday here :P
[16:02:59] <Al`> but hmm, I thought I needed the form decorator since it was the form that wasn't interpolating the name?
[16:03:03] <zikomiko> hhehe
[16:03:14] <Foxandxss> also, I have no experience with that
[16:03:31] <zikomiko> ok thank you anyway
[16:04:05] *** bmac has joined #angularjs
[16:04:41] <Foxandxss> also, there are some angular solutions for upload, I would check that
[16:05:05] <zikomiko> I managed to use this solution but PUT action doesn't work for me for some reason
[16:05:08] *** ckboii89 has quit IRC
[16:05:16] *** kroogs has quit IRC
[16:05:42] *** Willow has quit IRC
[16:06:17] *** DrMabuse has quit IRC
[16:07:05] *** hswolff has joined #angularjs
[16:07:26] *** caitp has joined #angularjs
[16:08:14] *** arizzo_ has joined #angularjs
[16:09:07] *** vonnegut has joined #angularjs
[16:10:28] *** pdillinger has joined #angularjs
[16:11:56] *** caitp has quit IRC
[16:11:59] *** arizzo has quit IRC
[16:12:06] *** bmac has quit IRC
[16:13:19] *** bmac has joined #angularjs
[16:13:35] *** gordroid has joined #angularjs
[16:13:40] *** mac_ified has joined #angularjs
[16:13:41] *** feelfine has quit IRC
[16:14:19] *** boptop has quit IRC
[16:15:33] *** davi has joined #angularjs
[16:16:04] *** balboah has joined #angularjs
[16:16:35] *** Tomdarkness has joined #angularjs
[16:16:37] *** Jon30 has joined #angularjs
[16:17:39] *** mercwithamouth has joined #angularjs
[16:18:08] *** feelfine has joined #angularjs
[16:18:11] *** gordroid has quit IRC
[16:18:57] *** mercwith1mouth has quit IRC
[16:19:33] *** motionman has quit IRC
[16:19:53] *** Sijdesign has quit IRC
[16:22:08] *** jk-5 has quit IRC
[16:23:07] *** dbouwman has joined #angularjs
[16:24:37] *** bdk93 has joined #angularjs
[16:25:38] *** anjumkaiser has quit IRC
[16:26:52] *** jk-5 has joined #angularjs
[16:27:04] *** Alina-malina has quit IRC
[16:27:28] *** bbankes has joined #angularjs
[16:27:33] *** dbouwman has quit IRC
[16:28:06] *** Alina-malina has joined #angularjs
[16:29:10] *** davi has quit IRC
[16:29:13] *** gordroid has joined #angularjs
[16:31:42] *** mercwithamouth has quit IRC
[16:32:04] *** mercwithamouth has joined #angularjs
[16:32:09] *** Sgeo_ has joined #angularjs
[16:32:14] *** sacho_ has joined #angularjs
[16:32:20] *** schimmi has quit IRC
[16:32:22] *** bmac has quit IRC
[16:32:24] *** xaxisx_ has joined #angularjs
[16:32:27] *** schimmi has joined #angularjs
[16:32:29] *** night-owl-deskto has joined #angularjs
[16:32:42] *** fedenunez has joined #angularjs
[16:32:43] *** mac_ifie_ has joined #angularjs
[16:33:26] *** DrMabuse has joined #angularjs
[16:33:36] *** dariocravero has joined #angularjs
[16:33:41] *** jstroem_ has joined #angularjs
[16:33:50] *** FunnyLookinHat has joined #angularjs
[16:34:02] *** InezK_away is now known as InezK
[16:34:10] *** gordroid has quit IRC
[16:34:11] *** RandomStranger has quit IRC
[16:34:13] *** SpearThruster has joined #angularjs
[16:34:32] *** chrisbirk has joined #angularjs
[16:34:59] *** jshultz has joined #angularjs
[16:35:04] *** FunnyLookinHat has quit IRC
[16:35:39] *** zenodub_ has joined #angularjs
[16:35:43] *** mikaeldice_ has joined #angularjs
[16:36:41] *** RandomStranger has joined #angularjs
[16:38:20] *** DrMabuse has quit IRC
[16:39:03] *** Captain_Picard has joined #angularjs
[16:39:42] *** chrisbirk has quit IRC
[16:39:43] *** jharbaugh has joined #angularjs
[16:39:44] *** tomzx has joined #angularjs
[16:40:19] *** fl0ppy has joined #angularjs
[16:40:30] *** lq_ has joined #angularjs
[16:40:53] *** johnstorey_ has joined #angularjs
[16:41:09] *** Milanito has joined #angularjs
[16:41:56] *** mac_ified has quit IRC
[16:41:56] *** sacho has quit IRC
[16:41:58] *** OdinIncarnate has quit IRC
[16:41:58] *** jstroem has quit IRC
[16:41:59] *** RedOrangeZ has quit IRC
[16:41:59] *** fg3 has quit IRC
[16:42:00] *** noobee has quit IRC
[16:42:00] *** tomzx`afk has quit IRC
[16:42:01] *** xaxisx has quit IRC
[16:42:01] *** Sgeo has quit IRC
[16:42:02] *** night-owl has quit IRC
[16:42:03] *** zenodub has quit IRC
[16:42:03] *** alt_qq has quit IRC
[16:42:04] *** johnstorey has quit IRC
[16:42:04] *** Mrkol has quit IRC
[16:42:05] *** mchapman has quit IRC
[16:42:06] *** mikaeldice has quit IRC
[16:42:07] *** oddalot has quit IRC
[16:42:07] *** lq has quit IRC
[16:42:08] *** monokrome has quit IRC
[16:42:09] *** aarellano has quit IRC
[16:42:09] *** lq_ is now known as lq
[16:42:10] *** johnstorey_ is now known as johnstorey
[16:42:32] *** Mrkol has joined #angularjs
[16:44:17] *** jharbaugh has quit IRC
[16:44:18] *** disorder20 has quit IRC
[16:44:29] *** chrisbirk has joined #angularjs
[16:44:44] *** peldan has joined #angularjs
[16:45:11] *** dylanlindgren has quit IRC
[16:45:14] *** InezK is now known as InezK_away
[16:45:38] *** disorder20 has joined #angularjs
[16:46:13] *** Tomdarkness has quit IRC
[16:46:13] *** mercwithamouth has quit IRC
[16:47:05] *** mercwithamouth has joined #angularjs
[16:47:36] *** dylanlindgren has joined #angularjs
[16:47:52] *** oddalot has joined #angularjs
[16:48:04] *** bdk93 has quit IRC
[16:48:17] *** Milanito has quit IRC
[16:48:36] *** mchapman has joined #angularjs
[16:48:43] *** InezK_away is now known as InezK
[16:49:11] *** chrisbirk has quit IRC
[16:49:59] *** peldan has quit IRC
[16:50:04] *** bmac has joined #angularjs
[16:50:21] *** monokrome has joined #angularjs
[16:50:36] *** ngoyal has joined #angularjs
[16:51:00] *** danielpquinn has joined #angularjs
[16:53:58] *** mercwithamouth has quit IRC
[16:54:25] *** mercwithamouth has joined #angularjs
[16:54:36] *** nodweber has quit IRC
[16:54:43] *** shr3djs has quit IRC
[16:55:01] *** mcgwier has quit IRC
[16:55:04] *** ngoyal has quit IRC
[16:55:11] *** nodweber has joined #angularjs
[16:55:30] *** danielpquinn has quit IRC
[16:56:03] *** Ymesio has joined #angularjs
[16:56:39] *** dariocravero has quit IRC
[16:57:21] *** matiasow has quit IRC
[16:57:33] *** DrJae has quit IRC
[16:57:55] *** mennea has joined #angularjs
[16:57:59] *** wewerka has joined #angularjs
[16:58:49] *** kalehv has joined #angularjs
[16:59:00] <Moult> my service uses $http. is it recommended to handle the .success() in the controller that uses the service, or the service itself?
[16:59:34] *** nodweber has quit IRC
[17:00:03] *** Captain_Picard has quit IRC
[17:00:21] *** kroogs has joined #angularjs
[17:01:09] *** anjumkaiser has joined #angularjs
[17:01:28] *** seydoggy has joined #angularjs
[17:01:40] *** ckboii89 has joined #angularjs
[17:01:48] *** CptChaos has quit IRC
[17:03:09] *** nodweber has joined #angularjs
[17:03:22] *** hychen has joined #angularjs
[17:03:45] *** jdj_dk has joined #angularjs
[17:04:50] *** deear has joined #angularjs
[17:05:09] *** kroogs has quit IRC
[17:05:37] *** bbankes_ has joined #angularjs
[17:05:45] *** MathiasM has joined #angularjs
[17:05:56] *** ckboii89 has quit IRC
[17:06:58] *** dylanlindgren has quit IRC
[17:08:26] *** caitp has joined #angularjs
[17:08:33] *** jdj_dk has quit IRC
[17:08:36] *** tham has joined #angularjs
[17:08:48] *** gigel has joined #angularjs
[17:09:08] *** mercwithamouth has quit IRC
[17:09:10] <gigel> aaaaaa
[17:09:38] *** gnar_matix has joined #angularjs
[17:09:40] <gigel> is anybody here?
[17:09:47] *** MathiasM has quit IRC
[17:09:57] *** bbankes has quit IRC
[17:10:05] <Moult> gigel: yes
[17:10:57] *** mfunkie has joined #angularjs
[17:11:02] *** gordroid has joined #angularjs
[17:12:04] *** night-owl-MBP has joined #angularjs
[17:12:11] *** gigel has left #angularjs
[17:12:44] *** caitp has quit IRC
[17:14:07] *** nodweber has quit IRC
[17:15:33] *** gordroid has quit IRC
[17:16:13] *** Nizumzen has joined #angularjs
[17:18:32] *** sheperson has joined #angularjs
[17:19:30] <deear> yup
[17:19:31] *** fold has joined #angularjs
[17:19:32] *** mercwithamouth has joined #angularjs
[17:19:35] *** kalehv has quit IRC
[17:20:30] *** drej has joined #angularjs
[17:20:49] *** tfennelly has joined #angularjs
[17:21:52] *** deear has quit IRC
[17:22:39] <aviraldg> is there, by any chance something like ngClass, but for attributes?
[17:23:03] *** Necko has joined #angularjs
[17:23:54] *** dbouwman has joined #angularjs
[17:24:39] *** Necko has quit IRC
[17:25:26] *** ngoyal has joined #angularjs
[17:25:33] <Siecje1> I am getting a CORS error. In angular is this all I need to do? https://dpaste.de/ZEj7
[17:25:43] *** sigurding has joined #angularjs
[17:26:04] *** tfennelly has quit IRC
[17:26:07] *** Tomdarkness has joined #angularjs
[17:27:59] *** MTGap has joined #angularjs
[17:28:19] *** night-owl-MBP has quit IRC
[17:28:21] *** dbouwman has quit IRC
[17:28:48] *** nipster has quit IRC
[17:28:48] <reduce> The book pro angularjs suggests implementing binding in a form control directive by using require:ngModel, and then overriding the functions on its controller in the link function. I have got it working on my directive by simply setting scope to { ngModel: '=' }), then in my template setting ng-model="ngModel" on the input element. My way seems to work and its taken from my understanding of a few tutorials on the net. Why is the book suggesting a
[17:28:49] <reduce> more complicated approach? What has anyone else done?
[17:28:56] <chexxor> Siecje1, I think we only use `$httpProvider.defaults.useXDomain = true;`
[17:29:34] *** kennbrodhagen has joined #angularjs
[17:31:20] *** kanzure has joined #angularjs
[17:31:21] *** disorder20 has quit IRC
[17:31:34] *** narutimateum has joined #angularjs
[17:31:53] *** patrickarlt has joined #angularjs
[17:32:06] *** disorder20 has joined #angularjs
[17:32:25] *** Willow has joined #angularjs
[17:32:52] <reduce> The book pro angularjs suggests implementing binding in a form control directive by using require:ngModel, and then overriding the functions on its controller in the link function. I have got it working on my directive by simply setting scope to { ngModel: '=' }), then in my template setting ng-model="ngModel" on the input element. My way seems to work and its taken from my understanding of a few tutorials on the net. Why is the book suggesting a
[17:32:52] <reduce> more complicated approach? What has anyone else done?
[17:32:59] <reduce> oops sorry double post
[17:33:16] <reduce> but the question still stands :)
[17:33:43] *** anjumkaiser has quit IRC
[17:34:03] *** kennbrodhagen has quit IRC
[17:34:10] *** DrMabuse has joined #angularjs
[17:35:09] *** InezK is now known as InezK_away
[17:35:37] *** endash has joined #angularjs
[17:36:15] *** aarellano has joined #angularjs
[17:36:16] *** alt_qq has joined #angularjs
[17:36:36] <aviraldg> Siecje1, jsonp an option?
[17:36:54] *** mercwithamouth has quit IRC
[17:37:15] <Siecje1> aviraldg: jsonp? It is sending an OPTION request and failing
[17:37:16] *** mercwithamouth has joined #angularjs
[17:37:20] *** peldan has joined #angularjs
[17:37:21] <wdom> l/win q1q1
[17:37:42] <wdom> uups
[17:37:48] <aviraldg> ?
[17:38:04] <wdom> mobile irc typo
[17:38:34] *** DrMabuse has quit IRC
[17:39:18] *** scmx has joined #angularjs
[17:39:39] *** daivyk has joined #angularjs
[17:40:31] *** jharbaugh has joined #angularjs
[17:40:58] *** okdamn has joined #angularjs
[17:41:07] <okdamn> guys anyone used/using phonegap+angularjs ?
[17:41:26] <Moult> okdamn: no. build it native.
[17:41:44] <okdamn> Moult: uh?
[17:41:52] <aviraldg> Siecje1, https://github.com/angular/angular.js/search?q=useXDomain&ref=cmdform - hmm... I've never had that issue
[17:42:05] <okdamn> Moult: native means 2/3 core code bases
[17:42:09] <Moult> okdamn: don't use phonegap, especially if you're thinking of using it with angularjs
[17:42:18] <okdamn> Moult: why
[17:42:27] <reduce> meh, docs suggest overriding the ngModel functions, looks like i fell on the wrong google results first time round
[17:42:50] <Moult> okdamn: slow
[17:43:02] *** bayousoft has joined #angularjs
[17:43:47] *** OliverTYnes is now known as OliverTynes
[17:44:19] <okdamn> Moult: why so many people using it so
[17:45:05] *** jharbaugh has quit IRC
[17:45:21] *** bphogan_afk is now known as bphogan
[17:45:53] *** nipster has joined #angularjs
[17:45:55] *** patrickarlt has quit IRC
[17:47:51] <Moult> okdamn: because it's easy?
[17:48:15] <okdamn> Moult: cant catch you you dont do easy things if they dont work nope?
[17:49:13] <Moult> okdamn: why do people use wordpress? why do people use windows server? why do people use internet explorer?
[17:49:25] *** eutheria has joined #angularjs
[17:49:33] *** nipster has quit IRC
[17:49:48] <okdamn> wordpress can be fast tho
[17:49:52] <okdamn> windows server tho
[17:49:53] <okdamn> IE nope
[17:49:58] *** dashed has joined #angularjs
[17:50:23] <Moult> okdamn: do whatever you want :)
[17:50:43] <okdamn> lol k but i mean phonegap is slow or phonegap +angular for oyu?
[17:51:27] *** subnl2 has joined #angularjs
[17:51:31] <okdamn> then for developing ios apps native you need $90 on the fly, while with phonegap and webviews builders you dont need :P
[17:51:39] *** danielpquinn has joined #angularjs
[17:51:40] *** subnl2 has left #angularjs
[17:51:47] <Moult> okdamn: do whatever you want :)
[17:51:58] <okdamn> lol ok sir
[17:52:53] <zikomiko> Moult: Are you experienced with blueimp? http://blueimp.github.io/jQuery-File-Upload/basic.html
[17:53:18] *** gnar_matix has quit IRC
[17:53:28] *** sheperson has quit IRC
[17:54:41] *** aba_ has joined #angularjs
[17:54:43] *** nodweber has joined #angularjs
[17:55:06] <zikomiko> I meant to blueimp/jQuery-File-Upload
[17:55:25] *** gnar_matix has joined #angularjs
[17:55:33] *** fold has quit IRC
[17:55:39] *** aba_ has quit IRC
[17:55:46] *** okdamn has quit IRC
[17:56:09] *** wxo has quit IRC
[17:56:23] *** danielpquinn has quit IRC
[17:56:38] *** pdillinger has quit IRC
[17:58:37] *** bayousoft has quit IRC
[17:59:09] *** mfunkie has quit IRC
[18:00:07] *** kroogs has joined #angularjs
[18:00:35] *** zikomiko has quit IRC
[18:00:35] *** wxo has joined #angularjs
[18:01:12] *** anjumkaiser has joined #angularjs
[18:01:12] *** patrickc_ has joined #angularjs
[18:01:52] *** hswolff has quit IRC
[18:02:06] *** bmac has quit IRC
[18:02:33] *** jumpstracks has joined #angularjs
[18:02:38] *** ckboii89 has joined #angularjs
[18:02:49] *** kennbrodhagen has joined #angularjs
[18:03:09] *** shaisnir has joined #angularjs
[18:03:28] *** ngoyal has quit IRC
[18:04:03] *** ngoyal has joined #angularjs
[18:04:28] *** ckboii89_ has joined #angularjs
[18:04:44] *** bbankes_ has quit IRC
[18:05:03] *** kroogs has quit IRC
[18:05:23] *** InezK_away is now known as InezK
[18:05:44] *** patrickc_ has quit IRC
[18:06:28] *** toinbis has quit IRC
[18:06:36] *** mfunkie has joined #angularjs
[18:06:44] *** ckboii89 has quit IRC
[18:07:21] <shaisnir> Hey guys, I created a directive to help with matching a url with an element (add 'active' class to the element). It really helped me, hope you'd like it: https://github.com/lonormaly/match-url
[18:08:06] *** shaisnir has quit IRC
[18:08:21] *** ngoyal has quit IRC
[18:08:35] *** gordroid has joined #angularjs
[18:08:44] *** ckboii89_ has quit IRC
[18:08:47] *** arizzo_ has quit IRC
[18:08:59] *** feelfine has quit IRC
[18:09:05] *** caitp has joined #angularjs
[18:09:21] *** arizzo has joined #angularjs
[18:09:53] *** ad_libr has joined #angularjs
[18:10:24] *** drej has quit IRC
[18:10:42] *** drej has joined #angularjs
[18:10:47] *** feelfine has joined #angularjs
[18:11:07] *** seydoggy has quit IRC
[18:11:37] *** enherit has joined #angularjs
[18:11:40] *** dashed has quit IRC
[18:11:44] *** seydoggy has joined #angularjs
[18:12:33] *** scmx has quit IRC
[18:12:53] *** gordroid has quit IRC
[18:13:32] *** caitp has quit IRC
[18:15:01] *** Shrooms has joined #angularjs
[18:15:09] *** jumpstracks has quit IRC
[18:15:10] *** fg3_ has joined #angularjs
[18:16:04] *** fold has joined #angularjs
[18:16:33] *** seydoggy has quit IRC
[18:16:57] *** fl0ppy has quit IRC
[18:18:15] *** tk has quit IRC
[18:18:36] *** seydoggy has joined #angularjs
[18:19:22] *** InezK is now known as InezK_away
[18:19:26] *** ninkotech_ has quit IRC
[18:19:39] *** anjumkaiser has quit IRC
[18:19:46] *** ninkotech_ has joined #angularjs
[18:20:39] *** eutheria has quit IRC
[18:21:18] *** earthquake has joined #angularjs
[18:22:49] *** matiasow has joined #angularjs
[18:23:14] *** pdillinger has joined #angularjs
[18:23:34] *** LuxuryMode has joined #angularjs
[18:23:43] *** arizzo has quit IRC
[18:24:28] *** arizzo has joined #angularjs
[18:24:49] *** dbouwman has joined #angularjs
[18:28:01] *** Kingdutch has joined #angularjs
[18:28:34] *** arizzo has quit IRC
[18:28:34] *** pdillinger has quit IRC
[18:28:43] *** hswolff has joined #angularjs
[18:28:54] *** feelfine has quit IRC
[18:29:06] *** dbouwman has quit IRC
[18:29:12] *** arabot has joined #angularjs
[18:29:38] <Kingdutch> I installed Angular and Angular-bootstrap using bower. Added both js files (tpls) and my module as script tags and set ng-app="mymodule" with ui.bootstrap as its dependency but I receive an unstyled page (no css requests made) and no js errors. What gives?
[18:30:16] *** dsrx has left #angularjs
[18:30:20] *** sigurding has quit IRC
[18:31:30] <Kingdutch> Right so there's these 5 words that Bootstrap JS is not needed but bootstrap CSS is needed but it's not a bower dependency =|
[18:32:01] *** Johnny13371337 has joined #angularjs
[18:32:07] *** Johnny13371337 has left #angularjs
[18:32:42] *** euskadi31 has quit IRC
[18:33:04] *** euskadi31 has joined #angularjs
[18:33:37] *** danielmahon has joined #angularjs
[18:33:43] <Kingdutch> Addings bootstrap-css-only as a bower dependency would help in this regard
[18:34:04] *** arizzo has joined #angularjs
[18:34:56] *** bmac has joined #angularjs
[18:35:10] *** DrMabuse has joined #angularjs
[18:35:24] *** arizzo has quit IRC
[18:35:40] *** arizzo has joined #angularjs
[18:37:31] *** kennbrodhagen has quit IRC
[18:39:13] *** anjumkaiser has joined #angularjs
[18:39:57] *** DrMabuse has quit IRC
[18:40:28] *** TorchDragon has joined #angularjs
[18:40:47] *** jprieur has joined #angularjs
[18:41:21] *** blueadept has joined #angularjs
[18:41:28] *** jharbaugh has joined #angularjs
[18:42:50] *** klaut has joined #angularjs
[18:44:46] *** wxo has quit IRC
[18:44:47] *** TorchDragon has quit IRC
[18:45:40] *** orion1111 has quit IRC
[18:45:53] *** jharbaugh has quit IRC
[18:46:01] *** Willow has quit IRC
[18:46:04] *** Vinnyceptr has quit IRC
[18:46:29] *** Willow has joined #angularjs
[18:46:52] *** aaronmitchell has joined #angularjs
[18:48:45] *** Vinnyceptr has joined #angularjs
[18:49:30] *** MathiasM has joined #angularjs
[18:50:42] *** Willow has quit IRC
[18:51:24] *** aaronmitchell has quit IRC
[18:51:26] *** jharbaugh has joined #angularjs
[18:51:39] *** evilaliv3 has joined #angularjs
[18:51:56] *** jdj_dk has joined #angularjs
[18:52:18] *** nemothekid has joined #angularjs
[18:52:26] *** danielpquinn has joined #angularjs
[18:52:59] *** mewm has joined #angularjs
[18:53:03] *** nerdfiles has joined #angularjs
[18:53:08] *** kennbrodhagen has joined #angularjs
[18:53:15] *** Upbeat99 has joined #angularjs
[18:53:23] *** Nizumzen has quit IRC
[18:53:32] *** MathiasM has quit IRC
[18:56:23] *** KimP has joined #angularjs
[18:56:39] *** jdj_dk has quit IRC
[18:56:56] *** danielpquinn has quit IRC
[18:56:59] *** evilaliv3 has quit IRC
[18:56:59] *** kennbrodhagen has quit IRC
[18:58:46] *** noobee_ has joined #angularjs
[18:58:49] <noobee_> hello
[18:59:06] <noobee_> how can I use ng-model to create attribute of array
[18:59:08] <noobee_> nput.inline-block.w100(ng-model='building.transport[0].company', placeholder='company')
[18:59:10] <noobee_> something like this
[18:59:29] *** mercwithamouth has quit IRC
[19:00:32] *** kroogs has joined #angularjs
[19:00:32] *** DGiesen has joined #angularjs
[19:00:37] *** mercwithamouth has joined #angularjs
[19:01:09] *** anjumkaiser has quit IRC
[19:01:42] *** charuru has joined #angularjs
[19:02:04] *** IJNX has joined #angularjs
[19:02:10] *** CptChaos has joined #angularjs
[19:02:26] *** Tomdarkness has quit IRC
[19:04:11] *** tfennelly has joined #angularjs
[19:05:04] *** kroogs has quit IRC
[19:05:07] *** ckboii89 has joined #angularjs
[19:05:52] *** bayousoft has joined #angularjs
[19:06:35] *** gordroid has joined #angularjs
[19:06:58] *** bmac has quit IRC
[19:07:03] *** terrykfwong has joined #angularjs
[19:07:41] *** posty_lweis_ has left #angularjs
[19:08:27] *** liri has quit IRC
[19:09:32] *** ckboii89 has quit IRC
[19:09:40] *** matiasow has quit IRC
[19:09:46] *** chrisshattuck has joined #angularjs
[19:09:49] *** caitp has joined #angularjs
[19:10:31] <Upbeat99> Trying to learn Angular. Why doesn't the official angular seed, angular-seed on Github, have an ng-app declaration in the html? The documentation says start with this, but then doesn't do it!? It only has <div ng-view></div> in the html. Confusing.
[19:10:58] *** matiasow has joined #angularjs
[19:11:11] *** gordroid has quit IRC
[19:11:28] *** seydoggy has quit IRC
[19:12:03] *** seydoggy has joined #angularjs
[19:12:27] *** tarnus_ has joined #angularjs
[19:12:37] *** sigurding has joined #angularjs
[19:12:46] *** amedia has joined #angularjs
[19:13:01] *** ceephax has joined #angularjs
[19:13:05] *** benjf has joined #angularjs
[19:13:55] *** dc_ has joined #angularjs
[19:14:20] *** caitp has quit IRC
[19:14:23] *** tarnus has quit IRC
[19:15:33] *** nfroidure_ has quit IRC
[19:15:39] *** terrykfwong has quit IRC
[19:15:54] *** mfunkie has quit IRC
[19:16:05] *** bayousoft has quit IRC
[19:16:34] *** seydoggy has quit IRC
[19:16:48] *** tfennelly has quit IRC
[19:17:14] *** jharbaugh has quit IRC
[19:17:46] *** chrisshattuck has quit IRC
[19:17:48] *** jharbaugh has joined #angularjs
[19:18:23] *** enxtur has joined #angularjs
[19:18:31] *** blueadept has quit IRC
[19:21:15] *** aaronmitchell has joined #angularjs
[19:21:26] <Upbeat99> Trying to learn Angular. Why doesn't the official angular seed, angular-seed on Github, have an ng-app declaration in the html? The documentation says start with this, but then doesn't do it!? It only has <div ng-view></div> in the html. Confusing.
[19:21:57] *** jharbaugh has quit IRC
[19:23:04] *** enxtur has quit IRC
[19:23:16] *** tigrang has joined #angularjs
[19:23:28] *** Al` has quit IRC
[19:25:07] *** anjumkaiser has joined #angularjs
[19:25:20] *** Yancy has quit IRC
[19:25:28] *** dbouwman has joined #angularjs
[19:25:29] *** Yancy has joined #angularjs
[19:25:52] <Foxandxss> Upbeat99: ask on working days
[19:25:55] <Foxandxss> we are closed on sundays
[19:26:15] *** chrisshattuck has joined #angularjs
[19:26:32] *** cigarshark has quit IRC
[19:27:53] *** gordroid has joined #angularjs
[19:29:08] *** dc_ has quit IRC
[19:30:19] *** cigarshark has joined #angularjs
[19:30:21] *** dbouwman has quit IRC
[19:30:23] *** seydoggy has joined #angularjs
[19:30:49] <zelrik> Upbeat99, angular-seed is meh
[19:32:02] <zelrik> also, it does
[19:32:22] <zelrik> https://github.com/angular/angular-seed/blob/master/app/index.html
[19:32:23] *** gordroid has quit IRC
[19:32:35] <zelrik> ctrl+F + myApp
[19:33:18] *** chrisshattuck has quit IRC
[19:33:21] *** xaxisx_ is now known as xaxisx
[19:34:03] <chovy> its in hte html tag
[19:34:20] <Upbeat99> Ok sorry
[19:34:26] <chovy> <!--[if lt IE 10]> <p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
[19:34:45] *** dashed has joined #angularjs
[19:35:05] <zelrik> I see what you did there
[19:35:18] *** DrMabuse has joined #angularjs
[19:35:22] *** PokerAA has quit IRC
[19:36:30] *** bphogan is now known as bphogan_afk
[19:36:40] <Upbeat99> Chovy, isn't that a conditional if statement only for IE and ignored by other browsers?
[19:37:05] *** mehlah has joined #angularjs
[19:38:48] *** rawGem has joined #angularjs
[19:39:30] *** rawGem is now known as gh_hutr
[19:40:10] *** amedia has quit IRC
[19:41:03] *** jumpstracks has joined #angularjs
[19:41:09] *** tigrang has quit IRC
[19:42:05] *** chrisshattuck has joined #angularjs
[19:42:09] *** brianturgeon has joined #angularjs
[19:43:15] *** benjf has quit IRC
[19:43:22] *** benjf has joined #angularjs
[19:43:53] *** jharbaugh has joined #angularjs
[19:44:39] *** ngoyal has joined #angularjs
[19:45:24] *** chrisbirk has joined #angularjs
[19:46:20] *** Upbeat99 has quit IRC
[19:46:27] *** pdillinger has joined #angularjs
[19:47:20] *** chrisshattuck has quit IRC
[19:47:30] *** fairchild has joined #angularjs
[19:47:37] *** night-owl-deskto has quit IRC
[19:48:39] *** brianturgeon has quit IRC
[19:49:46] <chovy> yes
[19:49:56] <chovy> zelrik: heh. yeah. i updated it to today.
[19:50:21] *** seydoggy has quit IRC
[19:50:43] *** brianturgeon has joined #angularjs
[19:50:47] *** pdillinger has quit IRC
[19:50:55] *** seydoggy has joined #angularjs
[19:51:33] *** Nizumzen has joined #angularjs
[19:52:17] *** caitp has joined #angularjs
[19:52:23] *** nemothekid has quit IRC
[19:52:48] *** seydoggy has quit IRC
[19:53:10] *** danielpquinn has joined #angularjs
[19:53:16] *** gjvc has joined #angularjs
[19:53:20] *** seydoggy has joined #angularjs
[19:53:55] *** feelfine has joined #angularjs
[19:55:18] *** D-Boy has quit IRC
[19:55:29] *** chrisbirk has quit IRC
[19:56:42] *** brianturgeon has quit IRC
[19:57:13] *** tigrang has joined #angularjs
[19:57:21] *** Bade has joined #angularjs
[19:57:44] *** discipolo has joined #angularjs
[19:58:00] *** brianturgeon has joined #angularjs
[19:58:05] *** danielpquinn has quit IRC
[20:00:42] *** kroogs has joined #angularjs
[20:03:00] *** terrykfwong has joined #angularjs
[20:03:01] *** CptChaos has quit IRC
[20:03:12] *** gordroid has joined #angularjs
[20:05:12] *** pdillinger has joined #angularjs
[20:05:31] *** brianturgeon has quit IRC
[20:05:45] *** kroogs has quit IRC
[20:05:46] *** D-Boy has joined #angularjs
[20:05:53] *** ckboii89 has joined #angularjs
[20:06:09] *** brianturgeon has joined #angularjs
[20:06:50] <RandomStranger> chovy That method is unreliable, as it won't detect IE11.
[20:07:33] *** gordroid has quit IRC
[20:08:03] *** dashed has quit IRC
[20:08:20] *** caitp has quit IRC
[20:09:12] *** nemothekid has joined #angularjs
[20:09:56] *** ckboii89 has quit IRC
[20:10:50] *** morenoh149 has joined #angularjs
[20:13:09] <chovy> RandomStranger: it doesn't need to detect IE11.
[20:13:18] <chovy> i'm only concerned about IE9 and below.
[20:13:47] <chovy> IE10+ don't even support condcomms
[20:13:54] *** subnl2 has joined #angularjs
[20:15:04] *** xaxisx_ has joined #angularjs
[20:15:14] *** ad_libr has quit IRC
[20:15:57] *** Milanito has joined #angularjs
[20:15:59] *** senayar has quit IRC
[20:16:10] *** henn1nk has joined #angularjs
[20:16:45] *** senayar has joined #angularjs
[20:17:11] *** TheAceOfHearts has joined #angularjs
[20:18:14] *** aaronmitchell has quit IRC
[20:18:29] *** euskadi31 has quit IRC
[20:18:50] *** jumpstracks has quit IRC
[20:19:16] *** brianturgeon has quit IRC
[20:19:33] *** dccc has quit IRC
[20:19:37] *** ceephax has left #angularjs
[20:19:37] *** xaxisx has quit IRC
[20:20:02] *** katsh has joined #angularjs
[20:20:35] *** Hackwar has joined #angularjs
[20:20:38] *** ngoyal has quit IRC
[20:21:20] *** harvey203 has quit IRC
[20:21:31] *** senayar has quit IRC
[20:21:52] *** DexterTheDragon has quit IRC
[20:21:52] *** Hackwar1 has quit IRC
[20:22:45] *** bphogan_afk is now known as bphogan
[20:25:36] *** nerdfiles has quit IRC
[20:25:52] *** nerdfiles has joined #angularjs
[20:26:17] *** dbouwman has joined #angularjs
[20:26:35] *** DexterTheDragon has joined #angularjs
[20:27:15] *** mfunkie has joined #angularjs
[20:28:40] *** kennbrodhagen has joined #angularjs
[20:29:24] *** marr has joined #angularjs
[20:30:33] *** foofoobar has joined #angularjs
[20:30:44] *** dbouwman has quit IRC
[20:32:01] *** nemothekid has quit IRC
[20:32:09] *** mfunkie has quit IRC
[20:33:47] *** DrMabuse has quit IRC
[20:37:12] *** caitp has joined #angularjs
[20:37:53] *** kennbrodhagen has quit IRC
[20:39:53] *** jdj_dk has joined #angularjs
[20:40:22] *** terrykfwong has quit IRC
[20:40:32] *** rabaznaz has joined #angularjs
[20:41:16] *** pkayfire has joined #angularjs
[20:41:49] *** fairchild is now known as fairchild_away
[20:41:54] *** fairchild_away is now known as fairchild
[20:42:02] *** sigurding has quit IRC
[20:42:21] *** caitp has quit IRC
[20:43:03] *** nerdfiles has quit IRC
[20:43:17] *** nerdfiles has joined #angularjs
[20:43:22] *** hychen has quit IRC
[20:43:24] *** TheAceOfHearts has quit IRC
[20:43:32] *** arizzo has quit IRC
[20:43:48] *** LuxuryMode has quit IRC
[20:43:54] *** kennbrodhagen has joined #angularjs
[20:44:08] *** arizzo has joined #angularjs
[20:44:41] *** jdj_dk has quit IRC
[20:45:08] *** jharbaugh has quit IRC
[20:45:39] *** jshultz has quit IRC
[20:45:44] *** jharbaugh has joined #angularjs
[20:47:31] *** subnl2 has left #angularjs
[20:47:59] *** tigrang has quit IRC
[20:48:13] *** sigurding has joined #angularjs
[20:48:36] *** arizzo has quit IRC
[20:48:43] *** MuffinMan` has joined #angularjs
[20:50:23] *** jharbaugh has quit IRC
[20:51:40] *** nagappan has quit IRC
[20:52:15] *** nagappan has joined #angularjs
[20:53:55] *** danielpquinn has joined #angularjs
[20:54:45] *** brianturgeon has joined #angularjs
[20:56:03] *** tylerdmace has joined #angularjs
[20:56:29] *** nectarys has joined #angularjs
[20:57:15] *** DrMabuse has joined #angularjs
[20:57:23] *** MathiasM has joined #angularjs
[20:58:20] *** Shrooms has quit IRC
[20:58:26] *** danielpquinn has quit IRC
[20:58:42] *** nectarys has quit IRC
[20:59:32] *** sigurding has quit IRC
[21:00:13] *** kroogs has joined #angularjs
[21:00:35] *** Bade has quit IRC
[21:01:31] *** Milanito has quit IRC
[21:01:33] *** gordroid has joined #angularjs
[21:01:38] *** kkthxbye has joined #angularjs
[21:02:11] *** nemothekid has joined #angularjs
[21:02:42] *** fold has quit IRC
[21:03:29] *** fold has joined #angularjs
[21:04:10] *** matiasow has quit IRC
[21:04:53] *** fataldecrease has quit IRC
[21:05:33] *** bmac has joined #angularjs
[21:05:35] *** kroogs has quit IRC
[21:05:57] *** senayar has joined #angularjs
[21:05:59] *** Rebirth has joined #angularjs
[21:06:09] *** gordroid has quit IRC
[21:06:24] *** ckboii89 has joined #angularjs
[21:07:03] *** Ymesio has quit IRC
[21:07:16] *** Ymesio has joined #angularjs
[21:07:23] *** aaronmitchell has joined #angularjs
[21:08:22] *** jonnybro has joined #angularjs
[21:08:31] *** aaronmitchell has quit IRC
[21:08:51] *** kkthxbye has quit IRC
[21:09:55] *** seydoggy has quit IRC
[21:10:12] *** MathiasM has quit IRC
[21:10:29] *** seydoggy has joined #angularjs
[21:10:57] *** nodweber has quit IRC
[21:11:52] *** sigurding has joined #angularjs
[21:14:24] <s3shs> How do y'all handle display of all the licenses in the final versions of your software? Any creative ideas there to either automate the process, make it unobtrusive, etc/
[21:14:25] <s3shs> ?
[21:15:09] *** rho has joined #angularjs
[21:15:09] *** rho has joined #angularjs
[21:15:21] *** seydoggy has quit IRC
[21:16:16] *** bbankes has joined #angularjs
[21:16:32] *** wxo has joined #angularjs
[21:16:33] *** nectarys has joined #angularjs
[21:17:00] *** cami1000_ has joined #angularjs
[21:17:34] *** jprieur has quit IRC
[21:18:26] *** scmx has joined #angularjs
[21:19:05] *** jonnybro has quit IRC
[21:19:08] *** aaronmitchell has joined #angularjs
[21:19:17] *** enxtur has joined #angularjs
[21:19:50] *** seydoggy has joined #angularjs
[21:20:57] *** terrykfwong has joined #angularjs
[21:21:14] *** Sawbones has joined #angularjs
[21:21:48] <chovy> ?
[21:21:53] <chovy> why do i need to display them?
[21:22:38] *** dashed has joined #angularjs
[21:23:52] *** sigurding has quit IRC
[21:23:53] *** disorder20 has quit IRC
[21:23:59] *** enxtur has quit IRC
[21:25:09] *** disorder20 has joined #angularjs
[21:26:02] *** Yancy has quit IRC
[21:26:13] *** Yancy has joined #angularjs
[21:26:18] *** Andriy has joined #angularjs
[21:26:33] *** kennbrodhagen has quit IRC
[21:26:49] *** dbouwman has joined #angularjs
[21:28:12] *** foofoobar has quit IRC
[21:28:26] <s3shs> Because the license says so?
[21:28:36] <s3shs> > The above copyright notice and this permission notice shall be included in all
[21:28:36] <s3shs> copies or substantial portions of the Software.
[21:28:43] <s3shs> (Whoops, two lines.)
[21:28:43] <rau> s3shs: Please stop abusing your return key, you discourteous cuntface.
[21:29:03] <s3shs> rau, I said whoops.
[21:29:04] <s3shs> damnit.
[21:29:10] <chovy> haha
[21:29:28] <s3shs> So when they say display do they mean in the UI?
[21:29:44] <chovy> s3shs: when you minimize it strips all that out.
[21:29:58] *** Andriy has left #angularjs
[21:30:10] <s3shs> If the license is in the html; Most are in a singular file.
[21:30:10] <chovy> i think they just mean /** license here **/ <library code>
[21:30:11] *** Cache_Money has joined #angularjs
[21:30:19] <chovy> naah
[21:30:24] <reduce> so i learned how to properly use ngModel with custom form control directives
[21:30:25] <chovy> they just want it in the js file.
[21:30:25] <s3shs> I don't really know.
[21:30:38] <s3shs> reduce, now you can reuse and recycle.
[21:30:55] <s3shs> chovy, I guess.
[21:31:10] <s3shs> I've seen sites where they put up the fine print from every framework in to one page.
[21:31:22] <reduce> the problem is when it comes to nested selects - the nested select requires an ngModel directive for ngOptions to work
[21:31:26] *** dbouwman has quit IRC
[21:31:37] <chovy> s3shs: http://tradeli.st/assets/js/lib.js
[21:31:41] <chovy> that is what they want.
[21:31:53] <reduce> (ie requires the ngModel directive to be on it and not my custom directive that wraps it )
[21:32:06] <chovy> fuck ie
[21:32:12] <s3shs> heh.
[21:32:17] <chovy> serious
[21:32:22] <s3shs> Me too.
[21:32:22] <chovy> i don't support < ie10
[21:32:31] <chovy> ie9 is the new 6
[21:33:04] *** rho has quit IRC
[21:33:15] <reduce> i dont see any way to resolve this, apart from have an ngModel attribute on both my directive and the nested select, and that sounds ikier than just passing the property to bind to through to the sole ngModel on the select (which i was doing before)
[21:33:37] <chovy> code?
[21:33:38] *** ngoyal has joined #angularjs
[21:33:55] *** Siecje1 has left #angularjs
[21:34:00] * reduce breaks out the plunker
[21:34:29] <chovy> you can just paste your html
[21:34:31] *** illume has joined #angularjs
[21:34:32] *** sigurding has joined #angularjs
[21:34:49] *** MathiasM has joined #angularjs
[21:35:05] *** dc_ has joined #angularjs
[21:35:06] *** idiomatic has quit IRC
[21:35:32] *** ngoyal has quit IRC
[21:35:32] *** idiomatic has joined #angularjs
[21:35:54] *** dc_ has quit IRC
[21:36:05] <reduce> ok will do
[21:36:06] *** ngoyal has joined #angularjs
[21:36:17] *** brianturgeon has quit IRC
[21:36:59] *** wxo has quit IRC
[21:37:15] *** nodweber has joined #angularjs
[21:37:38] *** Nizumzen has quit IRC
[21:37:56] *** JoshGlzBrk has joined #angularjs
[21:38:16] *** Bade has joined #angularjs
[21:38:27] *** seydoggy has quit IRC
[21:38:39] *** MathiasM has quit IRC
[21:39:01] *** seydoggy has joined #angularjs
[21:39:02] *** jumpstracks has joined #angularjs
[21:39:17] <reduce> chovy: http://pastebin.com/bnQ6AV1q
[21:39:48] *** morenoh149 has quit IRC
[21:39:52] *** wxo has joined #angularjs
[21:40:41] *** ngoyal has quit IRC
[21:41:16] *** gnar_matix has quit IRC
[21:41:38] *** dc_ has joined #angularjs
[21:41:42] *** gnar_matix has joined #angularjs
[21:41:43] *** aaronmitchell has quit IRC
[21:42:04] *** morenoh149 has joined #angularjs
[21:42:38] *** brianturgeon has joined #angularjs
[21:42:43] *** TorchDragon has joined #angularjs
[21:43:08] <zelrik> reduce, what s wrong
[21:43:18] *** aaronmitchell has joined #angularjs
[21:43:32] *** seydoggy has quit IRC
[21:43:32] *** mzehrer_ has quit IRC
[21:44:38] *** rd_ has joined #angularjs
[21:45:03] <rd_> hi guys!
[21:45:13] *** onr has quit IRC
[21:45:23] <rd_> can anybody help me with my minor issue
[21:45:51] <zelrik> nop
[21:45:57] <rd_> )
[21:46:12] *** gnar_matix has quit IRC
[21:46:38] *** tigrang has joined #angularjs
[21:46:43] *** mindlace has joined #angularjs
[21:47:01] *** TorchDragon has quit IRC
[21:47:54] <rd_> when i'm sending a lot of http requests from my application and save results to my model from promised 'then' - can i detect what request was send the last?
[21:47:54] *** boptop has joined #angularjs
[21:48:01] <reduce> zelrik: im creating a range of custom form controls. They basically wrap selects and inputs with some other html. My 1st attempt passed the value for ngModel on the custom form control directive to ngModel on the select / input. This worked but i read that one should override the functions on ngModel on the custom directive and not have ngModel on the nested element. When rewriting my controls i see this new way works fine with inputs, textareas but
[21:48:01] <reduce> with select ng-options wont work unless ngModel is on the select itself.
[21:49:03] *** nerdfiles has quit IRC
[21:49:10] <reduce> in my pastie, the 2nd directive shows my original way, and the 1st directive shows the new way
[21:49:19] *** nerdfiles has joined #angularjs
[21:49:20] *** mewm has quit IRC
[21:49:51] <zelrik> where did you read that
[21:50:00] <zelrik> ng-model should be on the select
[21:50:03] *** Siecje has joined #angularjs
[21:50:40] <zelrik> that s how it works
[21:50:45] *** tylerdmace has quit IRC
[21:50:46] <reduce> see the very bottom section https://docs.angularjs.org/guide/forms
[21:51:30] *** Ymesio has quit IRC
[21:51:31] <reduce> zelrik: ^
[21:51:42] *** sigurding has quit IRC
[21:52:15] <zelrik> The very bottom section doesnt apply to you
[21:52:28] <zelrik> you re using the angular select directive with ng-options
[21:52:59] *** kennbrodhagen has joined #angularjs
[21:54:26] *** fbenoit has joined #angularjs
[21:54:32] *** dashed has quit IRC
[21:54:46] *** danielpquinn has joined #angularjs
[21:54:54] *** brianturgeon has quit IRC
[21:55:57] <reduce> so you feel my wrappers around inputs / selects dont qualify as custom form controls as theyre refering to them
[21:56:27] <zelrik> it s not really custom controls
[21:56:37] <zelrik> you're just nesting stuff
[21:57:12] *** nerdfiles has quit IRC
[21:57:24] *** JoshGlzBrk has quit IRC
[21:57:25] *** JosephSilber has joined #angularjs
[21:57:29] <zelrik> You re not really creating a new control
[21:57:29] *** nerdfiles has joined #angularjs
[21:57:32] *** bphogan is now known as bphogan_afk
[21:57:33] <zelrik> you re using what s there
[21:57:39] <zelrik> in a directive
[21:57:57] *** tigrang has quit IRC
[21:58:47] *** Bade has quit IRC
[21:58:48] *** bmac has quit IRC
[21:59:03] *** scmx has quit IRC
[21:59:11] *** Nizumzen has joined #angularjs
[21:59:17] *** danielpquinn has quit IRC
[21:59:40] <zelrik> rd_, yes you can
[22:00:11] *** Ymesio has joined #angularjs
[22:00:27] <rd_> now i try to give more detailed explanation
[22:00:33] *** kroogs has joined #angularjs
[22:00:47] *** hannesvdvreken has joined #angularjs
[22:00:55] *** gordroid has joined #angularjs
[22:01:01] *** Sawbones has quit IRC
[22:01:26] <rd_> So this is full explanation of the issue: i have a dropdown attached to model, there is a watcher for the model change which sends http request on every model change (that means when user select another value in the dropdown) and when data is coming from server - save it to scope. Nothing really complicated but troubles start when user clicks on dropdown very fast.
[22:01:28] <reduce> zelrik: thanks for the input. Im been given a refactoring task to try and use best practices so ive been a little anal about things.
[22:01:39] <rd_> Watcher sends requests but sometimes response from previous clicks is coming later than from the last user click - so user sees one value in dropdow and results for another value. And I don't understand now how to solve this issue(
[22:01:41] <reduce> s/Im/Ive
[22:02:09] <zelrik> rd_, you should use a timeout then
[22:02:53] *** fairchild is now known as fairchild_away
[22:03:07] <zelrik> rd_, when you send the first request, you block the next requests and put a timeout of about 2 seconds before unblocking them
[22:03:18] *** VinceZa has joined #angularjs
[22:03:22] <rd_> Yes, i thought about timeouts, but I think I can;t use it - because I don't know how long the delay can be
[22:03:28] <zelrik> that ll make your server happier
[22:03:40] <zelrik> rd_, you can tweak the delay
[22:03:44] *** fairchild_away has quit IRC
[22:03:47] *** tfennelly has joined #angularjs
[22:04:23] <zelrik> or bind the unblocking to some event you want
[22:05:09] <zelrik> in our app, I wait ~1 second after I get the result from the request
[22:05:11] *** davi has joined #angularjs
[22:05:19] <zelrik> that works pretty well
[22:05:19] <rd_> that is to say - make requests synchronous?
[22:05:28] *** kroogs has quit IRC
[22:05:35] *** caitp has joined #angularjs
[22:05:46] <zelrik> hmm
[22:05:48] *** xaxisx__ has joined #angularjs
[22:05:51] <zelrik> I d say yes
[22:05:59] *** vintik has joined #angularjs
[22:05:59] *** tfennelly has quit IRC
[22:06:24] *** Leonardo_ has joined #angularjs
[22:06:49] *** brianturgeon has joined #angularjs
[22:06:54] <VinceZa> Hey Folks, Quick (and hopefully not a stupid) Question .. Can you run an angular application without hosting it via a web server? Meaning, should I be able to browser to an html page of a simple application and expect it to run? Or does it have to be hosted by a server like Node?
[22:07:00] *** Krroos has joined #angularjs
[22:07:12] *** rau has quit IRC
[22:08:31] *** matiasow has joined #angularjs
[22:08:43] <zelrik> VinceZa, you can open an html file from your disk and it ll work
[22:08:44] *** lordjancso has quit IRC
[22:08:45] *** intellix has quit IRC
[22:08:48] <zelrik> if that s what your asking
[22:09:03] <VinceZa> zelrik: it is thank you
[22:09:03] <rd_> in this case I think I should block not only requests but and dropdown too
[22:09:04] <zelrik> as long as you have the right dependencies
[22:09:19] <zelrik> (meaning you have the angular.js file locally)
[22:09:32] <rd_> because during blocked requests user can click and change values
[22:09:44] <VinceZa> zelrik: thank you that is what I was trying to confirm
[22:09:58] <zelrik> rd_, yeah I am guessing it s a user experience problem
[22:10:06] <zelrik> not really an angularJS problem
[22:10:11] *** xaxisx_ has quit IRC
[22:10:18] <zelrik> you have to give the user a visual clue that he has to wait
[22:10:31] *** apetro_ has joined #angularjs
[22:10:35] *** illume has quit IRC
[22:10:44] <rd_> yes, agree wit you
[22:10:51] *** fairchild has joined #angularjs
[22:11:01] <zelrik> even if the request is 50 ms
[22:11:10] *** sdouglas has joined #angularjs
[22:11:16] <zelrik> you can visually block the interface for 1second
[22:11:25] <zelrik> that wont make the user mad
[22:11:55] *** brianturgeon has quit IRC
[22:12:02] *** mercwithamouth has quit IRC
[22:12:04] <rd_> ok, I will try, thank u!
[22:12:22] <zelrik> you can tweak that value to make your app look more responsive
[22:12:34] *** intellix has joined #angularjs
[22:12:35] *** mercwithamouth has joined #angularjs
[22:13:53] *** nerdfiles has quit IRC
[22:14:08] *** nerdfiles has joined #angularjs
[22:14:10] *** fl0ppy has joined #angularjs
[22:14:50] <zelrik> hmm
[22:15:04] *** sal1191 has left #angularjs
[22:15:07] <zelrik> are there other places besides ngmodules where I can promote my module
[22:15:10] *** sal1191 has joined #angularjs
[22:15:20] *** nodweber has quit IRC
[22:15:32] *** brianturgeon has joined #angularjs
[22:15:41] *** Leonardo_ has quit IRC
[22:16:06] *** leyluj has joined #angularjs
[22:16:33] *** tangorri has joined #angularjs
[22:17:41] *** mokush has joined #angularjs
[22:17:58] *** girishr has joined #angularjs
[22:18:04] *** sdouglas has quit IRC
[22:18:38] *** sdouglas has joined #angularjs
[22:19:07] *** fl0ppy has quit IRC
[22:20:11] *** rd_ has quit IRC
[22:20:17] *** Reskp has quit IRC
[22:21:12] *** Reskp has joined #angularjs
[22:21:37] *** nerdfiles has quit IRC
[22:22:44] *** DrMabuse has quit IRC
[22:23:06] *** boptop has quit IRC
[22:23:45] *** sdouglas has quit IRC
[22:24:22] *** mindlace has quit IRC
[22:24:48] *** matiasow has quit IRC
[22:25:23] *** wxo has quit IRC
[22:25:25] *** HACKING-TWITTER has joined #angularjs
[22:25:37] *** rmichnik has joined #angularjs
[22:26:29] *** ppppaul has quit IRC
[22:26:36] *** wilmoore has joined #angularjs
[22:26:53] *** fairchild is now known as fairchild_away
[22:27:13] *** dc_ has quit IRC
[22:27:42] *** dbouwman has joined #angularjs
[22:27:52] *** kennbrodhagen has quit IRC
[22:29:40] *** fairchild_away is now known as fairchild
[22:29:41] *** gordroid has quit IRC
[22:29:44] *** girishr has quit IRC
[22:30:30] *** morenoh149 has quit IRC
[22:30:51] *** theunixbeard has joined #angularjs
[22:31:10] *** danielmahon has quit IRC
[22:31:34] <Foxandxss> zelrik: do you have Ruby on your machine?
[22:31:40] <Foxandxss> I need a test
[22:31:50] *** TheAceOfHearts has joined #angularjs
[22:31:58] <Foxandxss> well, for that I need to prepare it anyway :P
[22:32:13] <Foxandxss> well or TheAceOfHearts :P
[22:32:17] <Foxandxss> TheAceOfHearts: I need a test
[22:32:22] <TheAceOfHearts> Huh?
[22:32:23] *** dbouwman has quit IRC
[22:32:26] <zelrik> Foxandxss, why
[22:32:33] <zelrik> I have everything on my machine
[22:32:35] <TheAceOfHearts> I HAVE BEEN SUMMONED
[22:32:43] <Foxandxss> nah, I have an issue with a ruby test
[22:32:45] *** davi has quit IRC
[22:32:46] <TheAceOfHearts> ah
[22:32:53] <TheAceOfHearts> what type of test?
[22:32:59] *** tacoshellmcgee has joined #angularjs
[22:33:01] <Foxandxss> and I need someone with a different hour
[22:33:05] <Foxandxss> because I think that is a timezone issue
[22:33:08] <TheAceOfHearts> ah
[22:33:09] *** tacoshellmcgee has left #angularjs
[22:33:10] <monokrome> :q
[22:33:14] <TheAceOfHearts> I use TimeCop for my time-based tests
[22:33:17] <monokrome> :)
[22:33:25] <zelrik> Foxandxss, ok what s up
[22:33:31] <Foxandxss> I could use that too
[22:33:40] <Foxandxss> I am mocking Time by hand
[22:33:40] *** HACKING-TWITTER has quit IRC
[22:33:47] <Foxandxss> zelrik: I need to be able to reproduce it on irb
[22:33:51] <Foxandxss> so any of you can test it
[22:33:55] <zelrik> ok
[22:33:56] *** wilmoore has quit IRC
[22:34:04] <Foxandxss> ok
[22:34:07] <Foxandxss> Time.mktime(2000, 1, 1)
[22:34:12] *** HACKING-TWITTER has joined #angularjs
[22:34:26] <Foxandxss> no
[22:34:26] <Foxandxss> better
[22:34:31] <Foxandxss> Time.mktime(2000, 1, 1).to_i
[22:34:34] *** HACKING-TWITTER has joined #angularjs
[22:34:39] <TheAceOfHearts> btw, also, json_expressions, Foxandxss; so good. you should use it to test your json endpoints
[22:34:47] <Foxandxss> it is a gem
[22:34:51] <Foxandxss> not rails even
[22:34:52] <zelrik> https://lh3.googleusercontent.com/-ioA6IUFQ7-M/U7lYEvCqFOI/AAAAAAABQFU/5EZROJy18vI/w270-h151-no/9af1c472jw1ei3cx5dxe1g207i047u0x.gif
[22:34:54] <TheAceOfHearts> https://www.dropbox.com/s/stmq4iu5eodwrwy/Screenshot%202014-07-06%2013.34.50.png
[22:34:55] *** HACKING-TWITTER has joined #angularjs
[22:34:57] <zelrik> ffff
[22:34:59] *** GreenJello has joined #angularjs
[22:34:59] <zelrik> uuuu
[22:35:03] <TheAceOfHearts> hahahahahaha
[22:35:03] <zelrik> dont click
[22:35:04] <zelrik> :D
[22:35:16] *** HACKING-TWITTER has joined #angularjs
[22:35:20] *** dale_ has joined #angularjs
[22:35:25] <Foxandxss> ok, enough
[22:35:28] *** Kallb123 has joined #angularjs
[22:35:29] <zelrik> 946702800
[22:35:30] *** henn1nk has quit IRC
[22:35:35] <Foxandxss> all different
[22:35:37] <TheAceOfHearts> 946713600
[22:35:39] *** HACKING-TWITTER has joined #angularjs
[22:35:40] <Foxandxss> that is why Travis cry
[22:35:40] *** HACKING-TWITTER has quit IRC
[22:35:47] <TheAceOfHearts> use TimeCop :P
[22:35:50] *** theunixbeard has quit IRC
[22:35:59] <Foxandxss> I don't need heavily date stuff
[22:36:02] *** HACKING-TWITTER has joined #angularjs
[22:36:02] *** HACKING-TWITTER is now known as Guest18327
[22:36:03] *** GreenJello has left #angularjs
[22:36:06] <zelrik> stupid gifs on my g+ stream...
[22:36:06] *** wilmoore has joined #angularjs
[22:36:18] *** theunixbeard has joined #angularjs
[22:36:21] <TheAceOfHearts> sure thing ;)
[22:36:40] <Kallb123> If I have an array of arrays, can I ng-repeat on both at the same time? Wanting to make <li> for each element of the nested array
[22:36:53] *** jumpstracks has quit IRC
[22:36:56] <Foxandxss> Time.mktime(2000, 1, 1, 0, 0, 0).to_i
[22:37:04] <TheAceOfHearts> Kallb123: you can do two ng-repeats
[22:37:07] <TheAceOfHearts> one inside of the other
[22:37:14] <Kallb123> I'm trying to get just one element
[22:37:15] <dale_> controller as w/this vs. $scope what is the current preferred way?
[22:37:18] <Foxandxss> TheAceOfHearts: zelrik try that
[22:37:24] <TheAceOfHearts> Kallb123: tough
[22:37:34] <TheAceOfHearts> same as before Foxandxss, 946713600
[22:37:38] <zelrik> Foxandxss, same result
[22:37:45] *** HACKING-TWITTER- has joined #angularjs
[22:37:50] <TheAceOfHearts> Foxandxss: embrace TimeCop~
[22:37:54] <TheAceOfHearts> and json_expressions
[22:37:55] *** morenoh149 has joined #angularjs
[22:37:59] <Kallb123> TheAceOfHearts, want to avoid: <div 1><li 1><li 2>...</div 1><div 2><li 1><li 2>...</div 2>...
[22:38:02] <TheAceOfHearts> also, omfg, jbuilder! jbuilder is great :D
[22:38:03] *** tigrang has joined #angularjs
[22:38:05] *** HACKING-TWITTER- has joined #angularjs
[22:38:12] <Foxandxss> I guess that unix epoch is timezone aware
[22:38:20] *** matiasow has joined #angularjs
[22:38:25] *** HACKING-TWITTER- has joined #angularjs
[22:38:37] <Foxandxss> bah, I am doing it all wrong
[22:38:43] <Kallb123> TheAceOfHearts, just want <li 1 1><li 1 2>...<li 2 1><li 2 2>... If you can interpret my awful description :P
[22:38:50] *** HACKING-TWITTER- has joined #angularjs
[22:38:51] <Foxandxss> instead of using that command on the stub, I just need to put the epoch
[22:38:51] *** HACKING-TWITTER- has quit IRC
[22:38:52] <TheAceOfHearts> Hmm, I dunno if you can use ng-repeat as an element
[22:38:59] *** sdouglas has joined #angularjs
[22:39:12] *** bmac has joined #angularjs
[22:39:15] *** dccc has joined #angularjs
[22:39:30] <Kallb123> you mean 1 element? I can do it as 2 elements
[22:39:54] <TheAceOfHearts> I mean like: <ng-repeat></ng-repeat>
[22:40:00] <TheAceOfHearts> using ng-repeat as an element
[22:40:07] *** dale_ has quit IRC
[22:40:09] <zelrik> why
[22:40:28] <zelrik> you use it as the element you want repeated
[22:40:39] *** DrMabuse has joined #angularjs
[22:40:43] <Kallb123> TheAceOfHearts, like what zelrik said
[22:40:48] <TheAceOfHearts> he wants to have a bunch of li's
[22:40:59] *** sdouglas has quit IRC
[22:41:08] <Kallb123> I want to avoid: <div ng-repeat=""><li ng-repeat>...
[22:41:10] <TheAceOfHearts> Kallb123: I'd just make a function that takes the array and unwraps it
[22:41:12] *** dc_ has joined #angularjs
[22:41:18] <zelrik> <li ng-repeat="stuff in things"></li>
[22:41:38] <Kallb123> yes zelrik, but for an array of arrays
[22:41:44] *** foofoobar has joined #angularjs
[22:41:50] <TheAceOfHearts> he wants to unwrap the array
[22:41:52] <Kallb123> TheAceOfHearts, could I ask how I would reference that in ng-repeat
[22:41:57] <zelrik> <li ng-repeat="stuff in things in more things"></li>
[22:41:59] <zelrik> :D
[22:42:11] <Kallb123> zelrik, that's exactly what I want :P
[22:42:21] <TheAceOfHearts> ah, I didn't know you should keep chaining like that
[22:42:24] <TheAceOfHearts> I've never had to do that
[22:42:24] <zelrik> Kallb123, you could flatten your array
[22:42:40] <TheAceOfHearts> that's what I was saying
[22:42:42] <Kallb123> wait, that was a joke right? Or is that actually possible?
[22:42:52] <zelrik> Kallb123, I have no idea
[22:42:57] <TheAceOfHearts> seems unliekyl lol
[22:43:05] <Kallb123> thought so :P
[22:43:17] <TheAceOfHearts> just unwrap the array beforehand
[22:43:21] <zelrik> best way is to flatten your array
[22:43:32] <TheAceOfHearts> the syntax is: variable in expression; expression can be a function call
[22:43:33] <zelrik> pre-format your data
[22:43:41] <zelrik> then the ng-repeat will be easy
[22:43:41] <TheAceOfHearts> so "foo in unwrap(myArray)"
[22:43:58] <reduce> ^ i was just wondering if that is valid
[22:44:04] *** Cache_Money has quit IRC
[22:44:08] <zelrik> Don't put your formatting method in the ng-repeat...
[22:44:19] *** ustunozgur has joined #angularjs
[22:44:29] *** evilaliv3 has joined #angularjs
[22:44:42] <TheAceOfHearts> zelrik: it depends a lot on the use-case :P, I'd say it's perfectly valid for a lot of usecases
[22:44:44] <Kallb123> what do you mean?
[22:44:58] <zelrik> TheAceOfHearts, it s a performance problem
[22:45:04] *** RandomStranger has quit IRC
[22:45:15] *** RandomStranger has joined #angularjs
[22:45:18] <TheAceOfHearts> not at all, just memoize it :)
[22:45:30] <zelrik> especially in a ng-repeat
[22:45:35] <Kallb123> I have some tabs, which each have some columns, not sure I can/want flatten it before the ng-repeat
[22:45:36] <zelrik> memoize can backfire
[22:45:37] <TheAceOfHearts> and really, even if you don't memoize it, it'll be negligible in most cases
[22:45:39] <zelrik> I use it too :p
[22:45:49] <TheAceOfHearts> unless you have like a huge array
[22:45:56] *** wilmoore has quit IRC
[22:45:57] *** fairchild is now known as fairchild_away
[22:46:17] <zelrik> Doesnt need to be a huge array
[22:46:32] <zelrik> if the DOM in the ng-repeat takes a lot of time to render
[22:46:33] *** MJD has quit IRC
[22:46:41] <zelrik> it can be a problem too I guess
[22:46:44] <TheAceOfHearts> wut
[22:46:53] *** idvb has joined #angularjs
[22:47:02] *** xaxisx__ has quit IRC
[22:47:05] <zelrik> well maybe not in that case
[22:47:08] <TheAceOfHearts> what does that have to do with it?
[22:47:20] <TheAceOfHearts> your function won't affect that
[22:47:37] <zelrik> yeah it rerenders only if the resulting array changes
[22:47:39] *** CptChaos has joined #angularjs
[22:47:42] *** spookyfork has joined #angularjs
[22:47:50] <TheAceOfHearts> just track by $index anyway
[22:48:18] <zelrik> I have had many problems with ng-repeats
[22:48:21] <zelrik> mostly with render
[22:48:36] <reduce> if you use ng-repeat="item in list", and later an item is removed from the list, will the dom elements created by ng-repeat be removed to?
[22:48:49] <zelrik> yes
[22:49:20] <zelrik> that s why you dont loop over a scope array :)
[22:49:24] <zelrik> to edit it
[22:49:40] *** VinceZa has quit IRC
[22:49:44] <TheAceOfHearts> zelrik: if you use track by $index
[22:49:49] <TheAceOfHearts> it'll keep the dom elements
[22:49:57] <TheAceOfHearts> and just update them if they're changed
[22:50:01] <TheAceOfHearts> not destroy and recreate them
[22:50:01] <reduce> zelrik: not sure what you mean
[22:50:12] *** fairchild_away is now known as fairchild
[22:50:26] <zelrik> reduce, if you have a ng-repeat='item in list'
[22:50:34] <zelrik> then in your controller you have a method like
[22:51:13] <zelrik> $scope.editList = function(){ for(item in $scope.list){ editItem(item); } }
[22:51:31] *** mindlace has joined #angularjs
[22:51:43] *** lewdev has joined #angularjs
[22:51:43] <zelrik> that s pseudo-code but you get the idea
[22:51:59] <Kallb123> <li ng-repeat="feed in feedsList()">Troll</li>
[22:52:11] <TheAceOfHearts> zelrik: that's why you use track by something, so you're not constantly destroying and and re-creating DOM elements …
[22:52:12] <zelrik> TheAceOfHearts, oh I didnt know that $index could do that
[22:52:18] *** hubertus_ has quit IRC
[22:52:20] <TheAceOfHearts> :P
[22:52:22] <Kallb123> feedsList()
[22:52:22] <Kallb123> [
[22:52:22] <Kallb123> Object
[22:52:23] <Kallb123> ,
[22:52:23] <Kallb123> Object
[22:52:23] <Kallb123> ,
[22:52:25] <Kallb123> Object
[22:52:27] <Kallb123> ,
[22:52:29] <Kallb123> Object
[22:52:31] <Kallb123> ,
[22:52:32] <TheAceOfHearts> Kallb123: stop.
[22:52:32] <Krroos> Object
[22:52:33] *** lewdev has quit IRC
[22:52:33] <Krroos> ,
[22:52:35] <Kallb123> Object
[22:52:37] <Kallb123> ,
[22:52:39] <Kallb123> Object
[22:52:41] <Kallb123> ,
[22:52:43] <Kallb123> Object
[22:52:45] <Kallb123> ,
[22:52:46] <TheAceOfHearts> Kallb123: great way to get kicked
[22:52:47] <Kallb123> Object
[22:52:48] <Krroos> Object...? ,!
[22:52:48] <reduce> zelrik: i still dont see how thats bad. Does javascript do soething funny to an array when iterating over it?
[22:52:49] <Kallb123> ]
[22:52:51] <Kallb123> oh my god... sorry!
[22:52:52] *** hubertus_ has joined #angularjs
[22:52:53] <Kallb123> so sorry
[22:53:07] <zelrik> reduce, it can re-render the DOM on each edit
[22:53:13] <zelrik> which would suck
[22:53:16] <reduce> ahhhhh
[22:53:19] <reduce> i see
[22:53:52] <Kallb123> I put the <li> repeated like you said TheAceOfHearts and created the function, but no elements are showing up. The function works, and there's a comment about ng-repeat in the source
[22:53:54] <zelrik> so usually edit a copy of the array and do what TheAceOfHearts says and track by $index
[22:54:23] *** ustunozgur has quit IRC
[22:55:18] <Kallb123> As you can see (possibly hear too, sorry) the function returns several elements, but there's nothing in DOM
[22:55:32] *** danielpquinn has joined #angularjs
[22:55:58] <zelrik> Kallb123, do you put something in those li's :)
[22:56:07] <Kallb123> just some words
[22:56:11] <TheAceOfHearts> *cough*
[22:56:23] <Kallb123> should show up, right?
[22:56:36] <Kallb123> <li ng-repeat="feed in feedsList()">Foo</li>
[22:56:53] <TheAceOfHearts> it should print Foo
[22:56:54] *** spookyfork has quit IRC
[22:56:57] <TheAceOfHearts> X number of times
[22:57:06] <Kallb123> yep, but nothing
[22:57:09] <Kallb123> <!-- ngRepeat: feed in feedsList() -->
[22:57:18] *** hubertus_ has quit IRC
[22:57:18] <Kallb123> that's all there is in the source around there
[22:57:30] <TheAceOfHearts> well, make a plunkr
[22:57:31] <zelrik> try <li ng-repeat="feed in [1,2,3,4,5]"> Foo</li>
[22:57:33] *** bmac has quit IRC
[22:57:57] <Kallb123> zelrik, that works
[22:58:14] <zelrik> ok so feedsList() is not defined or returns nothing
[22:58:35] *** apetro_ has quit IRC
[22:58:40] <Kallb123> feedList() returns 8 elements, at least after DOM rendering :/
[22:58:52] <Kallb123> I bet there's something with the timing
[22:59:01] <TheAceOfHearts> wut...
[22:59:08] <zelrik> Kallb123, put return [1,2,3,4,5]; at the end of your feedsList Method
[22:59:29] <Kallb123> I'm trying to access scope like so: var scope = SC("[ng-controller=TabCtrl"); inside the feedList()
[22:59:47] <zelrik> what...
[22:59:59] <reduce> lol, i was wondering if it was just me
[23:00:04] *** danielpquinn has quit IRC
[23:00:05] <Kallb123> haha
[23:00:11] *** terrykfwong has quit IRC
[23:00:13] *** kroogs has joined #angularjs
[23:00:19] <TheAceOfHearts> ffs
[23:00:25] <TheAceOfHearts> just pass the array as a parameter to the function
[23:00:26] <Kallb123> SC is a function to get scope, but anyway zelrik I put that in there and nothing
[23:00:30] *** chrisbirk has joined #angularjs
[23:00:39] <TheAceOfHearts> and inside it you can unwrap it
[23:00:43] <zelrik> feedsList or feedList?
[23:00:45] <TheAceOfHearts> write as much pure code as possible
[23:00:57] <Kallb123> It's slightly different to that TheAceOfHearts
[23:01:02] *** jharbaugh has joined #angularjs
[23:01:07] <zelrik> where is your stuff defined
[23:01:10] <TheAceOfHearts> well, plunkr or no more help.
[23:01:14] <TheAceOfHearts> *shrughs*
[23:01:21] <zelrik> yeah
[23:01:27] <Kallb123> ok, 1 sec
[23:01:34] <zelrik> Kallb123, show us real code
[23:01:57] <Kallb123> ye, sorry to throw snippets at you :( thought it was going to be easier
[23:02:33] *** foofoobar has quit IRC
[23:04:12] *** zanea|away is now known as zanea
[23:05:29] *** kroogs has quit IRC
[23:05:31] *** fairchild is now known as fairchild_away
[23:05:42] *** tfennelly has joined #angularjs
[23:06:01] <TheAceOfHearts> so, at NodeConf I met a lot of people
[23:06:24] *** ustunozgur has joined #angularjs
[23:06:25] <zelrik> TheAceOfHearts, where was it
[23:06:33] *** dccc has quit IRC
[23:07:27] <TheAceOfHearts> there's a lot of people preaching this whole tiny modules approach, which I really like… but I think a lot of these people aren't actually making real applications. When you're making a real application you have way too many time constraints, and you end up having to use modules that do a lot of stuff for you… You don't have time to re-implement just tiny bits of functionality… ~_~ …
[23:07:35] <TheAceOfHearts> it was like 1hr up north of SF
[23:07:47] <TheAceOfHearts> like 100 miles from San José
[23:08:05] <TheAceOfHearts> I know cuz I drove 200 miles to/from NodeConf :P
[23:08:05] <zelrik> cool
[23:08:12] <zelrik> not a lot of angularJS where I am
[23:08:30] <zelrik> There is a ruby on rails meetup every month
[23:08:39] <zelrik> but I think no angularJS stuff
[23:08:43] *** rev087 has quit IRC
[23:08:46] <TheAceOfHearts> that sucks
[23:08:48] <TheAceOfHearts> where are you?
[23:08:51] <zelrik> Montreal
[23:09:10] *** Brocken is now known as zz_Brocken
[23:09:12] *** MJD has joined #angularjs
[23:09:15] <TheAceOfHearts> I see
[23:09:33] <TheAceOfHearts> I went to Toronto once
[23:09:38] <TheAceOfHearts> is Montreal similar to Toronto?
[23:09:42] <zelrik> no
[23:09:48] <TheAceOfHearts> ah
[23:09:56] <TheAceOfHearts> is it better or worse?
[23:09:58] <zelrik> Toronto is very corporate
[23:10:19] <TheAceOfHearts> I found Toronto a bit boring, but I didn't have my own car and I was underage… So I'm definitely biased.
[23:10:26] <zelrik> Montreal is more like a party placfe
[23:10:28] <zelrik> place
[23:10:31] <TheAceOfHearts> sweet
[23:10:48] *** moritzs has quit IRC
[23:10:53] <zelrik> lots of events there
[23:11:04] <TheAceOfHearts> no angularjs events though
[23:11:06] <TheAceOfHearts> damn shame
[23:11:10] <zelrik> yeah
[23:11:14] *** bmac has joined #angularjs
[23:11:16] <zelrik> people dont work here :D
[23:11:20] <TheAceOfHearts> haha
[23:11:22] <zelrik> that s why no angularJS event
[23:11:23] <zelrik> :D
[23:11:27] <TheAceOfHearts> wait, isn't caitp in Montreal?
[23:11:33] <TheAceOfHearts> I think she's in Canada somewhere
[23:11:33] <zelrik> I dont know...
[23:12:12] *** Nizumzen has quit IRC
[23:12:29] <TheAceOfHearts> every time I think of Canada I remember some cartoon where they said something like: Ah, Canadians, from the great country of Canadia
[23:12:41] *** mennea has quit IRC
[23:13:19] <zelrik> Canada has a lot of advantages
[23:15:12] *** illume has joined #angularjs
[23:15:19] *** Willow has joined #angularjs
[23:15:45] *** m____s has quit IRC
[23:15:46] <Foxandxss> TheAceOfHearts: toronto
[23:16:03] *** braoru has joined #angularjs
[23:16:11] <zelrik> Toronto is one day from Montreal by train
[23:16:45] *** bphogan_afk is now known as bphogan
[23:17:38] *** sheperson has joined #angularjs
[23:17:49] *** JoshGlzBrk has joined #angularjs
[23:17:53] <Kallb123> TheAceOfHearts, zelrik, made a plunkr, the return [0,1,2,3] won't even work now: http://plnkr.co/edit/YiJg22ftNXPRRC4cPHHc?p=preview
[23:18:02] *** earthquake has quit IRC
[23:19:24] <zelrik> the hell is that code..
[23:19:39] <Kallb123> :(
[23:20:07] *** enxtur has joined #angularjs
[23:20:14] *** IJNX has quit IRC
[23:20:16] <TheAceOfHearts> what.
[23:20:23] <Foxandxss> uhhhh
[23:20:31] <Kallb123> any way to get the ng-repeat="feed in feedsList()" to work? The other ng-repeat works
[23:20:33] <TheAceOfHearts> seriously. what.
[23:20:38] <Foxandxss> Kallb123: forget everything you learnt, start from zero
[23:21:02] <TheAceOfHearts> Kallb123: you're confused.
[23:21:17] <Kallb123> yep
[23:21:45] <TheAceOfHearts> ok so, to solve your problem, you just need to do $scope.feedsList = feedsList
[23:21:51] <TheAceOfHearts> but seriously, what the hell
[23:22:01] *** DrJae has joined #angularjs
[23:22:27] <TheAceOfHearts> I really suggest stopping everything you're doing
[23:22:31] *** jdj_dk has joined #angularjs
[23:22:40] <TheAceOfHearts> and just watching some Egghead.io videos or some Pluralsight videos
[23:22:48] <TheAceOfHearts> imo, Pluralsight is less terrible
[23:23:06] <TheAceOfHearts> at least Joe Eames (sp?) sounds like he knows what he's doing
[23:23:18] <TheAceOfHearts> the egghead.io guy sounds like he's just winging it 24/7
[23:23:20] <Kallb123> ah ok, so putting that function within the scope works. Is everything just totally flawed?
[23:23:22] *** sdouglas has joined #angularjs
[23:23:23] *** matiasow has quit IRC
[23:23:31] *** howzus has quit IRC
[23:23:32] <TheAceOfHearts> yes
[23:23:41] *** dccc has joined #angularjs
[23:24:03] *** Nijikokun has joined #angularjs
[23:24:04] *** DuelShark has quit IRC
[23:24:36] <Kallb123> angular specifically? or just life in general? :P
[23:24:45] <TheAceOfHearts> javascript specific
[23:24:53] *** tfennell_ has joined #angularjs
[23:25:12] *** enxtur has quit IRC
[23:25:17] <zelrik> Kallb123, testApp.controller('TabCtrl', function ($scope, $http, $timeout) {
[23:25:17] <zelrik> $scope.tabs = data;
[23:25:17] <zelrik> console.log(feedsList());
[23:25:17] <zelrik> });
[23:25:18] *** brianturgeon has quit IRC
[23:25:20] <zelrik> oops
[23:25:23] *** chrisbirk has quit IRC
[23:25:35] <zelrik> damn copy paste
[23:25:37] <zelrik> http://plnkr.co/edit/NdZ6MzpvTrVDqEEB1UvV?p=preview
[23:25:43] <zelrik> Kallb123, ^
[23:25:54] <zelrik> but really, you should start from scratch
[23:26:19] *** brianturgeon has joined #angularjs
[23:26:27] <Kallb123> I see
[23:26:58] *** aviraldg has quit IRC
[23:27:06] <Kallb123> I hope you realise that the whole data variable was coming from JSON, most of what I gave you was thrown together to make a quick plunkr
[23:27:17] *** jdj_dk has quit IRC
[23:27:42] *** wam has joined #angularjs
[23:27:43] <Kallb123> I'll try and learn about factorys though, I know I've been going wrong...
[23:28:05] <zelrik> Services/Factories should be the meat of your code
[23:28:05] *** squeakytoy has quit IRC
[23:28:26] *** dbouwman has joined #angularjs
[23:28:33] *** tfennelly has quit IRC
[23:28:36] *** mehlah has joined #angularjs
[23:28:46] *** sdouglas has quit IRC
[23:28:51] <Kallb123> ye, I half porting, half scrapping an existing site into angular
[23:28:55] *** mary5030 has joined #angularjs
[23:28:58] <Kallb123> I was*
[23:29:20] *** apetro_ has joined #angularjs
[23:29:22] *** wam has quit IRC
[23:29:37] *** dccc has quit IRC
[23:30:26] *** chrisbirk has joined #angularjs
[23:30:59] *** Ymesio has quit IRC
[23:31:01] *** zumba_addict has joined #angularjs
[23:31:01] *** tigrang has quit IRC
[23:31:38] *** dashed has joined #angularjs
[23:31:58] *** wewerka has quit IRC
[23:32:20] *** peldan has quit IRC
[23:32:29] *** brianturgeon has quit IRC
[23:32:41] *** fbenoit has quit IRC
[23:32:46] *** peldan has joined #angularjs
[23:32:59] *** dbouwman has quit IRC
[23:33:20] <zumba_addict> hey guys, it's my first time encountering this. I thought $watch will still be able to catch it but I was wrong. My bootstrap datepicker was in a <span></span>. It works fine until I put it inside <span ng-switch on="monthorday"> Why?
[23:33:49] *** sheperson has quit IRC
[23:34:48] *** grose has joined #angularjs
[23:35:44] *** mokush has quit IRC
[23:36:51] *** matiasow has joined #angularjs
[23:36:51] *** Yancy has quit IRC
[23:36:58] *** Willow has quit IRC
[23:37:02] *** Yancy has joined #angularjs
[23:37:21] *** peldan has quit IRC
[23:37:26] *** hannesvdvreken has quit IRC
[23:37:34] *** Willow has joined #angularjs
[23:37:42] *** jharbaugh has quit IRC
[23:38:04] <zumba_addict> ah, http://stackoverflow.com/questions/18747186/angular-unable-to-watch-if-within-ng-switch-when I'll try this now
[23:38:14] *** jharbaugh has joined #angularjs
[23:38:18] *** tfennell_ has quit IRC
[23:38:36] *** saiko-chriskun has joined #angularjs
[23:38:47] *** tfennelly has joined #angularjs
[23:38:54] <saiko-chriskun> anyone here using chrome?
[23:39:05] *** atomical has joined #angularjs
[23:39:07] <saiko-chriskun> when trying to navigate to the angular docs in chrome it redirects me to https://%26/g
[23:39:10] <saiko-chriskun> doesn't happen in other browsers
[23:39:22] *** chrisbirk has quit IRC
[23:39:52] <zelrik> saiko-chriskun, looks fine here
[23:39:58] <saiko-chriskun> :/
[23:40:11] *** apetro_ has quit IRC
[23:40:14] <zelrik> unless you can give me a way to reproduce it
[23:40:23] *** Willow has quit IRC
[23:40:24] *** btc_panhandler has joined #angularjs
[23:41:27] *** aviraldg has joined #angularjs
[23:41:40] *** tfennelly has quit IRC
[23:41:43] *** braoru has quit IRC
[23:42:50] *** Ymesio has joined #angularjs
[23:42:56] *** josh-k has joined #angularjs
[23:43:00] *** jharbaugh has quit IRC
[23:43:16] *** Reskp has quit IRC
[23:43:48] *** aaronmitchell has quit IRC
[23:44:06] <saiko-chriskun> it was one of my extensions
[23:45:16] *** dccc has joined #angularjs
[23:45:18] *** ustunozgur has quit IRC
[23:45:54] *** jk-5 has quit IRC
[23:47:27] *** jharbaugh has joined #angularjs
[23:47:36] *** tomzx is now known as tomzx`afk
[23:48:02] *** jharbaugh has quit IRC
[23:48:26] <amergin> what would be the best way to handle browser feature checking in angular.js application? What I basically want is 1) check the browser has support for x-y-z features with Modernizr, 2) if something critical is missing, display a message and halt routing and loading the app. 3) otherwise, just continue with loading the app normally
[23:48:39] *** jharbaugh has joined #angularjs
[23:48:54] <s3shs> Foxandxss, you here?
[23:49:13] <Foxandxss> busy
[23:49:18] <s3shs> ok
[23:49:20] *** bmac has quit IRC
[23:49:32] <amergin> should I use ui-router's resolve and build a service that rejects the promise if something is missing, and then handle the routing error?
[23:50:00] *** MuffinMan` has quit IRC
[23:50:47] *** tangorri has quit IRC
[23:50:53] *** brianturgeon has joined #angularjs
[23:50:56] *** jk-5 has joined #angularjs
[23:51:02] *** bmac has joined #angularjs
[23:51:29] <zumba_addict> fyi, $watch is now working after adding $parent
[23:53:23] *** jharbaugh has quit IRC
[23:54:01] *** dbouwman has joined #angularjs
[23:54:02] *** klaut has quit IRC
[23:55:02] *** grose has quit IRC
[23:55:52] *** brianturgeon has quit IRC
[23:56:18] *** danielpquinn has joined #angularjs
[23:56:55] <idvb> I'm curious...if I'm developing an angular service that I'd like to package with bower and this service requires some typical Array.find() and Array.diff() type functions.... should I be making something like lodash a dependency or including just the functions I need? (either writing or borrowing)
[23:57:07] <zumba_addict> I think i'm ready to handle small projects. :) Where do you get your customers? I want to do some freelance programming
[23:58:00] *** sepulveda has joined #angularjs
[23:58:06] *** brianturgeon has joined #angularjs
[23:59:03] *** dccc has quit IRC
[23:59:31] *** jtimon has quit IRC
top

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