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

Toggle Join/Part | bottom
[00:00:05] *** erol_ <erol_!~erol@cam44-h01-89-91-144-193.dsl.sta.abo.bbox.fr> has quit IRC (Remote host closed the connection)
[00:00:07] *** Waitak <Waitak!~Waitak@pool-100-35-223-253.nwrknj.fios.verizon.net> has quit IRC (Quit: Leaving)
[00:01:00] *** beauby <beauby!~beauby@84-72-105-159.dclient.hispeed.ch> has quit IRC (Read error: Connection reset by peer)
[00:01:35] *** whitebook <whitebook!~whitebook@ool-3f8fc04e.dyn.optonline.net> has quit IRC (Ping timeout: 244 seconds)
[00:03:01] *** LeBlaaanc <LeBlaaanc!~LeBlaaanc@4.28.155.182> has joined #angularjs
[00:03:04] *** iraj_ <iraj_!~iraj@91.107.177.130> has quit IRC (Ping timeout: 265 seconds)
[00:04:06] *** blackwind_123 <blackwind_123!~IceChat9@117.254.145.6> has quit IRC (Ping timeout: 264 seconds)
[00:05:16] *** bayousoft <bayousoft!~textual@130.70.12.3> has quit IRC ()
[00:05:35] *** FIFOd <FIFOd!~FIFOd@cpe-172-74-101-60.nc.res.rr.com> has joined #angularjs
[00:05:58] *** nicksloan <nicksloan!~nicksloan@unaffiliated/iamethos> has quit IRC (Quit: My MacBook has gone to sleep. ZZZzzz…)
[00:06:03] *** blackwind_123 <blackwind_123!~IceChat9@117.192.143.246> has joined #angularjs
[00:07:57] *** liefer <liefer!~liefer@3e6b4ca3.rev.stofanet.dk> has quit IRC (Ping timeout: 272 seconds)
[00:08:22] <wrkrcoop> does a service need to be a class if im using es6?
[00:08:43] <wrkrcoop> i dont get why i can’t get this service into my directory’s controller
[00:10:04] *** hansl <hansl!textual@nat/google/x-qzyzuyhtrvrbboej> has quit IRC (Ping timeout: 255 seconds)
[00:12:15] *** beauby <beauby!~beauby@84-72-105-159.dclient.hispeed.ch> has joined #angularjs
[00:13:04] <heartburn> it doesn't, you can make it a factory.
[00:13:07] <heartburn> https://www.youtube.com/watch?v=ImwrezYhw4w
[00:15:59] <phanter> when I define an angular module (angular.module('myApp', []).controller('dropdownCtrl', ...), why do I sometimes need "var myApp =" to get a snipped to work (but sometimes it works without that)?
[00:16:07] *** cyan__ <cyan__!~cyan@217.170.162.68> has quit IRC (Ping timeout: 265 seconds)
[00:16:18] <phanter> (yes I am very very new to AngularJS and js in general)
[00:17:24] <heartburn> wrkrcoop: the only downside of factories is that you cannot to an instanceof check on them.
[00:18:14] *** cuebix <cuebix!~cuebix@8.214.108.190-cust.enetworksgy.com> has quit IRC (Quit: Computer has gone to sleep.)
[00:18:17] <heartburn> but the advantages are just too good to avoid using them.
[00:20:32] <wrkrcoop> damn i got it
[00:20:45] <wrkrcoop> i wasn’t exporting it properly or the way i was exporting it didnt match the way i was importing it ><
[00:21:55] *** sbellina <sbellina!~sbellina@c-75-65-176-38.hsd1.ms.comcast.net> has joined #angularjs
[00:23:34] *** magellanicloud <magellanicloud!~magellani@2a02:810b:8340:3f18:c9a1:b7a3:73fe:3c1f> has quit IRC (Read error: Connection reset by peer)
[00:23:37] *** michaelsharpe <michaelsharpe!~michaelsh@198-48-172-67.cpe.pppoe.ca> has quit IRC (Remote host closed the connection)
[00:26:00] <wrkrcoop> should i set this to equal scope?
[00:26:05] <wrkrcoop> this.scope = $scope
[00:26:13] *** sbellina <sbellina!~sbellina@c-75-65-176-38.hsd1.ms.comcast.net> has quit IRC (Ping timeout: 244 seconds)
[00:26:29] *** jsightler is now known as jsightler_afk
[00:27:06] <heartburn> since you have a separate constructor, yes, you have to this.dep = dep everything in it.
[00:27:24] *** siba <siba!~textual@60-242-28-48.static.tpgi.com.au> has joined #angularjs
[00:27:32] <wrkrcoop> hmm ok
[00:28:00] <wrkrcoop> heartburn: like this? https://gist.github.com/ellismarte/f59688deeeffe0febade37dd2dda3f93#file-blah-js-L23-L37
[00:28:07] *** brollypop <brollypop!~brollypop@195.178.115.1> has joined #angularjs
[00:28:14] <heartburn> yes
[00:28:39] <wrkrcoop> and this is best practices? i feel like its ugyl
[00:28:53] <heartburn> yes, it is ugly.
[00:29:13] <heartburn> as i mentioned, ng1 and es6 don't get along very well.
[00:29:32] <heartburn> however, if you use the factory pattern, that eases the pain somewhat.
[00:29:46] <heartburn> because all your stuff lives inside the constructor.
[00:30:34] <wrkrcoop> hmm what constructor?
[00:30:59] <wrkrcoop> oh use a constructor function? instead of a class?
[00:31:02] *** sahbeewah <sahbeewah!~sahbeewah@14-200-158-113.static.tpgi.com.au> has quit IRC (Quit: sahbeewah)
[00:31:50] *** bbankes <bbankes!~bbankes@50-200-100-242-static.hfc.comcastbusiness.net> has quit IRC (Ping timeout: 260 seconds)
[00:32:43] <heartburn> just put all your logic inside the constructor function.
[00:32:55] <wrkrcoop> hmm ok thanks
[00:33:01] *** brollypop <brollypop!~brollypop@195.178.115.1> has quit IRC (Ping timeout: 265 seconds)
[00:33:02] <heartburn> var me = {};
[00:33:16] <heartburn> me.someMethod = function () {}
[00:33:21] <heartburn> me.someProperty = 42;
[00:33:24] <heartburn> return me;
[00:33:59] *** zivester <zivester!~zivester@38.104.66.138> has quit IRC (Ping timeout: 265 seconds)
[00:34:17] <heartburn> it's still ugly, but at least it's a bit more straightforward.
[00:35:09] <heartburn> ugly in a sense that you're making a class that is essentially a factory now.
[00:36:29] *** Joufflu <Joufflu!~Joufflu@2600:8807:c180:2d4:2473:adbf:4989:6ebb> has joined #angularjs
[00:37:19] *** nadoneves <nadoneves!~Thunderbi@177.131.144.72> has quit IRC (Quit: nadoneves)
[00:43:38] *** craysiii <craysiii!~textual@c-73-202-98-111.hsd1.ca.comcast.net> has joined #angularjs
[00:44:42] *** CreateMo <CreateMo!~textual@47.146.55.67> has joined #angularjs
[00:45:04] *** beauby <beauby!~beauby@84-72-105-159.dclient.hispeed.ch> has quit IRC (Read error: Connection reset by peer)
[00:47:46] *** Triangular <Triangular!tri@46.7.141.237> has quit IRC ()
[00:47:51] *** michaelsharpe <michaelsharpe!~michaelsh@198-48-172-67.cpe.pppoe.ca> has joined #angularjs
[00:47:54] *** LeBlaaanc <LeBlaaanc!~LeBlaaanc@4.28.155.182> has quit IRC (Read error: Connection reset by peer)
[00:47:58] *** michaelsharpe <michaelsharpe!~michaelsh@198-48-172-67.cpe.pppoe.ca> has quit IRC (Read error: Connection reset by peer)
[00:48:09] *** michaelsharpe <michaelsharpe!~michaelsh@198-48-172-67.cpe.pppoe.ca> has joined #angularjs
[00:48:57] *** joshonth_ <joshonth_!~joshonthe@49.49.227.82> has joined #angularjs
[00:48:59] *** moloch <moloch!~moloch@udp060350uds.hawaiiantel.net> has quit IRC (Quit: Bye)
[00:49:20] *** joshontheweb <joshontheweb!~joshonthe@223.206.68.180> has quit IRC (Ping timeout: 252 seconds)
[00:50:30] *** antru <antru!~antru@108.61.166.66> has quit IRC (Ping timeout: 260 seconds)
[00:50:48] *** beauby <beauby!~beauby@84-72-105-159.dclient.hispeed.ch> has joined #angularjs
[00:51:28] *** LeBlaaanc <LeBlaaanc!~LeBlaaanc@4.28.155.182> has joined #angularjs
[00:53:22] *** only <only!~only@unaffiliated/only> has joined #angularjs
[00:53:26] *** moloch <moloch!~moloch@udp060350uds.hawaiiantel.net> has joined #angularjs
[00:53:35] <only> just one more thing, I've got this in a scope -> return rez = 50 - CartService.getTotal(), getDisplayPrice(rez, 0)
[00:53:39] <only> which returns a number
[00:53:49] <only> is there a way I could append a text?
[00:53:56] <only> like "just" before that number?
[00:55:40] *** node9 <node9!~node9@CPE0c473dd24701-CM0c473dd24700.cpe.net.cable.rogers.com> has joined #angularjs
[00:55:58] *** wrkrcoop <wrkrcoop!~martee@adsk-nat-ip14.autodesk.com> has left #angularjs
[00:56:11] *** stefanotorresi <stefanotorresi!~etienne`@84.222.150.11> has quit IRC (Read error: Connection reset by peer)
[00:57:13] *** mischat <mischat!~mischat@2a02:c7f:c006:1e00:5d73:49d8:3f82:2678> has joined #angularjs
[00:59:46] *** Shilon <Shilon!~Shilon@a79-168-104-17.cpe.netcabo.pt> has quit IRC (Quit: Shilon)
[00:59:49] *** whitebook <whitebook!~whitebook@ool-182e2e18.dyn.optonline.net> has joined #angularjs
[01:00:09] *** CAPITANOOO <CAPITANOOO!~CAPITANOO@host122-156-static.117-2-b.business.telecomitalia.it> has joined #angularjs
[01:00:13] *** beauby <beauby!~beauby@84-72-105-159.dclient.hispeed.ch> has quit IRC (Read error: Connection reset by peer)
[01:00:25] *** moloch <moloch!~moloch@udp060350uds.hawaiiantel.net> has quit IRC (Quit: Bye)
[01:01:50] <only> got it, just "text" + var
[01:02:02] *** mischat <mischat!~mischat@2a02:c7f:c006:1e00:5d73:49d8:3f82:2678> has quit IRC (Ping timeout: 265 seconds)
[01:02:16] *** vassagus <vassagus!~vassagus@186.4.2.162> has quit IRC (Remote host closed the connection)
[01:02:25] <craysiii> hello everyone. I am having an issue with an angular2 app. i am getting 404 on my angular bundles defined in systemjs.config.js https://gist.github.com/craysiii/588ee5dc74ade5d9f8ce5fc85edbc366
[01:02:54] <craysiii> i copied most of my config from a working app i made a chapter earlier in the book im using but for some reason im getting these 404s
[01:03:04] *** whiteboo_ <whiteboo_!~whitebook@ool-3f8fc04e.dyn.optonline.net> has quit IRC (Ping timeout: 265 seconds)
[01:03:14] *** vassagus <vassagus!~vassagus@186.4.2.162> has joined #angularjs
[01:04:17] *** davi-lima <davi-lima!~Davi@177.206.196.199.dynamic.adsl.gvt.net.br> has quit IRC (Ping timeout: 240 seconds)
[01:04:43] *** zac <zac!~zac@c-98-209-212-200.hsd1.mi.comcast.net> has joined #angularjs
[01:04:49] *** sahbeewah <sahbeewah!~sahbeewah@220.101.80.170> has joined #angularjs
[01:04:55] <craysiii> something i noticed was in this app, my log looks like this "1] 16.09.26 15:48:17 404 GET /node_modules/: at angular/core/bundles/core dot umd.js" where the colon is still intact, but on my old app the colon is missing
[01:05:19] *** zac_ <zac_!~zac@c-98-209-212-200.hsd1.mi.comcast.net> has joined #angularjs
[01:05:58] *** beauby <beauby!~beauby@84-72-105-159.dclient.hispeed.ch> has joined #angularjs
[01:07:43] *** LeBlaaanc <LeBlaaanc!~LeBlaaanc@4.28.155.182> has quit IRC (Quit: My Mac has gone to sleep. ZZZzzz…)
[01:07:54] *** Aliks <Aliks!~aliks@c-67-180-35-94.hsd1.ca.comcast.net> has quit IRC (Remote host closed the connection)
[01:09:01] *** zac <zac!~zac@c-98-209-212-200.hsd1.mi.comcast.net> has quit IRC (Ping timeout: 255 seconds)
[01:09:19] *** phanter <phanter!~phanter@ip10-170-173-82.adsl2.static.versatel.nl> has quit IRC (Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/)
[01:10:48] *** aarobc <aarobc!~aarobc@216.51.32.182> has quit IRC (Ping timeout: 265 seconds)
[01:11:41] *** vassagus <vassagus!~vassagus@186.4.2.162> has quit IRC (Ping timeout: 244 seconds)
[01:13:37] *** sssilver_ <sssilver_!~sssilver@38.122.48.218> has quit IRC (Ping timeout: 265 seconds)
[01:14:05] *** dodobrain <dodobrain!~dodobrain@14-202-40-12.tpgi.com.au> has quit IRC (Quit: Leaving)
[01:14:38] *** dodobrain <dodobrain!~dodobrain@unaffiliated/freakabcd> has joined #angularjs
[01:16:05] *** raijin <raijin!~raijin@unaffiliated/raijin> has joined #angularjs
[01:20:37] *** romerocesar <romerocesar!~cesar@c-73-97-145-30.hsd1.wa.comcast.net> has quit IRC (Remote host closed the connection)
[01:20:48] *** CAPITANOOO <CAPITANOOO!~CAPITANOO@host122-156-static.117-2-b.business.telecomitalia.it> has quit IRC (Quit: CAPITANOOO)
[01:21:26] *** AnarchyAo <AnarchyAo!~andrew@8.18.217.202> has quit IRC (Ping timeout: 265 seconds)
[01:23:16] *** djboz <djboz!~djboz@c-69-139-16-116.hsd1.pa.comcast.net> has joined #angularjs
[01:23:57] *** raijin <raijin!~raijin@unaffiliated/raijin> has quit IRC (Ping timeout: 272 seconds)
[01:25:16] *** raijin <raijin!~raijin@unaffiliated/raijin> has joined #angularjs
[01:25:43] *** retrospe1tacus is now known as retrospectacus
[01:27:07] *** dcherman <dcherman!~dcherman@164.55.254.106> has quit IRC (Ping timeout: 272 seconds)
[01:28:34] *** Guest87605 <Guest87605!~Ron@104.236.71.143> has quit IRC (Quit: Quit)
[01:28:41] *** D9 <D9!~Ron@104.236.71.143> has joined #angularjs
[01:28:59] *** only <only!~only@unaffiliated/only> has quit IRC (Quit: Leaving...)
[01:30:36] *** davi-lima <davi-lima!~Davi@177.206.196.199.dynamic.adsl.gvt.net.br> has joined #angularjs
[01:30:38] *** beauby <beauby!~beauby@84-72-105-159.dclient.hispeed.ch> has quit IRC (Read error: Connection reset by peer)
[01:30:41] *** bayousoft <bayousoft!~textual@76.72.35.139> has joined #angularjs
[01:30:51] *** beauby <beauby!~beauby@84-72-105-159.dclient.hispeed.ch> has joined #angularjs
[01:31:48] *** antru <antru!~antru@45.32.233.86> has joined #angularjs
[01:33:29] *** dcherman <dcherman!~dcherman@ool-457cbcbd.dyn.optonline.net> has joined #angularjs
[01:33:38] *** Shrooms <Shrooms!~Shrooms@192.187.121.98> has quit IRC (Changing host)
[01:33:38] *** Shrooms <Shrooms!~Shrooms@unaffiliated/shrooms> has joined #angularjs
[01:33:52] *** Aliks <Aliks!~aliks@c-67-180-35-94.hsd1.ca.comcast.net> has joined #angularjs
[01:36:25] *** EBOp <EBOp!816b504d@gateway/web/freenode/ip.129.107.80.77> has joined #angularjs
[01:36:32] <EBOp> Yo, what's a good stack to use with Angular?
[01:36:37] *** raijin <raijin!~raijin@unaffiliated/raijin> has quit IRC (Ping timeout: 272 seconds)
[01:36:48] <EBOp> Is MEAN really all there is?
[01:37:54] <EBOp> Backend:
[01:37:55] *** CreateMo <CreateMo!~textual@47.146.55.67> has quit IRC (Quit: My MacBook has gone to sleep. ZZZzzz…)
[01:38:03] <EBOp> Mongo
[01:38:12] <EBOp> what's a non-Script server backend?
[01:38:24] <snookmz> Depends on your preference. I use Postgres, Golang, ngninx and angularjs
[01:38:25] *** citizen-stig <citizen-stig!~citizen-s@89.221.207.219> has quit IRC (Remote host closed the connection)
[01:38:32] <snookmz> Just because that's what I'm used to.
[01:38:49] <snookmz> Well, I got used to them because nginx and golang are awesome
[01:38:59] <snookmz> But that's just me.
[01:39:05] <EBOp> I'm just used to using SpringBoot and mocking up a rest interface for my front end to call
[01:39:41] <EBOp> I'm new at this...but isn't that how most Backend-to-Frontend communication is THESE days?
[01:40:27] <EBOp> I'm just developing a personal site
[01:40:36] <EBOp> Not enterprise stuff.
[01:41:17] <snookmz> Then I'd stick with what you're already familier with.
[01:41:22] <ericchu> I use koajs
[01:41:47] <snookmz> You're already coding in Angularjs, so nodejs might be good for backend
[01:41:54] *** webguynow <webguynow!~webguynow@c-73-22-239-213.hsd1.il.comcast.net> has quit IRC (Ping timeout: 264 seconds)
[01:42:07] *** webguynow <webguynow!~webguynow@c-73-22-239-213.hsd1.il.comcast.net> has joined #angularjs
[01:42:09] *** edrocks <edrocks!~edrocks@66-194-206-178.static.twtelecom.net> has joined #angularjs
[01:42:36] <EBOp> Why would that be?
[01:43:22] <EBOp> I VERY new to angular, learning through tutorials right now. I don't see a benefit to a server side app written in a scripting language as opposed to a more verbose OO language.
[01:43:50] <EBOp> Security is a thing, does Node really provide that?
[01:44:03] *** neredsenvy <neredsenvy!5d67cbf1@gateway/web/freenode/ip.93.103.203.241> has joined #angularjs
[01:44:19] *** nya_ <nya_!~nya@p7902c6f7.tokynt01.ap.so-net.ne.jp> has joined #angularjs
[01:44:26] *** lavalamp <lavalamp!~lavalamp@unaffiliated/lavalamp> has joined #angularjs
[01:44:31] *** CreateMo <CreateMo!~textual@47.146.55.67> has joined #angularjs
[01:45:06] <neredsenvy> Why does this not work as expeccted. https://dpaste.de/p9TW Instead of assigning the object to the ng-model I get $$hashkey
[01:45:10] *** macwinne_ <macwinne_!~macwinner@192.77.239.202> has joined #angularjs
[01:45:23] *** beauby <beauby!~beauby@84-72-105-159.dclient.hispeed.ch> has quit IRC (Read error: Connection reset by peer)
[01:45:26] *** aghostinme <aghostinme!~aghostinm@unaffiliated/aghostinme> has quit IRC (Ping timeout: 252 seconds)
[01:45:45] <EBOp> Though I will attest to the efficeincy of using mongo with node...that was sweet when I did that.
[01:46:02] *** beauby <beauby!~beauby@84-72-105-159.dclient.hispeed.ch> has joined #angularjs
[01:46:17] *** edrocks <edrocks!~edrocks@66-194-206-178.static.twtelecom.net> has quit IRC (Ping timeout: 240 seconds)
[01:46:18] <snookmz> EBOp: It's personal preference though. I use Golang because it's compiled and almost as quick as c++. I use Nginx for my proxy because it takes care of virtualhosts and SSL security for me.
[01:46:26] *** CreateMo <CreateMo!~textual@47.146.55.67> has quit IRC (Client Quit)
[01:46:34] <snookmz> EBOp: I use postgres because that's what I'm familiar with, and it's meant to be good.
[01:46:41] <EBOp> Ok cool. Thanks Snookmz
[01:46:54] <EBOp> Just making sure there wasn't a BEST STACK with Angular
[01:47:22] <snookmz> EBOp: I think my stack is the best. I've done a lot of research on speed and scalability. But again, that's just my preference
[01:47:43] <snookmz> EBOp: I was using nodejs, but Golang outperforms nodejs and is apparently much easier to scale.
[01:47:46] <EBOp> But for a personal site? Or a time-sensitive business model?
[01:47:56] <EBOp> I won't be scaling.
[01:48:00] <EBOp> I won't be time sensitive
[01:48:08] *** michaelsharpe <michaelsharpe!~michaelsh@198-48-172-67.cpe.pppoe.ca> has quit IRC (Remote host closed the connection)
[01:48:15] <EBOp> Just want security and ease of maintenance.
[01:48:19] <snookmz> Mine is for business and needs to scale
[01:48:36] <snookmz> I don't think Golang is any more difficult to code in than nodejs, it's just another learning curve.
[01:48:37] <EBOp> Snookmz: Makes sense, what's your product, can I see a site?
[01:48:59] <snookmz> https://netscope.com.au That's just the site. I'm rewriting the frontend for the app we sell
[01:49:12] <snookmz> So the website is *not* the app.
[01:49:27] <snookmz> Website is just wordpress *shudder*
[01:50:50] <EBOp> "shudder" indeed. But most people wouldn't care.
[01:50:52] <EBOp> Looks good.
[01:51:04] <EBOp> Neat app, seems....complicated XD.
[01:51:26] <EBOp> snookmz: Thanks for your help dude/dudette! Good evening!
[01:51:26] <ericchu> EBOp: I have used .net framework with angular as well... I'd say it's mostly preference if you aren't worried about scaling and perf
[01:51:45] <EBOp> Snookmz: I HATE .NET
[01:51:55] <snookmz> me too!
[01:51:57] <EBOp> peace!
[01:52:05] *** EBOp <EBOp!816b504d@gateway/web/freenode/ip.129.107.80.77> has quit IRC (Quit: Page closed)
[01:52:28] <snookmz> I was about to say 'don't take my word for it, do your research'
[01:53:24] *** jimklo <jimklo!~jimklo@192.12.16.110> has quit IRC (Remote host closed the connection)
[01:53:45] <neredsenvy> Any idea why this select does not work https://dpaste.de/p9TW
[01:53:58] <neredsenvy> I have it same on other pages and it works here tho
[01:53:59] <neredsenvy> : /
[01:54:12] <neredsenvy> Instead of the selected object I get $$hashkey
[01:57:31] *** Robtop__ <Robtop__!~pwnd_@cpe-2606-A000-FB05-3A00-9490-5287-A732-8C39.dyn6.twc.com> has joined #angularjs
[01:57:48] *** CreateMo <CreateMo!~textual@47.146.55.67> has joined #angularjs
[01:57:54] *** mischat <mischat!~mischat@2a02:c7f:c006:1e00:5d73:49d8:3f82:2678> has joined #angularjs
[01:57:56] <snookmz> neredsenvy: sorry, I don't have time to check code. Try stackexchange?
[01:59:31] *** CreateMo <CreateMo!~textual@47.146.55.67> has quit IRC (Client Quit)
[02:01:10] *** nicksloan <nicksloan!~nicksloan@unaffiliated/iamethos> has joined #angularjs
[02:01:19] *** pwnd_nsfw` <pwnd_nsfw`!~pwnd_@cpe-2606-A000-FB05-3A00-9490-5287-A732-8C39.dyn6.twc.com> has quit IRC (Ping timeout: 272 seconds)
[02:03:00] *** mischat <mischat!~mischat@2a02:c7f:c006:1e00:5d73:49d8:3f82:2678> has quit IRC (Ping timeout: 265 seconds)
[02:03:45] *** moloch <moloch!~moloch@cpe-98-150-237-205.hawaii.res.rr.com> has joined #angularjs
[02:04:20] *** craysiii <craysiii!~textual@c-73-202-98-111.hsd1.ca.comcast.net> has quit IRC (Quit: My MacBook Air has gone to sleep. ZZZzzz…)
[02:05:15] <heartburn> neredsenvy: works fine to me https://plnkr.co/edit/6UCrG0f8w2VTZIcgvhiI?p=preview
[02:05:22] *** jimklo <jimklo!~jimklo@192.12.16.110> has joined #angularjs
[02:05:31] *** jalnt_ <jalnt_!~jalnt@103.43.75.97> has quit IRC (Quit: Bye)
[02:05:45] *** marr <marr!~ccc@87-205-160-88.adsl.inetia.pl> has quit IRC (Ping timeout: 272 seconds)
[02:06:16] *** jalnt <jalnt!~jalnt@103.43.75.97> has joined #angularjs
[02:06:19] *** kuadrosx <kuadrosx!~kuadrosx@190.240.80.94> has quit IRC (Quit: Konversation terminated!)
[02:06:31] <neredsenvy> heartburn: Instead of object I just get $$hashkey: "object:153"..
[02:06:45] <neredsenvy> your plunker tho is not loading
[02:07:10] *** CreateMo <CreateMo!~textual@47.146.55.67> has joined #angularjs
[02:08:38] <heartburn> https://plnkr.co/edit/OftTTPuSdjgj0JCBc9WM?p=preview this one?
[02:08:41] *** bayousoft <bayousoft!~textual@76.72.35.139> has quit IRC ()
[02:08:42] *** CreateMo <CreateMo!~textual@47.146.55.67> has quit IRC (Client Quit)
[02:08:49] *** vassagus <vassagus!~vassagus@186.4.2.162> has joined #angularjs
[02:10:07] *** sbellina <sbellina!~sbellina@c-75-65-176-38.hsd1.ms.comcast.net> has joined #angularjs
[02:11:08] <neredsenvy> hm odd
[02:11:11] <neredsenvy> not working here
[02:11:12] <neredsenvy> : /
[02:11:42] *** al-damiri <al-damiri!uid142631@gateway/web/irccloud.com/x-hjciolureqvpzjng> has quit IRC (Quit: Connection closed for inactivity)
[02:12:37] <heartburn> [x flies theme is playing]
[02:13:53] *** ansimation <ansimation!~textual@208.185.232.10> has quit IRC (Ping timeout: 240 seconds)
[02:14:43] *** sbellina <sbellina!~sbellina@c-75-65-176-38.hsd1.ms.comcast.net> has quit IRC (Ping timeout: 244 seconds)
[02:16:04] *** vassagus <vassagus!~vassagus@186.4.2.162> has quit IRC (Ping timeout: 255 seconds)
[02:17:28] *** plutoniix <plutoniix!~q@node-k6h.pool-101-108.dynamic.totbb.net> has quit IRC (Ping timeout: 244 seconds)
[02:17:53] *** mischat <mischat!~mischat@2a02:c7f:c006:1e00:5d73:49d8:3f82:2678> has joined #angularjs
[02:19:57] *** bayousoft <bayousoft!~textual@76.72.35.139> has joined #angularjs
[02:21:44] *** Ziberius <Ziberius!~IceChat78@pc-11-47-46-190.cm.vtr.net> has joined #angularjs
[02:22:49] *** mischat <mischat!~mischat@2a02:c7f:c006:1e00:5d73:49d8:3f82:2678> has quit IRC (Ping timeout: 265 seconds)
[02:24:12] *** mven <mven!~textual@cpe-173-174-112-125.austin.res.rr.com> has joined #angularjs
[02:24:15] *** mven <mven!~textual@cpe-173-174-112-125.austin.res.rr.com> has quit IRC (Excess Flood)
[02:24:59] *** snacs_ <snacs_!~snacs.net@124-149-183-229.dyn.iinet.net.au> has joined #angularjs
[02:25:33] *** dcherman <dcherman!~dcherman@ool-457cbcbd.dyn.optonline.net> has quit IRC (Ping timeout: 244 seconds)
[02:26:08] *** snacs <snacs!~snacs.net@124-149-183-229.dyn.iinet.net.au> has quit IRC (Ping timeout: 265 seconds)
[02:26:50] *** dcherman <dcherman!~dcherman@ool-457cbcbd.dyn.optonline.net> has joined #angularjs
[02:27:20] *** romerocesar <romerocesar!~cesar@2601:602:9300:6000:e56d:bda3:3d56:584b> has joined #angularjs
[02:28:02] *** jimklo_ <jimklo_!~jimklo@75-128-4-186.dhcp.snlo.ca.charter.com> has joined #angularjs
[02:28:30] *** atula <atula!~neobreed@209-6-221-20.c3-0.hdp-ubr1.sbo-hdp.ma.cable.rcn.com> has joined #angularjs
[02:28:33] <neredsenvy> what the hell is going on : ((
[02:28:47] *** atula <atula!~neobreed@209-6-221-20.c3-0.hdp-ubr1.sbo-hdp.ma.cable.rcn.com> has quit IRC (Remote host closed the connection)
[02:28:48] *** Limarson1 <Limarson1!~marcel.cr@87.151.136.58> has joined #angularjs
[02:29:00] *** djboz <djboz!~djboz@c-69-139-16-116.hsd1.pa.comcast.net> has quit IRC (Remote host closed the connection)
[02:29:12] *** CreateMo <CreateMo!~textual@47.146.55.67> has joined #angularjs
[02:29:37] *** djboz <djboz!~djboz@c-69-139-16-116.hsd1.pa.comcast.net> has joined #angularjs
[02:30:37] <neredsenvy> https://dpaste.de/jm9i anyone got an idea why ng-model would end up being {$$hashkey: "object:42"} instead of the actual selected object from select ?
[02:31:25] *** Limarson <Limarson!~marcel.cr@p57978627.dip0.t-ipconnect.de> has quit IRC (Ping timeout: 244 seconds)
[02:31:56] *** zivester <zivester!~zivester@pool-100-35-226-28.nwrknj.fios.verizon.net> has joined #angularjs
[02:32:00] *** jimklo <jimklo!~jimklo@192.12.16.110> has quit IRC (Ping timeout: 260 seconds)
[02:32:35] *** davi-lima <davi-lima!~Davi@177.206.196.199.dynamic.adsl.gvt.net.br> has quit IRC (Ping timeout: 260 seconds)
[02:32:54] *** bayousoft <bayousoft!~textual@76.72.35.139> has quit IRC (Ping timeout: 264 seconds)
[02:33:02] *** jimklo_ <jimklo_!~jimklo@75-128-4-186.dhcp.snlo.ca.charter.com> has quit IRC (Read error: Connection reset by peer)
[02:33:47] *** bayousoft <bayousoft!~textual@76.72.35.139> has joined #angularjs
[02:34:33] *** djboz <djboz!~djboz@c-69-139-16-116.hsd1.pa.comcast.net> has quit IRC (Remote host closed the connection)
[02:34:49] *** djboz <djboz!~djboz@c-69-139-16-116.hsd1.pa.comcast.net> has joined #angularjs
[02:35:23] *** bbankes <bbankes!~bbankes@2601:680:c402:3215:4df7:1778:7534:d756> has joined #angularjs
[02:39:04] *** CAPITANOOO <CAPITANOOO!~CAPITANOO@host122-156-static.117-2-b.business.telecomitalia.it> has joined #angularjs
[02:40:05] *** phorloop <phorloop!~phorloop@203.213.239.151> has joined #angularjs
[02:41:18] *** bayousoft <bayousoft!~textual@76.72.35.139> has quit IRC (Ping timeout: 264 seconds)
[02:45:00] *** sixr420- <sixr420-!~sixr420@205.185.209.241> has quit IRC (Read error: Connection reset by peer)
[02:45:01] *** Aliks <Aliks!~aliks@c-67-180-35-94.hsd1.ca.comcast.net> has quit IRC (Remote host closed the connection)
[02:46:12] *** alex____ <alex____!5aca6db5@gateway/web/freenode/ip.90.202.109.181> has quit IRC (Ping timeout: 240 seconds)
[02:48:28] *** antru <antru!~antru@45.32.233.86> has quit IRC (Ping timeout: 244 seconds)
[02:49:17] *** citizen-stig <citizen-stig!~citizen-s@89.221.207.219> has joined #angularjs
[02:52:48] *** mven <mven!~textual@cpe-173-174-112-125.austin.res.rr.com> has joined #angularjs
[02:52:52] *** mven <mven!~textual@cpe-173-174-112-125.austin.res.rr.com> has quit IRC (Excess Flood)
[02:53:22] *** CAPITANOOO <CAPITANOOO!~CAPITANOO@host122-156-static.117-2-b.business.telecomitalia.it> has quit IRC (Quit: CAPITANOOO)
[02:53:38] <heartburn> i guess, success.results doesn't contain what you it contains, neredsenvy.
[02:53:55] <heartburn> which leads to weird stuff in distributors
[02:54:06] <heartburn> try success.data.results
[02:54:09] *** citizen-stig <citizen-stig!~citizen-s@89.221.207.219> has quit IRC (Ping timeout: 244 seconds)
[02:54:23] <heartburn> the response body is in there.
[02:54:31] *** inVINCEable <inVINCEable!~inVINCEab@2601:805:8200:f5b0:4c44:6155:9106:8b19> has quit IRC (Ping timeout: 272 seconds)
[02:54:43] <neredsenvy> heartburn: I logged the response it's what it should be : //
[02:54:51] <heartburn> if you rename success to response, that'll be more clear why.
[02:54:54] <neredsenvy> problem is it never assignes the selected value to the ng-model
[02:55:06] *** romerocesar <romerocesar!~cesar@2601:602:9300:6000:e56d:bda3:3d56:584b> has quit IRC (Remote host closed the connection)
[02:56:32] *** {DV8} <{DV8}!~Deviate@135-23-110-43.cpe.pppoe.ca> has joined #angularjs
[02:56:37] <heartburn> that could be because in the view you use ng-model='distributor', and not selectedDistributor. at least it seems so from your snippet.
[02:58:46] <neredsenvy> I saw that fixed it but still the same : //
[02:59:00] <neredsenvy> even added a second select
[02:59:10] <neredsenvy> completely basic still the same problem
[02:59:36] <heartburn> [x files theme plays louder]
[03:00:49] *** jomcode <jomcode!~jomcode@24-116-245-96.cpe.cableone.net> has joined #angularjs
[03:04:51] <neredsenvy> oh for fucks sake problem is it's withing uib-tab
[03:04:57] *** Aliks <Aliks!~aliks@c-67-180-35-94.hsd1.ca.comcast.net> has joined #angularjs
[03:09:03] *** donguston <donguston!~GEEGEEGEE@cpc12-sprt2-2-0-cust478.17-2.cable.virginm.net> has joined #angularjs
[03:09:22] *** donguston <donguston!~GEEGEEGEE@cpc12-sprt2-2-0-cust478.17-2.cable.virginm.net> has quit IRC (Remote host closed the connection)
[03:12:09] *** jomcode <jomcode!~jomcode@24-116-245-96.cpe.cableone.net> has quit IRC (Quit: Leaving)
[03:13:36] *** vassagus <vassagus!~vassagus@186.4.2.162> has joined #angularjs
[03:18:37] *** mischat <mischat!~mischat@2a02:c7f:c006:1e00:5d73:49d8:3f82:2678> has joined #angularjs
[03:20:29] *** sharkasdf <sharkasdf!~Mike@cpe-72-130-247-114.hawaii.res.rr.com> has joined #angularjs
[03:21:01] *** vassagus <vassagus!~vassagus@186.4.2.162> has quit IRC (Ping timeout: 244 seconds)
[03:23:17] *** learnme_ <learnme_!6b0adecf@gateway/web/freenode/ip.107.10.222.207> has joined #angularjs
[03:23:43] *** mischat <mischat!~mischat@2a02:c7f:c006:1e00:5d73:49d8:3f82:2678> has quit IRC (Ping timeout: 265 seconds)
[03:24:22] <learnme_> What's the proper pattern for making two completely separate components interact? In react/redux I have something like a reducer that can effect a state change across a different component, but how do I do the same in Angular 1.5?
[03:24:30] *** beauby <beauby!~beauby@84-72-105-159.dclient.hispeed.ch> has quit IRC (Ping timeout: 264 seconds)
[03:26:50] *** YottaByte <YottaByte!~YottaByte@unaffiliated/yottabyte> has quit IRC (Ping timeout: 260 seconds)
[03:28:08] *** bmonk <bmonk!~b@unaffiliated/bmonk> has joined #angularjs
[03:28:17] *** nate_c <nate_c!~ntqz@ip24-253-25-149.lv.lv.cox.net> has quit IRC (Ping timeout: 240 seconds)
[03:29:41] *** CreateMo <CreateMo!~textual@47.146.55.67> has quit IRC (Quit: My MacBook has gone to sleep. ZZZzzz…)
[03:30:12] *** cuebix <cuebix!~cuebix@8.214.108.190-cust.enetworksgy.com> has joined #angularjs
[03:31:49] *** bmonk <bmonk!~b@unaffiliated/bmonk> has left #angularjs ("Leaving")
[03:32:23] *** leolrrj <leolrrj!~leolrrj@rrcs-24-73-238-194.se.biz.rr.com> has joined #angularjs
[03:32:59] *** burzum <burzum!~burzum@p4FDF8D3F.dip0.t-ipconnect.de> has joined #angularjs
[03:34:21] *** burzum2 <burzum2!~burzum@p4FDF8D1E.dip0.t-ipconnect.de> has quit IRC (Ping timeout: 265 seconds)
[03:39:37] *** shinnya <shinnya!~shinnya@245.144.137.133.dy.bbexcite.jp> has quit IRC (Ping timeout: 244 seconds)
[03:41:32] *** Girafferson <Girafferson!~dakota@2601:281:8001:663d:512e:1691:93aa:95d3> has joined #angularjs
[03:42:06] *** Girafferson <Girafferson!~dakota@2601:281:8001:663d:512e:1691:93aa:95d3> has quit IRC (Remote host closed the connection)
[03:42:35] *** Girafferson <Girafferson!~dakota@2601:281:8001:663d:512e:1691:93aa:95d3> has joined #angularjs
[03:42:43] *** Girafferson <Girafferson!~dakota@2601:281:8001:663d:512e:1691:93aa:95d3> has quit IRC (Client Quit)
[03:44:00] *** edrocks <edrocks!~edrocks@66-194-206-178.static.twtelecom.net> has joined #angularjs
[03:44:17] *** Girafferson <Girafferson!~dakota@2601:281:8001:663d:512e:1691:93aa:95d3> has joined #angularjs
[03:45:00] *** RangerRick <RangerRick!~quassel@cpe-2606-A000-45C2-6901-82EE-73FF-FE9F-967E.dyn6.twc.com> has quit IRC (Quit: No Ping reply in 180 seconds.)
[03:49:00] *** edrocks <edrocks!~edrocks@66-194-206-178.static.twtelecom.net> has quit IRC (Ping timeout: 276 seconds)
[03:51:41] *** amcorreia <amcorreia!~amcorreia@2804:7f5:280:554d::1> has quit IRC (Remote host closed the connection)
[03:52:17] *** RangerRick <RangerRick!~quassel@cpe-2606-A000-45C2-6901-82EE-73FF-FE9F-967E.dyn6.twc.com> has joined #angularjs
[03:55:18] *** ycon_ <ycon_!~ycon_@121.209.3.211> has joined #angularjs
[03:55:34] *** YottaByte <YottaByte!~YottaByte@unaffiliated/yottabyte> has joined #angularjs
[03:58:05] *** leolrrj <leolrrj!~leolrrj@rrcs-24-73-238-194.se.biz.rr.com> has quit IRC (Remote host closed the connection)
[03:59:08] *** sbellina <sbellina!~sbellina@c-75-65-176-38.hsd1.ms.comcast.net> has joined #angularjs
[03:59:37] *** leolrrj <leolrrj!~leolrrj@rrcs-24-73-238-194.se.biz.rr.com> has joined #angularjs
[04:01:17] *** anjumkaiser <anjumkaiser!~anjumkais@39.50.233.136> has joined #angularjs
[04:01:39] *** Aliks <Aliks!~aliks@c-67-180-35-94.hsd1.ca.comcast.net> has quit IRC (Remote host closed the connection)
[04:02:43] *** sbellina <sbellina!~sbellina@c-75-65-176-38.hsd1.ms.comcast.net> has quit IRC (Ping timeout: 255 seconds)
[04:04:11] *** Aliks <Aliks!~aliks@c-67-180-35-94.hsd1.ca.comcast.net> has joined #angularjs
[04:07:01] *** Rodya_ <Rodya_!~Rodya_@c-71-224-101-129.hsd1.pa.comcast.net> has quit IRC (Remote host closed the connection)
[04:08:06] *** ycon_ <ycon_!~ycon_@121.209.3.211> has quit IRC (Remote host closed the connection)
[04:08:09] *** arguros <arguros!~arguros@45-18-228-115.lightspeed.frokca.sbcglobal.net> has joined #angularjs
[04:08:10] *** arguros <arguros!~arguros@45-18-228-115.lightspeed.frokca.sbcglobal.net> has quit IRC (Remote host closed the connection)
[04:08:10] *** rickmak <rickmak!~rickmak@203186221114.ctinets.com> has joined #angularjs
[04:09:13] *** raijin <raijin!~raijin@unaffiliated/raijin> has joined #angularjs
[04:10:29] *** LeBlaaanc <LeBlaaanc!~LeBlaaanc@47.188.236.163> has joined #angularjs
[04:15:16] *** LeBlaaanc <LeBlaaanc!~LeBlaaanc@47.188.236.163> has quit IRC (Client Quit)
[04:15:30] *** zeioth <zeioth!~zeioth@5.red-80-39-129.dynamicip.rima-tde.net> has quit IRC (Ping timeout: 264 seconds)
[04:18:12] *** vassagus <vassagus!~vassagus@186.4.2.162> has joined #angularjs
[04:19:34] *** mischat <mischat!~mischat@2a02:c7f:c006:1e00:5d73:49d8:3f82:2678> has joined #angularjs
[04:19:34] *** LeBlaaanc <LeBlaaanc!~LeBlaaanc@47.188.236.163> has joined #angularjs
[04:21:24] *** lavalamp <lavalamp!~lavalamp@unaffiliated/lavalamp> has quit IRC (Quit: (> '.' )>)
[04:21:40] *** beauby <beauby!~beauby@84-72-105-159.dclient.hispeed.ch> has joined #angularjs
[04:22:06] *** fedenunez1 <fedenunez1!~fede@r167-60-210-129.dialup.adsl.anteldata.net.uy> has quit IRC (Ping timeout: 264 seconds)
[04:23:31] *** deez79 <deez79!~deez79@52.68.197.104.bc.googleusercontent.com> has quit IRC (Remote host closed the connection)
[04:24:37] *** mischat <mischat!~mischat@2a02:c7f:c006:1e00:5d73:49d8:3f82:2678> has quit IRC (Ping timeout: 265 seconds)
[04:25:00] *** LeBlaaanc <LeBlaaanc!~LeBlaaanc@47.188.236.163> has quit IRC (Quit: My Mac has gone to sleep. ZZZzzz…)
[04:25:35] *** quakephil <quakephil!~smuxi@cpe-69-200-246-39.nyc.res.rr.com> has quit IRC (Ping timeout: 265 seconds)
[04:25:40] *** LeBlaaanc <LeBlaaanc!~LeBlaaanc@47.188.236.163> has joined #angularjs
[04:26:57] *** beauby <beauby!~beauby@84-72-105-159.dclient.hispeed.ch> has quit IRC (Ping timeout: 265 seconds)
[04:27:21] *** vassagus <vassagus!~vassagus@186.4.2.162> has quit IRC (Ping timeout: 276 seconds)
[04:28:40] *** phorloop <phorloop!~phorloop@203.213.239.151> has quit IRC (Quit: My laptop go to sleep. ZZZzzz…)
[04:29:08] *** csk <csk!~csk@190-21-122-53.baf.movistar.cl> has quit IRC (Quit: ZZZzzz…)
[04:29:24] *** adarshaj <adarshaj!~adarshaj@unaffiliated/adarshaj> has quit IRC (Ping timeout: 250 seconds)
[04:29:56] *** Conn337 <Conn337!Conn337@cpe-192-180-198-78.kya.res.rr.com> has joined #angularjs
[04:30:16] *** nausea <nausea!~head@unaffiliated/neofreak> has quit IRC (Ping timeout: 250 seconds)
[04:30:46] *** LeBlaaanc <LeBlaaanc!~LeBlaaanc@47.188.236.163> has quit IRC (Quit: My Mac has gone to sleep. ZZZzzz…)
[04:30:47] *** GuiltyLemon <GuiltyLemon!~guiltylem@unaffiliated/guiltylemon> has quit IRC (Ping timeout: 272 seconds)
[04:31:31] *** LeBlaaanc <LeBlaaanc!~LeBlaaanc@47.188.236.163> has joined #angularjs
[04:31:54] *** GuiltyLemon <GuiltyLemon!~guiltylem@unaffiliated/guiltylemon> has joined #angularjs
[04:33:15] *** plutoniix <plutoniix!~q@175.176.220.2> has joined #angularjs
[04:33:37] *** adarshaj <adarshaj!~adarshaj@unaffiliated/adarshaj> has joined #angularjs
[04:35:25] *** nausea <nausea!head@ticklemynausea.net> has joined #angularjs
[04:35:25] *** nausea <nausea!head@ticklemynausea.net> has quit IRC (Changing host)
[04:35:25] *** nausea <nausea!head@unaffiliated/neofreak> has joined #angularjs
[04:36:32] *** bob <bob!ca687cb2@gateway/web/freenode/ip.202.104.124.178> has joined #angularjs
[04:36:55] *** bob is now known as Guest17340
[04:36:56] *** Guest17340 <Guest17340!ca687cb2@gateway/web/freenode/ip.202.104.124.178> has left #angularjs
[04:38:19] *** citizen-stig <citizen-stig!~citizen-s@89.221.207.219> has joined #angularjs
[04:38:42] *** djboz <djboz!~djboz@c-69-139-16-116.hsd1.pa.comcast.net> has quit IRC (Read error: Connection reset by peer)
[04:39:26] *** LeBlaaanc <LeBlaaanc!~LeBlaaanc@47.188.236.163> has quit IRC (Quit: My Mac has gone to sleep. ZZZzzz…)
[04:40:12] *** djboz <djboz!~djboz@69.139.16.116> has joined #angularjs
[04:43:24] *** citizen-stig <citizen-stig!~citizen-s@89.221.207.219> has quit IRC (Ping timeout: 265 seconds)
[04:44:33] *** chachasmooth <chachasmooth!~chachasmo@unaffiliated/chachasmooth> has quit IRC (Ping timeout: 244 seconds)
[04:44:50] *** raijin <raijin!~raijin@unaffiliated/raijin> has quit IRC (Remote host closed the connection)
[04:45:11] *** whitebook <whitebook!~whitebook@ool-182e2e18.dyn.optonline.net> has quit IRC (Remote host closed the connection)
[04:45:37] *** mven <mven!~textual@cpe-173-174-112-125.austin.res.rr.com> has joined #angularjs
[04:45:39] *** mven <mven!~textual@cpe-173-174-112-125.austin.res.rr.com> has quit IRC (Excess Flood)
[04:45:57] *** chachasmooth <chachasmooth!~chachasmo@unaffiliated/chachasmooth> has joined #angularjs
[04:46:07] *** cliluw <cliluw!~cliluw@unaffiliated/cliluw> has quit IRC (Read error: Connection reset by peer)
[04:48:03] *** Aliks <Aliks!~aliks@c-67-180-35-94.hsd1.ca.comcast.net> has quit IRC (Remote host closed the connection)
[04:48:19] *** LeBlaaanc <LeBlaaanc!~LeBlaaanc@47.188.236.163> has joined #angularjs
[04:48:32] *** cliluw <cliluw!~cliluw@unaffiliated/cliluw> has joined #angularjs
[04:49:30] <heartburn> learnme_: the state is tracked with factories/services in ng.
[04:50:28] *** re1_ <re1_!~reiser@178.220.4.176> has joined #angularjs
[04:50:31] *** pspfolio_ <pspfolio_!~pspfolio@62-121-49-2-static-dsl.ssp.fi> has joined #angularjs
[04:51:30] <heartburn> basically, a factory/service is somewhat-kinda-like-redux thing in angular terms. all shared data and logic lives there.
[04:52:38] *** d10n-work <d10n-work!uid37161@gateway/web/irccloud.com/x-fbjyikazxbwvmlvn> has quit IRC (Quit: Connection closed for inactivity)
[04:53:12] *** djboz <djboz!~djboz@69.139.16.116> has quit IRC (Remote host closed the connection)
[04:53:49] *** djboz <djboz!~djboz@c-69-139-16-116.hsd1.pa.comcast.net> has joined #angularjs
[04:54:00] *** re1 <re1!~reiser@178.220.4.176> has quit IRC (Ping timeout: 276 seconds)
[04:54:00] *** pspfolio <pspfolio!~pspfolio@62-121-49-2-static-dsl.ssp.fi> has quit IRC (Ping timeout: 276 seconds)
[04:54:39] *** cliluw <cliluw!~cliluw@unaffiliated/cliluw> has quit IRC (Ping timeout: 276 seconds)
[04:54:59] *** cliluw <cliluw!~cliluw@unaffiliated/cliluw> has joined #angularjs
[04:55:05] *** dcherman <dcherman!~dcherman@ool-457cbcbd.dyn.optonline.net> has quit IRC (Ping timeout: 240 seconds)
[04:55:14] *** howitdo <howitdo!~howitdo@unaffiliated/howitdo> has quit IRC (Remote host closed the connection)
[04:55:57] *** LeBlaaanc <LeBlaaanc!~LeBlaaanc@47.188.236.163> has quit IRC (Quit: My Mac has gone to sleep. ZZZzzz…)
[04:56:13] *** rickmak <rickmak!~rickmak@203186221114.ctinets.com> has quit IRC (Quit: rickmak)
[04:56:38] <learnme_> heartburn: so for a basic example
[04:56:41] *** hashtd <hashtd!312317e0@gateway/web/freenode/ip.49.35.23.224> has joined #angularjs
[04:56:48] <learnme_> if I had a "Sidebar" that was used on all my pages
[04:56:54] <learnme_> And I wanted to "open" said sidebar
[04:57:01] *** LeBlaaanc <LeBlaaanc!~LeBlaaanc@47.188.236.163> has joined #angularjs
[04:57:04] <learnme_> I'd utilize a "sidebar.service.js"
[04:57:17] <learnme_> and just utilize the available API from the service?
[04:57:27] *** djboz <djboz!~djboz@c-69-139-16-116.hsd1.pa.comcast.net> has quit IRC (Remote host closed the connection)
[04:57:39] *** djboz <djboz!~djboz@c-69-139-16-116.hsd1.pa.comcast.net> has joined #angularjs
[04:57:46] <learnme_> And that would be considered my "sidebar" state for my app?
[04:58:08] <heartburn> <div id="sidebar" ng-class="{ 'is-active': $ctrl.SidebarService.isActive }"></div>
[04:58:12] <heartburn> something like this --^
[04:58:23] <learnme_> Do changes to the state of my service trigger throughout all the attached components?
[04:58:29] <heartburn> or <div id="sidebar" ng-if='$ctrl.SidebarService.isActive"></div>
[04:58:32] <learnme_> Do I need any additional "watches" or anything similar?
[04:59:04] <heartburn> everything within angular scope is being $watched, so you rarely need to do something explicitly.
[04:59:10] <learnme_> Mk.
[04:59:19] <learnme_> Is there any perf problems I need to worry about?
[04:59:28] <heartburn> when it isn't, you can do $scope.$apply() to trigger another digest cycle
[04:59:30] <learnme_> That's kinda where VDOM came in for React/Redux
[04:59:40] <learnme_> So, I just wanna make sure I don't do anything stupid
[04:59:58] *** YottaByte <YottaByte!~YottaByte@unaffiliated/yottabyte> has quit IRC ()
[05:00:08] *** plutoniix <plutoniix!~q@175.176.220.2> has quit IRC (Ping timeout: 252 seconds)
[05:01:14] <heartburn> nah, it's fine for the most part. unless you're trying really really hard, you're not gonna have noticeable performance issues.
[05:01:49] <heartburn> that being said, ng is not the fastest thing by design, keep that in mind.
[05:02:08] <heartburn> but again, on your average project, you're not gonna notice that.
[05:06:40] *** rickmak_ <rickmak_!~rickmak@203186221114.ctinets.com> has joined #angularjs
[05:06:55] *** djboz <djboz!~djboz@c-69-139-16-116.hsd1.pa.comcast.net> has quit IRC (Remote host closed the connection)
[05:07:31] *** djboz <djboz!~djboz@c-69-139-16-116.hsd1.pa.comcast.net> has joined #angularjs
[05:08:40] *** Aliks <Aliks!~aliks@2600:1010:b055:d13c:7443:b992:d38f:5272> has joined #angularjs
[05:09:34] *** lavalamp <lavalamp!~lavalamp@unaffiliated/lavalamp> has joined #angularjs
[05:12:28] *** djboz <djboz!~djboz@c-69-139-16-116.hsd1.pa.comcast.net> has quit IRC (Ping timeout: 265 seconds)
[05:13:42] *** zac_ <zac_!~zac@c-98-209-212-200.hsd1.mi.comcast.net> has quit IRC (Remote host closed the connection)
[05:14:15] *** zac <zac!~zac@c-98-209-212-200.hsd1.mi.comcast.net> has joined #angularjs
[05:17:57] *** hashtd <hashtd!312317e0@gateway/web/freenode/ip.49.35.23.224> has quit IRC (Quit: Page closed)
[05:18:15] *** LeBlaaanc <LeBlaaanc!~LeBlaaanc@47.188.236.163> has quit IRC (Read error: Connection reset by peer)
[05:18:49] *** LeBlaaanc <LeBlaaanc!~LeBlaaanc@47.188.236.163> has joined #angularjs
[05:18:50] *** zac <zac!~zac@c-98-209-212-200.hsd1.mi.comcast.net> has quit IRC (Ping timeout: 260 seconds)
[05:19:50] *** Guest65125 <Guest65125!kof@ip194c212.banglalionwimax.com> has joined #angularjs
[05:20:21] *** mischat <mischat!~mischat@2a02:c7f:c006:1e00:5d73:49d8:3f82:2678> has joined #angularjs
[05:20:23] *** sbellina <sbellina!~sbellina@c-75-65-176-38.hsd1.ms.comcast.net> has joined #angularjs
[05:21:27] *** LeBlaaanc <LeBlaaanc!~LeBlaaanc@47.188.236.163> has quit IRC (Max SendQ exceeded)
[05:23:04] *** LeBlaaanc <LeBlaaanc!~LeBlaaanc@47.188.236.163> has joined #angularjs
[05:23:54] *** vassagus <vassagus!~vassagus@186.4.2.162> has joined #angularjs
[05:24:28] *** sahbeewah <sahbeewah!~sahbeewah@220.101.80.170> has quit IRC (Quit: sahbeewah)
[05:25:31] *** mischat <mischat!~mischat@2a02:c7f:c006:1e00:5d73:49d8:3f82:2678> has quit IRC (Ping timeout: 265 seconds)
[05:26:47] *** antiPoP <antiPoP!~antiPoP@unaffiliated/antipop> has joined #angularjs
[05:26:58] *** Guest65125 <Guest65125!kof@ip194c212.banglalionwimax.com> has quit IRC (Ping timeout: 265 seconds)
[05:27:08] *** raijin <raijin!~raijin@unaffiliated/raijin> has joined #angularjs
[05:27:54] *** romerocesar <romerocesar!~cesar@2601:602:9300:6000:e56d:bda3:3d56:584b> has joined #angularjs
[05:28:06] *** rho <rho!~rho@drupal.org/user/114058/view> has quit IRC (Ping timeout: 264 seconds)
[05:28:18] *** romerocesar <romerocesar!~cesar@2601:602:9300:6000:e56d:bda3:3d56:584b> has quit IRC (Remote host closed the connection)
[05:29:11] *** romerocesar <romerocesar!~cesar@2601:602:9300:6000:29e7:ce73:4d49:42c4> has joined #angularjs
[05:30:28] *** gvanderest <gvanderest!~gvanderes@S01061cabc0b0f193.ok.shawcable.net> has quit IRC (Quit: Leaving...)
[05:31:43] *** vassagus <vassagus!~vassagus@186.4.2.162> has quit IRC (Ping timeout: 265 seconds)
[05:35:07] *** LeBlaaanc <LeBlaaanc!~LeBlaaanc@47.188.236.163> has quit IRC (Quit: My Mac has gone to sleep. ZZZzzz…)
[05:37:32] *** Wizek <Wizek!~Wizek@catv-89-132-132-110.catv.broadband.hu> has quit IRC (Ping timeout: 265 seconds)
[05:38:51] <learnme_> heartburn: I can't seem to get my SidebarService.isActive to change states when I toggle that state of the service in a different component
[05:39:16] <learnme_> Do I need to change the state in any other fashion that this.isActive = !this.isActive;
[05:39:33] *** leolrrj <leolrrj!~leolrrj@rrcs-24-73-238-194.se.biz.rr.com> has quit IRC (Remote host closed the connection)
[05:39:39] <learnme_> Do I have to manage it as an object, in order to do some kind of pass by reference?
[05:42:25] *** snacs_ <snacs_!~snacs.net@124-149-183-229.dyn.iinet.net.au> has quit IRC (Quit: My MacBook has gone to sleep. ZZZzzz…)
[05:42:49] <learnme_> Does it make a difference if I made it a factory and not a service?
[05:45:21] *** sahbeewah <sahbeewah!~sahbeewah@220.101.80.170> has joined #angularjs
[05:46:15] *** edrocks <edrocks!~edrocks@66.194.206.178> has joined #angularjs
[05:46:55] <heartburn> yes, simple assignment should trigger the update, no, you can manage it as you please, and no, no difference. i'd suggest using factories tho.
[05:47:14] <heartburn> learnme_: could you please post a plunker?
[05:47:33] <learnme_> actually, just figured it out
[05:47:41] *** romerocesar_ <romerocesar_!~cesar@c-73-97-145-30.hsd1.wa.comcast.net> has joined #angularjs
[05:47:56] <learnme_> Just have to make sure to just not hard set things using XyzService.prop
[05:48:03] <learnme_> Have to call the method of the service
[05:48:09] <learnme_> to make sure the watcher gets attached
[05:49:30] *** learnme_ <learnme_!6b0adecf@gateway/web/freenode/ip.107.10.222.207> has quit IRC (Quit: Page closed)
[05:49:57] *** romerocesar <romerocesar!~cesar@2601:602:9300:6000:29e7:ce73:4d49:42c4> has quit IRC (Ping timeout: 272 seconds)
[05:51:12] *** edrocks <edrocks!~edrocks@66.194.206.178> has quit IRC (Ping timeout: 276 seconds)
[05:51:44] *** LeBlaaanc <LeBlaaanc!~LeBlaaanc@47.188.236.163> has joined #angularjs
[05:52:37] *** romerocesar <romerocesar!~cesar@2001:558:600a:8b:34ab:782e:11e3:8386> has joined #angularjs
[05:53:42] *** romerocesar <romerocesar!~cesar@2001:558:600a:8b:34ab:782e:11e3:8386> has quit IRC (Read error: Connection reset by peer)
[05:54:19] *** romerocesar <romerocesar!~cesar@c-73-221-105-191.hsd1.wa.comcast.net> has joined #angularjs
[05:55:37] *** Aliks <Aliks!~aliks@2600:1010:b055:d13c:7443:b992:d38f:5272> has quit IRC (Remote host closed the connection)
[05:55:39] *** romerocesar_ <romerocesar_!~cesar@c-73-97-145-30.hsd1.wa.comcast.net> has quit IRC (Ping timeout: 272 seconds)
[05:55:45] *** whitebook <whitebook!~whitebook@ool-3f8fc12e.dyn.optonline.net> has joined #angularjs
[05:57:23] *** romerocesar <romerocesar!~cesar@c-73-221-105-191.hsd1.wa.comcast.net> has quit IRC (Read error: Connection reset by peer)
[05:57:46] *** romerocesar <romerocesar!~cesar@c-73-221-105-191.hsd1.wa.comcast.net> has joined #angularjs
[05:57:50] *** lavalamp <lavalamp!~lavalamp@unaffiliated/lavalamp> has quit IRC (Quit: (> '.' )>)
[05:59:04] *** idwaker <idwaker!~idwaker@202.166.206.8> has joined #angularjs
[06:00:43] *** whitebook <whitebook!~whitebook@ool-3f8fc12e.dyn.optonline.net> has quit IRC (Ping timeout: 265 seconds)
[06:03:10] *** romerocesar <romerocesar!~cesar@c-73-221-105-191.hsd1.wa.comcast.net> has quit IRC (Ping timeout: 260 seconds)
[06:04:09] *** phorloop <phorloop!~phorloop@203.213.239.151> has joined #angularjs
[06:04:56] *** luciusmodestus <luciusmodestus!6cade5d7@gateway/web/freenode/ip.108.173.229.215> has joined #angularjs
[06:05:10] *** Elisha <Elisha!~elisha@tm.213.143.68.74.nm.telemach.net> has joined #angularjs
[06:07:30] *** a_thakur <a_thakur!~a_thakur@103.225.103.242> has joined #angularjs
[06:07:56] *** LeBlaaanc <LeBlaaanc!~LeBlaaanc@47.188.236.163> has quit IRC (Quit: My Mac has gone to sleep. ZZZzzz…)
[06:07:59] *** romerocesar <romerocesar!~cesar@c-67-183-219-247.hsd1.wa.comcast.net> has joined #angularjs
[06:08:23] *** Joufflu <Joufflu!~Joufflu@2600:8807:c180:2d4:2473:adbf:4989:6ebb> has quit IRC (Read error: Connection reset by peer)
[06:09:30] *** spriz <spriz!~spriz@b29bd7a0.rev.stofanet.dk> has quit IRC (Ping timeout: 250 seconds)
[06:09:35] *** raijin <raijin!~raijin@unaffiliated/raijin> has quit IRC (Ping timeout: 272 seconds)
[06:10:55] <idwaker> Hi, i need to load constants (constants.js) from vendor using ( angularjs + webpack + es6 ). Is there any resources for loading constants/settings/config using separate file using webpack and es6 ?
[06:11:40] <idwaker> by resources i mean blogs/tutorials etc..
[06:11:43] *** LeBlaaanc <LeBlaaanc!~LeBlaaanc@47.188.236.163> has joined #angularjs
[06:12:58] *** _moloch <_moloch!~moloch@cpe-98-150-237-205.hawaii.res.rr.com> has joined #angularjs
[06:14:16] *** moloch <moloch!~moloch@cpe-98-150-237-205.hawaii.res.rr.com> has quit IRC (Ping timeout: 265 seconds)
[06:14:50] *** citizen-stig <citizen-stig!~citizen-s@89.221.207.219> has joined #angularjs
[06:16:12] *** rscata <rscata!~cata@5.2.202.145> has joined #angularjs
[06:18:00] *** cacts <cacts!~cactus@c-174-51-80-218.hsd1.co.comcast.net> has joined #angularjs
[06:18:23] *** luciusmodestus <luciusmodestus!6cade5d7@gateway/web/freenode/ip.108.173.229.215> has left #angularjs
[06:21:20] *** mischat <mischat!~mischat@97e1b0a3.skybroadband.com> has joined #angularjs
[06:21:46] *** plutoniix <plutoniix!~q@175.176.220.2> has joined #angularjs
[06:21:48] *** plutoniix <plutoniix!~q@175.176.220.2> has quit IRC (Max SendQ exceeded)
[06:22:16] *** plutoniix <plutoniix!~q@175.176.220.2> has joined #angularjs
[06:22:30] *** cuebix <cuebix!~cuebix@8.214.108.190-cust.enetworksgy.com> has quit IRC (Quit: Computer has gone to sleep.)
[06:24:28] *** anjumkaiser <anjumkaiser!~anjumkais@39.50.233.136> has quit IRC (Quit: Leaving.)
[06:26:20] *** mischat <mischat!~mischat@97e1b0a3.skybroadband.com> has quit IRC (Ping timeout: 265 seconds)
[06:27:00] *** brollypop <brollypop!~brollypop@195.178.115.1> has joined #angularjs
[06:28:08] *** rickmak__ <rickmak__!~rickmak@203186221114.ctinets.com> has joined #angularjs
[06:28:11] *** winfli <winfli!~winfli@189.208.142.207> has joined #angularjs
[06:28:34] *** vassagus <vassagus!~vassagus@186.4.2.162> has joined #angularjs
[06:28:35] *** rickmak_ <rickmak_!~rickmak@203186221114.ctinets.com> has quit IRC (Ping timeout: 272 seconds)
[06:28:35] *** brollypop <brollypop!~brollypop@195.178.115.1> has quit IRC (Read error: Connection reset by peer)
[06:29:02] *** brollypop <brollypop!~brollypop@195.178.115.1> has joined #angularjs
[06:29:06] *** jtimon <jtimon!~quassel@150.110.132.37.dynamic.jazztel.es> has quit IRC (Remote host closed the connection)
[06:30:06] *** nicksloan <nicksloan!~nicksloan@unaffiliated/iamethos> has quit IRC (Quit: My MacBook has gone to sleep. ZZZzzz…)
[06:30:26] *** eshlox <eshlox!uid44222@gateway/web/irccloud.com/x-sewungccwjcxpkfy> has joined #angularjs
[06:30:50] *** a_thakur <a_thakur!~a_thakur@103.225.103.242> has quit IRC (Read error: Connection reset by peer)
[06:31:09] *** a_thakur <a_thakur!~a_thakur@103.225.103.242> has joined #angularjs
[06:31:40] <zomg> idwaker: you load the file the same way as you load any other js file
[06:32:00] <zomg> import {things} from './path/to/file' (assuming es6 modules)
[06:32:18] *** a_thakur <a_thakur!~a_thakur@103.225.103.242> has quit IRC (Read error: Connection reset by peer)
[06:32:31] *** a_thakur <a_thakur!~a_thakur@103.225.103.242> has joined #angularjs
[06:32:50] *** pimlu <pimlu!~pimlu@128.172.35.9> has joined #angularjs
[06:33:13] *** brollypop <brollypop!~brollypop@195.178.115.1> has quit IRC (Ping timeout: 244 seconds)
[06:36:01] *** vassagus <vassagus!~vassagus@186.4.2.162> has quit IRC (Ping timeout: 265 seconds)
[06:36:26] *** plutoniix <plutoniix!~q@175.176.220.2> has quit IRC (Quit: Leaving)
[06:36:52] *** plutoniix <plutoniix!~q@175.176.220.2> has joined #angularjs
[06:40:46] *** plutoniix <plutoniix!~q@175.176.220.2> has quit IRC (Client Quit)
[06:41:06] *** plutoniix <plutoniix!~q@175.176.220.2> has joined #angularjs
[06:41:08] *** tritian <tritian!~lazarus@meobets.com> has quit IRC (Ping timeout: 250 seconds)
[06:41:15] *** tritian <tritian!~lazarus@meobets.com> has joined #angularjs
[06:43:27] *** gopar <gopar!~gopar@2601:642:c000:3190:1d14:4718:a0a2:f55a> has joined #angularjs
[06:45:36] *** FIFOd <FIFOd!~FIFOd@cpe-172-74-101-60.nc.res.rr.com> has quit IRC (Quit: My Mac has gone to sleep. ZZZzzz…)
[06:48:22] *** VeeWee <VeeWee!~VeeWee@surf0.cronos.be> has joined #angularjs
[06:49:59] *** ron_frown <ron_frown!~ronnyfro@24-176-228-82.static.snlo.ca.charter.com> has joined #angularjs
[06:50:00] *** leolrrj <leolrrj!~leolrrj@rrcs-24-73-238-194.se.biz.rr.com> has joined #angularjs
[06:50:57] *** Conn337 <Conn337!Conn337@cpe-192-180-198-78.kya.res.rr.com> has quit IRC (Read error: Connection reset by peer)
[06:53:06] *** neredsenvy <neredsenvy!5d67cbf1@gateway/web/freenode/ip.93.103.203.241> has quit IRC (Quit: Page closed)
[06:54:45] *** leolrrj <leolrrj!~leolrrj@rrcs-24-73-238-194.se.biz.rr.com> has quit IRC (Ping timeout: 244 seconds)
[06:55:27] *** ewet <ewet!~ewet@unaffiliated/ewet> has joined #angularjs
[06:55:40] *** Garfield-fr <Garfield-fr!~Garfield-@unaffiliated/garfield-fr> has joined #angularjs
[06:56:25] *** Rodya_ <Rodya_!~Rodya_@2601:46:4001:e0b4:f459:5a60:dac:1338> has joined #angularjs
[06:58:39] *** phorloop <phorloop!~phorloop@203.213.239.151> has quit IRC (Quit: Byeee...)
[06:59:03] *** zivester <zivester!~zivester@pool-100-35-226-28.nwrknj.fios.verizon.net> has quit IRC (Ping timeout: 244 seconds)
[06:59:44] *** nicksloan <nicksloan!~nicksloan@unaffiliated/iamethos> has joined #angularjs
[07:02:15] *** LeBlaaanc <LeBlaaanc!~LeBlaaanc@47.188.236.163> has quit IRC (Quit: My Mac has gone to sleep. ZZZzzz…)
[07:02:47] *** Rodya_ <Rodya_!~Rodya_@2601:46:4001:e0b4:f459:5a60:dac:1338> has quit IRC (Ping timeout: 272 seconds)
[07:03:34] *** nicksloan <nicksloan!~nicksloan@unaffiliated/iamethos> has quit IRC (Client Quit)
[07:07:58] *** romerocesar <romerocesar!~cesar@c-67-183-219-247.hsd1.wa.comcast.net> has quit IRC (Remote host closed the connection)
[07:08:16] *** snacs <snacs!~snacs.net@124-149-183-229.dyn.iinet.net.au> has joined #angularjs
[07:09:18] *** Elisha <Elisha!~elisha@tm.213.143.68.74.nm.telemach.net> has quit IRC (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
[07:09:43] *** craysiii <craysiii!~textual@c-73-202-98-111.hsd1.ca.comcast.net> has joined #angularjs
[07:11:58] *** node9 <node9!~node9@CPE0c473dd24701-CM0c473dd24700.cpe.net.cable.rogers.com> has quit IRC (Quit: ZZZzzz…)
[07:12:02] *** craysiii <craysiii!~textual@c-73-202-98-111.hsd1.ca.comcast.net> has quit IRC (Client Quit)
[07:14:56] *** citizen-stig <citizen-stig!~citizen-s@89.221.207.219> has quit IRC (Remote host closed the connection)
[07:16:20] *** w2r5 <w2r5!~textual@unaffiliated/w2r5> has quit IRC (Remote host closed the connection)
[07:16:36] *** star_prone <star_prone!~star_pron@188.25.28.123> has quit IRC (Remote host closed the connection)
[07:17:02] *** w2r5 <w2r5!~textual@c-69-242-232-38.hsd1.az.comcast.net> has joined #angularjs
[07:17:11] *** w2r5 <w2r5!~textual@c-69-242-232-38.hsd1.az.comcast.net> has quit IRC (Changing host)
[07:17:11] *** w2r5 <w2r5!~textual@unaffiliated/w2r5> has joined #angularjs
[07:22:19] *** mischat <mischat!~mischat@2a02:c7f:c006:1e00:5d73:49d8:3f82:2678> has joined #angularjs
[07:24:20] *** djboz <djboz!~djboz@c-69-139-16-116.hsd1.pa.comcast.net> has joined #angularjs
[07:25:04] *** tony_ <tony_!2e28e20a@gateway/web/freenode/ip.46.40.226.10> has joined #angularjs
[07:25:35] <tony_> can anyone tell me how to iterate through this json script thru angular and display it in a table {"d":[{"__type":"Emp:#NorthWindServiceApp","eName":"Tauqeer","empId":2}]}
[07:26:55] *** anjumkaiser <anjumkaiser!~anjumkais@202.142.188.106> has joined #angularjs
[07:27:19] *** mischat <mischat!~mischat@2a02:c7f:c006:1e00:5d73:49d8:3f82:2678> has quit IRC (Ping timeout: 265 seconds)
[07:27:29] *** idwaker <idwaker!~idwaker@202.166.206.8> has quit IRC (Ping timeout: 272 seconds)
[07:28:55] *** djboz <djboz!~djboz@c-69-139-16-116.hsd1.pa.comcast.net> has quit IRC (Ping timeout: 260 seconds)
[07:30:17] *** LeBlaaanc <LeBlaaanc!~LeBlaaanc@47.188.236.163> has joined #angularjs
[07:31:01] *** punknroll <punknroll!~Thunderbi@p83-219-165-60.snwdip.snw.at> has joined #angularjs
[07:31:15] *** punknroll <punknroll!~Thunderbi@p83-219-165-60.snwdip.snw.at> has quit IRC (Client Quit)
[07:31:24] *** rickmak__ <rickmak__!~rickmak@203186221114.ctinets.com> has quit IRC (Quit: rickmak__)
[07:31:52] *** punknroll <punknroll!~Thunderbi@p83-219-165-60.snwdip.snw.at> has joined #angularjs
[07:32:13] *** Coldblackice <Coldblackice!~anonz@unaffiliated/coldblackice> has joined #angularjs
[07:33:13] *** vassagus <vassagus!~vassagus@186.4.2.162> has joined #angularjs
[07:33:33] *** Coldblackice <Coldblackice!~anonz@unaffiliated/coldblackice> has quit IRC (Client Quit)
[07:40:47] *** idwaker <idwaker!~idwaker@202.166.206.8> has joined #angularjs
[07:41:29] *** vassagus <vassagus!~vassagus@186.4.2.162> has quit IRC (Ping timeout: 240 seconds)
[07:41:45] *** jstroem <jstroem!~jstroem@87-63-45-4-dynamic.dk.customer.tdc.net> has joined #angularjs
[07:42:36] *** gopar <gopar!~gopar@2601:642:c000:3190:1d14:4718:a0a2:f55a> has quit IRC (Remote host closed the connection)
[07:43:20] *** LeBlaaanc <LeBlaaanc!~LeBlaaanc@47.188.236.163> has quit IRC (Quit: My Mac has gone to sleep. ZZZzzz…)
[07:48:04] *** edrocks <edrocks!~edrocks@66-194-206-178.static.twtelecom.net> has joined #angularjs
[07:48:56] *** LeBlaaanc <LeBlaaanc!~LeBlaaanc@47.188.236.163> has joined #angularjs
[07:49:57] *** erol <erol!~erol@89.91.144.193> has joined #angularjs
[07:50:11] *** LeBlaaanc <LeBlaaanc!~LeBlaaanc@47.188.236.163> has quit IRC (Client Quit)
[07:50:48] *** ron_frown <ron_frown!~ronnyfro@24-176-228-82.static.snlo.ca.charter.com> has quit IRC (Quit: My MacBook has gone to sleep. ZZZzzz…)
[07:52:49] *** edrocks <edrocks!~edrocks@66-194-206-178.static.twtelecom.net> has quit IRC (Ping timeout: 272 seconds)
[07:54:00] *** jstroem <jstroem!~jstroem@87-63-45-4-dynamic.dk.customer.tdc.net> has quit IRC (Remote host closed the connection)
[07:54:06] *** pwnd_nsfw` <pwnd_nsfw`!~pwnd_@cpe-2606-A000-FB05-3A00-9490-5287-A732-8C39.dyn6.twc.com> has joined #angularjs
[07:54:36] *** jstroem <jstroem!~jstroem@87-63-45-4-dynamic.dk.customer.tdc.net> has joined #angularjs
[07:55:14] *** lazylump <lazylump!b495c085@gateway/web/freenode/ip.180.149.192.133> has joined #angularjs
[07:55:46] *** lazylump <lazylump!b495c085@gateway/web/freenode/ip.180.149.192.133> has quit IRC (Client Quit)
[07:57:35] *** thomaspaulb <thomaspaulb!~Tom@D4B2706A.static.ziggozakelijk.nl> has joined #angularjs
[07:57:53] *** Robtop__ <Robtop__!~pwnd_@cpe-2606-A000-FB05-3A00-9490-5287-A732-8C39.dyn6.twc.com> has quit IRC (Ping timeout: 272 seconds)
[07:58:40] *** george_v <george_v!~george_v@77.49.223.194.dsl.dyn.forthnet.gr> has joined #angularjs
[07:58:53] *** jstroem <jstroem!~jstroem@87-63-45-4-dynamic.dk.customer.tdc.net> has quit IRC (Ping timeout: 252 seconds)
[07:59:53] *** idwaker <idwaker!~idwaker@202.166.206.8> has quit IRC (Ping timeout: 240 seconds)
[08:00:10] *** ASUchander1 <ASUchander1!~asuchande@136.56.9.215> has joined #angularjs
[08:00:47] *** cyan__ <cyan__!~cyan@217.170.162.68> has joined #angularjs
[08:01:06] *** dagda1_ <dagda1_!~dagda1@bcde521d.skybroadband.com> has joined #angularjs
[08:01:12] *** citizen-stig <citizen-stig!~citizen-s@89.221.207.219> has joined #angularjs
[08:02:29] *** ASUChand_ <ASUChand_!~asuchande@136.56.9.215> has joined #angularjs
[08:02:31] *** ASUChander <ASUChander!~asuchande@136.56.9.215> has quit IRC (Ping timeout: 265 seconds)
[08:03:05] *** testild <testild!~Thunderbi@51.254.25.31> has joined #angularjs
[08:04:20] *** hswolff <hswolff!~hswolff@207-38-134-4.c3-0.avec-ubr2.nyr-avec.ny.cable.rcn.com> has quit IRC (Ping timeout: 250 seconds)
[08:04:57] *** ASUchander1 <ASUchander1!~asuchande@136.56.9.215> has quit IRC (Ping timeout: 265 seconds)
[08:05:35] *** soee <soee!~soee@user-46-112-93-152.play-internet.pl> has joined #angularjs
[08:06:15] *** citizen-stig <citizen-stig!~citizen-s@89.221.207.219> has quit IRC (Ping timeout: 260 seconds)
[08:07:02] *** jstroem <jstroem!~jstroem@87-63-45-4-dynamic.dk.customer.tdc.net> has joined #angularjs
[08:07:39] *** romerocesar <romerocesar!~cesar@c-67-183-219-247.hsd1.wa.comcast.net> has joined #angularjs
[08:07:53] *** XaroRSA <XaroRSA!~Andrew@BSN-182-34-130.dynamic.siol.net> has quit IRC (Ping timeout: 240 seconds)
[08:08:34] *** iraj_ <iraj_!~iraj@91.107.244.101> has joined #angularjs
[08:09:39] *** soee <soee!~soee@user-46-112-93-152.play-internet.pl> has quit IRC (Excess Flood)
[08:10:05] *** soee <soee!~soee@user-46-112-93-152.play-internet.pl> has joined #angularjs
[08:11:05] *** Robtop__ <Robtop__!~pwnd_@cpe-2606-A000-FB05-3A00-9490-5287-A732-8C39.dyn6.twc.com> has joined #angularjs
[08:11:42] *** amal <amal!7aa1dc02@gateway/web/freenode/ip.122.161.220.2> has joined #angularjs
[08:11:53] *** amal <amal!7aa1dc02@gateway/web/freenode/ip.122.161.220.2> has quit IRC (Client Quit)
[08:12:19] *** ycon_ <ycon_!~ycon_@121.209.3.211> has joined #angularjs
[08:13:27] *** dagda1_ <dagda1_!~dagda1@bcde521d.skybroadband.com> has quit IRC (Quit: Textual IRC Client: www.textualapp.com)
[08:14:16] *** pwnd_nsfw` <pwnd_nsfw`!~pwnd_@cpe-2606-A000-FB05-3A00-9490-5287-A732-8C39.dyn6.twc.com> has quit IRC (Ping timeout: 255 seconds)
[08:14:58] *** a_thakur <a_thakur!~a_thakur@103.225.103.242> has quit IRC (Remote host closed the connection)
[08:15:16] *** jstroem <jstroem!~jstroem@87-63-45-4-dynamic.dk.customer.tdc.net> has quit IRC (Remote host closed the connection)
[08:15:54] *** jstroem <jstroem!~jstroem@87-63-45-4-dynamic.dk.customer.tdc.net> has joined #angularjs
[08:16:09] *** a_thakur <a_thakur!~a_thakur@49.248.250.62> has joined #angularjs
[08:16:31] *** thomaspaulb <thomaspaulb!~Tom@D4B2706A.static.ziggozakelijk.nl> has quit IRC (Remote host closed the connection)
[08:17:12] *** {DV8} <{DV8}!~Deviate@135-23-110-43.cpe.pppoe.ca> has quit IRC (Quit: Leaving)
[08:17:13] *** hswolff <hswolff!~hswolff@207-38-134-4.c3-0.avec-ubr2.nyr-avec.ny.cable.rcn.com> has joined #angularjs
[08:19:20] *** stefanotorresi <stefanotorresi!~etienne`@84.222.150.11> has joined #angularjs
[08:20:10] *** jstroem <jstroem!~jstroem@87-63-45-4-dynamic.dk.customer.tdc.net> has quit IRC (Ping timeout: 244 seconds)
[08:21:45] *** php <php!~php@unaffiliated/php> has quit IRC (Disconnected by services)
[08:22:08] *** php_ <php_!~php@149.202.250.22> has joined #angularjs
[08:23:07] *** one_zero <one_zero!~one_zero@ip72-203-85-109.oc.oc.cox.net> has quit IRC ()
[08:23:17] *** mischat <mischat!~mischat@2a02:c7f:c006:1e00:5d73:49d8:3f82:2678> has joined #angularjs
[08:23:42] *** bsrd <bsrd!~ukk@0133902281.0.fullrate.ninja> has joined #angularjs
[08:25:40] *** craysiii <craysiii!~textual@c-73-202-98-111.hsd1.ca.comcast.net> has joined #angularjs
[08:25:46] *** citizen-stig <citizen-stig!~citizen-s@89.221.207.219> has joined #angularjs
[08:26:07] *** macwinne_ <macwinne_!~macwinner@192.77.239.202> has quit IRC (Remote host closed the connection)
[08:28:13] *** mischat <mischat!~mischat@2a02:c7f:c006:1e00:5d73:49d8:3f82:2678> has quit IRC (Ping timeout: 265 seconds)
[08:31:03] *** citizen-stig <citizen-stig!~citizen-s@89.221.207.219> has quit IRC (Ping timeout: 265 seconds)
[08:32:18] *** ansu <ansu!~ansu@unaffiliated/ansu> has quit IRC (Ping timeout: 264 seconds)
[08:33:39] *** ansu <ansu!~ansu@unaffiliated/ansu> has joined #angularjs
[08:37:16] *** a_thakur_ <a_thakur_!~a_thakur@103.225.103.242> has joined #angularjs
[08:38:07] *** a_thakur <a_thakur!~a_thakur@49.248.250.62> has quit IRC (Ping timeout: 255 seconds)
[08:38:54] *** vassagus <vassagus!~vassagus@186.4.2.162> has joined #angularjs
[08:40:18] *** Debnet <Debnet!~Marc@smtp2.sa-cim.fr> has joined #angularjs
[08:40:20] *** LeBlaaanc <LeBlaaanc!~LeBlaaanc@47.188.236.163> has joined #angularjs
[08:40:51] *** tony_ <tony_!2e28e20a@gateway/web/freenode/ip.46.40.226.10> has quit IRC (Quit: Page closed)
[08:42:44] *** shkipper <shkipper!~shkipper@pool-63-125.ptcomm.ru> has joined #angularjs
[08:43:36] <shkipper> hey guys. Do I have a chance to meet somebody who uses angular 1 and typescript?
[08:44:08] *** romerocesar <romerocesar!~cesar@c-67-183-219-247.hsd1.wa.comcast.net> has quit IRC (Remote host closed the connection)
[08:44:25] <shkipper> I have a simple question. How I can implement private method in a controller that uses controllerAs syntax
[08:44:48] *** Daerist <Daerist!~Daerist@mir31-1-82-224-13-158.fbx.proxad.net> has joined #angularjs
[08:45:27] *** star_prone <star_prone!~star_pron@81.89.12.66> has joined #angularjs
[08:46:22] *** Inge- <Inge-!~inge@cm-84.211.205.193.getinternet.no> has quit IRC (Ping timeout: 250 seconds)
[08:46:39] *** vassagus <vassagus!~vassagus@186.4.2.162> has quit IRC (Ping timeout: 272 seconds)
[08:46:46] *** craysiii <craysiii!~textual@c-73-202-98-111.hsd1.ca.comcast.net> has quit IRC (Quit: Textual IRC Client: www.textualapp.com)
[08:48:20] *** nya_ <nya_!~nya@p7902c6f7.tokynt01.ap.so-net.ne.jp> has quit IRC (Remote host closed the connection)
[08:49:11] *** icebox <icebox!5e5fe874@gateway/web/freenode/ip.94.95.232.116> has joined #angularjs
[08:49:16] *** Aliks <Aliks!~aliks@c-50-161-64-217.hsd1.ca.comcast.net> has joined #angularjs
[08:49:58] *** star_prone <star_prone!~star_pron@81.89.12.66> has quit IRC (Ping timeout: 265 seconds)
[08:51:10] *** Girafferson <Girafferson!~dakota@2601:281:8001:663d:512e:1691:93aa:95d3> has quit IRC (Ping timeout: 255 seconds)
[08:52:19] *** Venkat <Venkat!b75201f2@gateway/web/freenode/ip.183.82.1.242> has joined #angularjs
[08:52:45] *** rickmak_ <rickmak_!~rickmak@203186221114.ctinets.com> has joined #angularjs
[08:52:52] <Venkat> please suggest me which build system to use for angular 1 applications
[08:55:05] <icebox> Venkat: anything you are used to: systemjs, webpack, rollup and so on...
[08:55:07] *** AndrewIsh <AndrewIsh!~andrew@mrboom.plus.com> has joined #angularjs
[08:55:13] <icebox> Venkat: what is your concern?
[08:55:28] <Venkat> Can I use require js for angular 1 applications
[08:55:45] *** siba <siba!~textual@60-242-28-48.static.tpgi.com.au> has quit IRC (Quit: My Mac has gone to sleep. ZZZzzz…)
[08:56:10] *** cacts <cacts!~cactus@c-174-51-80-218.hsd1.co.comcast.net> has quit IRC (Ping timeout: 244 seconds)
[08:56:22] <Venkat> I need to know the better build system tool for angular 1
[08:56:31] <Venkat> no particular concern
[08:57:56] <icebox> Venkat: yes... but require.js is a (async) loader... so you need to know what you are doing
[08:58:40] <icebox> Venkat: loaders and packagers resolve different problems
[08:59:10] <Venkat> ok
[08:59:32] <Venkat> so its it good to go with other build system rather than require js?
[08:59:40] <Venkat> so is it good to go with other build system rather than require js?
[09:00:17] *** whitebook <whitebook!~whitebook@ool-d18c2488.dyn.optonline.net> has joined #angularjs
[09:00:22] <Venkat> If so can you please suggest me the good places to quickly learn about that particular system
[09:00:36] *** bbankes <bbankes!~bbankes@2601:680:c402:3215:4df7:1778:7534:d756> has quit IRC (Ping timeout: 265 seconds)
[09:00:56] <icebox> Venkat: yes, it is... the topic is quite opinionated... read a few resources and experiment with your code base
[09:02:11] <Venkat> ok got it.
[09:02:28] <Venkat> I will do. What is your best bet for angular applications
[09:02:29] <icebox> Venkat: this post applies to angular 2... but you may get a few hints also for angular 1, due to the problems to build an application for the production are the same http://blog.mgechev.com/2016/06/26/tree-shaking-angular2-production-build-rollup-javascript/
[09:03:55] *** hswolff <hswolff!~hswolff@207-38-134-4.c3-0.avec-ubr2.nyr-avec.ny.cable.rcn.com> has quit IRC (Ping timeout: 244 seconds)
[09:04:32] *** siovene <siovene!uid16530@gateway/web/irccloud.com/x-nagbefmpbwgfvfui> has joined #angularjs
[09:04:33] <icebox> Venkat: best bet? there is not a magic solution... it depends on app requirements, app architecture, team skills, and so on
[09:05:14] *** idwaker <idwaker!~idwaker@202.166.206.8> has joined #angularjs
[09:05:25] <siovene> Hello! If I have a directive restircted to AE (which I can change if needed), and usually instantiate it with "<div my-directive></div>", is it possible to actually instanciate from a scope variable that contains the string "my-directive"?
[09:05:52] <siovene> Like "<div {{some_variable}}></div>" but obviously not like that
[09:06:00] *** thomaspaulb <thomaspaulb!~Tom@217.21.193.235> has joined #angularjs
[09:06:37] <ngWalrus> if there only was a way to test this
[09:08:18] <siovene> you're kidding? that works? angular is so magic if it does :)
[09:09:00] *** Hira <Hira!70869816@gateway/web/freenode/ip.112.134.152.22> has joined #angularjs
[09:09:11] <Hira> hi
[09:09:12] <ngWalrus> !help
[09:09:25] <icebox> bot is out of order
[09:09:29] <ngWalrus> I notcied
[09:09:31] <ngWalrus> erm
[09:09:42] *** whitebook <whitebook!~whitebook@ool-d18c2488.dyn.optonline.net> has quit IRC (Ping timeout: 265 seconds)
[09:09:50] <ngWalrus> I should just bookmark the ng-1 plunkr
[09:09:58] *** tarnus <tarnus!~tarnus@108-202-169-121.lightspeed.spfdmo.sbcglobal.net> has quit IRC (Remote host closed the connection)
[09:09:59] *** hswolff <hswolff!~hswolff@207-38-134-4.c3-0.avec-ubr2.nyr-avec.ny.cable.rcn.com> has joined #angularjs
[09:10:51] *** Hira <Hira!70869816@gateway/web/freenode/ip.112.134.152.22> has left #angularjs
[09:11:05] <icebox> ngWalrus: it is inthe topic
[09:12:20] <ngWalrus> yeah I know
[09:12:45] <ngWalrus> but I have to type in /topic and find it in the topic
[09:12:47] <ngWalrus> :/
[09:13:13] <icebox> http://plnkr.co/edit/tpl:nKLNBdve51sqOoKZAOUS
[09:15:06] *** el_Bromso <el_Bromso!~textual@213-209-01.netrun.cytanet.com.cy> has joined #angularjs
[09:15:13] *** nya_ <nya_!~nya@p7902c6f7.tokynt01.ap.so-net.ne.jp> has joined #angularjs
[09:18:38] *** jhadvig <jhadvig!~jhadvig@adsl-d84.84-47-43.t-com.sk> has joined #angularjs
[09:19:05] *** VeeWee <VeeWee!~VeeWee@surf0.cronos.be> has quit IRC (Quit: WeeChat 1.4)
[09:19:32] *** Pyrrhus666 <Pyrrhus666!~Pyrrhus66@095-097-155-024.static.chello.nl> has joined #angularjs
[09:19:56] *** antiPoP <antiPoP!~antiPoP@unaffiliated/antipop> has quit IRC (Ping timeout: 265 seconds)
[09:21:13] *** Girafferson <Girafferson!~dakota@2601:281:8001:663d:3a09:17e3:c0f2:a74b> has joined #angularjs
[09:21:18] *** brollypop <brollypop!~brollypop@195.178.115.1> has joined #angularjs
[09:21:47] *** antiPoP <antiPoP!~antiPoP@unaffiliated/antipop> has joined #angularjs
[09:22:16] *** drej <drej!~jedimind@unaffiliated/jedimind> has quit IRC (Quit: My MacBook has gone to sleep. ZZZzzz…)
[09:23:02] *** vader699 <vader699!~vader699@173-25-139-234.client.mchsi.com> has quit IRC (Ping timeout: 244 seconds)
[09:24:59] *** djboz <djboz!~djboz@c-69-139-16-116.hsd1.pa.comcast.net> has joined #angularjs
[09:25:34] *** cotko <cotko!~ahmed@89-212-138-82.static.t-2.net> has joined #angularjs
[09:26:37] *** macwinne_ <macwinne_!~macwinner@192.77.239.202> has joined #angularjs
[09:27:16] *** lixianzheng <lixianzheng!b7cd038a@gateway/web/freenode/ip.183.205.3.138> has joined #angularjs
[09:27:25] *** sahbeewah <sahbeewah!~sahbeewah@220.101.80.170> has quit IRC (Quit: sahbeewah)
[09:27:54] *** sagerdearia <sagerdearia!~necrodear@unaffiliated/necrodearia> has joined #angularjs
[09:28:02] <siovene> ngWalrus "if there only was a way to test this" --- It didn't work.
[09:28:08] <lixianzheng> join
[09:28:23] <lixianzheng> for what
[09:28:33] <siovene> I even tried making the directive restricted to AEC, and do <div ng-class="some_var"></div>, and no luck.
[09:28:46] <ngWalrus> siovene there you have it
[09:29:29] *** djboz <djboz!~djboz@c-69-139-16-116.hsd1.pa.comcast.net> has quit IRC (Ping timeout: 240 seconds)
[09:29:36] <siovene> ngWalrus: but do you know if there's a way to achieve what I want?
[09:30:26] *** jstroem <jstroem!~jstroem@cpe.ge-3-2-0-100.arcnqe11.dk.customer.tdc.net> has joined #angularjs
[09:31:24] <icebox> siovene: yes, you can... anyway I don't understand what is your use case
[09:32:04] *** lixianzheng <lixianzheng!b7cd038a@gateway/web/freenode/ip.183.205.3.138> has quit IRC (Client Quit)
[09:32:15] *** macwinne_ <macwinne_!~macwinner@192.77.239.202> has quit IRC (Ping timeout: 272 seconds)
[09:32:34] *** denisra <denisra!~denisra@46.189.65.195> has quit IRC (Ping timeout: 255 seconds)
[09:33:15] *** spriz <spriz!~spriz@b29bd7a0.rev.stofanet.dk> has joined #angularjs
[09:33:35] *** ycon_ <ycon_!~ycon_@121.209.3.211> has quit IRC (Remote host closed the connection)
[09:35:18] *** vpi <vpi!~vpi@195.66.82.9> has joined #angularjs
[09:35:43] *** piepl <piepl!~piepl@2a02:1807:1440:200:ca6:caa5:77cd:6841> has joined #angularjs
[09:36:08] *** m8 <m8!~m8@unaffiliated/m8> has joined #angularjs
[09:36:49] *** mangolisk <mangolisk!~mangolisk@S0106848dc7ebaa06.vc.shawcable.net> has quit IRC (Read error: Connection reset by peer)
[09:37:59] *** dsf_ <dsf_!b7526277@gateway/web/freenode/ip.183.82.98.119> has joined #angularjs
[09:38:20] *** uru|away is now known as uru
[09:39:06] *** cacts <cacts!~cactus@c-174-51-80-218.hsd1.co.comcast.net> has joined #angularjs
[09:39:25] <dsf_> HELP after minification application not able to recognize the path so getting the following error
[09:39:27] <dsf_> vendor.5e0dba68.js:5 GET http://localhost:9090/sme/sme.html 404 ()(anonymous function) @ vendor.5e0dba68.js:5q @ vendor.5e0dba68.js:5i @ vendor.5e0dba68.js:5g @ vendor.5e0dba68.js:5(anonymous function) @ vendor.5e0dba68.js:5$eval @ vendor.5e0dba68.js:6$digest @ vendor.5e0dba68.js:6$apply @ vendor.5e0dba68.js:6(anonymous function) @ vendor.5e0dba68.js:8dispatch @ vendor.5e0dba68.js:2q.handle @ vendor.5e0dba68.js:2 vendor.5e0dba68.js:5
[09:39:46] <dsf_> please help me out how to resolve the issue
[09:40:06] *** Girafferson <Girafferson!~dakota@2601:281:8001:663d:3a09:17e3:c0f2:a74b> has quit IRC (Quit: Leaving)
[09:41:39] *** jstroem <jstroem!~jstroem@cpe.ge-3-2-0-100.arcnqe11.dk.customer.tdc.net> has quit IRC (Remote host closed the connection)
[09:41:46] <siovene> icebox: my usecase is that my controller has a list of "widgets" that I want rendered. So in the HTML I'll do like <div class="widgets" ng-repeat="w in widgets"> <div {{w.directiveName}}></div></div> or something like that.
[09:42:16] *** jstroem <jstroem!~jstroem@cpe.ge-3-2-0-100.arcnqe11.dk.customer.tdc.net> has joined #angularjs
[09:42:23] *** gain_ <gain_!~Gianni@101.9.61.188.dynamic.wline.res.cust.swisscom.ch> has joined #angularjs
[09:43:27] *** ycon_ <ycon_!~ycon_@CPE-121-209-3-211.bqgp1.sa.bigpond.net.au> has joined #angularjs
[09:43:31] *** vassagus <vassagus!~vassagus@186.4.2.162> has joined #angularjs
[09:43:49] *** Hexoid <Hexoid!~Hexoid@178.124.164.226> has joined #angularjs
[09:43:54] <icebox> siovene: well... that is resolved using routing... widgets don't live in the controllers, but in the views... and you control the instances via routing... https://github.com/angular-ui/ui-router/wiki/Multiple-Named-Views
[09:44:33] *** donguston <donguston!~GEEGEEGEE@cpc12-sprt2-2-0-cust478.17-2.cable.virginm.net> has joined #angularjs
[09:45:11] <icebox> siovene: lastly you programmatically add directives to your views using $compile
[09:45:22] <siovene> icebox: thanks, that makes sense. So I'll try to reimplement this with dynamic ui-view content
[09:46:17] *** jstroem <jstroem!~jstroem@cpe.ge-3-2-0-100.arcnqe11.dk.customer.tdc.net> has quit IRC (Ping timeout: 244 seconds)
[09:46:22] *** akkonrad <akkonrad!~akkonrad3@gae109.internetdsl.tpnet.pl> has joined #angularjs
[09:46:22] <icebox> siovene: perfect... you are welcome
[09:47:44] *** kartik_ <kartik_!b6411862@gateway/web/freenode/ip.182.65.24.98> has joined #angularjs
[09:47:56] <kartik_> hi
[09:48:00] *** ycon_ <ycon_!~ycon_@CPE-121-209-3-211.bqgp1.sa.bigpond.net.au> has quit IRC (Ping timeout: 244 seconds)
[09:48:40] *** jstroem <jstroem!~jstroem@cpe.ge-3-2-0-100.arcnqe11.dk.customer.tdc.net> has joined #angularjs
[09:48:46] *** cruxeternus <cruxeternus!~cruxetern@secspeed.com> has quit IRC (Ping timeout: 250 seconds)
[09:48:49] <kartik_> hi
[09:48:59] *** nishu-tryinghard <nishu-tryinghard!~nishanth@183.82.99.106> has joined #angularjs
[09:49:03] *** StanMarsh <StanMarsh!~StanMarsh@gateway/vpn/privateinternetaccess/stanmarsh> has joined #angularjs
[09:49:36] *** kartik_ <kartik_!b6411862@gateway/web/freenode/ip.182.65.24.98> has left #angularjs
[09:49:54] *** edrocks <edrocks!~edrocks@66-194-206-178.static.twtelecom.net> has joined #angularjs
[09:50:17] *** magellanicloud <magellanicloud!~magellani@2a02:810b:8340:3f18:b899:7011:6f92:f32b> has joined #angularjs
[09:50:50] *** cruxeternus <cruxeternus!~cruxetern@secspeed.com> has joined #angularjs
[09:51:03] <shkipper> hey, guys. Did you try angular 1 with typescript?
[09:51:05] *** vassagus <vassagus!~vassagus@186.4.2.162> has quit IRC (Ping timeout: 252 seconds)
[09:52:07] *** Hexoid <Hexoid!~Hexoid@178.124.164.226> has quit IRC (Quit: Textual IRC Client: www.textualapp.com)
[09:53:36] *** piepl <piepl!~piepl@2a02:1807:1440:200:ca6:caa5:77cd:6841> has quit IRC (Read error: Connection reset by peer)
[09:54:25] *** edrocks <edrocks!~edrocks@66-194-206-178.static.twtelecom.net> has quit IRC (Ping timeout: 272 seconds)
[09:54:49] *** Guest70 <Guest70!~textual@195.191.1.34> has joined #angularjs
[10:00:20] *** vishal_ <vishal_!ab318421@gateway/web/freenode/ip.171.49.132.33> has joined #angularjs
[10:00:59] <vishal_> how can i know the version of angular-min.js ?
[10:01:02] *** skakri <skakri!~skakri@92.240.69.185> has left #angularjs ("WeeChat 1.5")
[10:01:18] <GreenJello> vishal_, try angular.version
[10:01:43] <vishal_> i want to use cdn of anhgular but this not working
[10:02:17] *** OnkelTem <OnkelTem!~onkeltem@pppoe-62-84-112-224.dubna.ru> has joined #angularjs
[10:02:25] <ngWalrus> works for me
[10:02:47] *** Hexoid <Hexoid!~Hexoid@178.124.164.226> has joined #angularjs
[10:02:54] <vishal_> because project starting time i download the angular-min.js
[10:02:59] <ngWalrus> also shkipper https://codepen.io/martinmcwhorter/post/angularjs-1-x-with-typescript-or-es6-best-practices
[10:03:04] <ngWalrus> should work just fine
[10:04:06] <shkipper> ngWalrus, my question is how can I declare a real private method when I use controllerAs syntax
[10:04:43] <ngWalrus> dunno
[10:04:45] <shkipper> ngWalrus, because in typescript if I define a method as private it goes to "scope" anyway
[10:04:51] <shkipper> so sad
[10:04:52] <nishu-tryinghard> what can be a use case for compile?
[10:05:09] <shkipper> ngWalrus, anyway thanks for the link
[10:06:01] *** ycon_ <ycon_!~ycon_@121.209.3.211> has joined #angularjs
[10:06:32] <Pyrrhus666> shkipper: typescript private methods are only checked at compile time. javascript has no real equivalent.
[10:06:36] *** star_prone <star_prone!~sviatovig@81.89.12.66> has joined #angularjs
[10:07:26] <shkipper> Pyrrhus666, yes, it's true. And you can't make closure. I don't know, maybe there is come kind of convention. For example a prefix "_".
[10:07:36] <shkipper> couldn't google anything
[10:07:47] <nishu-tryinghard> vishal_, you can check it from the html script tag, if you are using cdn it has the version else you just open the cdn in browser and the in the starting line of code you can see the version.
[10:07:54] <Pyrrhus666> shkipper: the convention is that your code is checked at compile-time, not runtime ;)
[10:08:29] <nishu-tryinghard> Pyrrhus666, can you tell me a use case in while compile functionality of directive can be used?
[10:08:38] <nishu-tryinghard> so far i used only link
[10:09:42] <shkipper> Pyrrhus666, no, I am talking about private _someMethod. It would be included in "scope" anyway, but it more intuitive. Just don't use it in template
[10:09:53] *** siba <siba!~textual@60-242-28-48.static.tpgi.com.au> has joined #angularjs
[10:10:49] *** gigo1980 <gigo1980!~Adium@85.239.101.209> has joined #angularjs
[10:10:54] <Pyrrhus666> shkipper: there is no real problem if you do everything in TS. any ´convention´ the transpiler would adhere to would be useless, since you´re not coding in javascript anyway. so why worry that your privates aren´t really private ?
[10:11:10] *** Shilon <Shilon!~Shilon@a79-168-104-17.cpe.netcabo.pt> has joined #angularjs
[10:11:14] *** ycon_ <ycon_!~ycon_@121.209.3.211> has quit IRC (Remote host closed the connection)
[10:11:15] *** watersoul <watersoul!~ircuser@172.245.255.61> has quit IRC (Ping timeout: 244 seconds)
[10:11:33] <Pyrrhus666> shkipper: it´s like worrying that your binary file can be hacked after it´s compiled from C.
[10:13:58] *** Snugglebash <Snugglebash!~textual@cpc65147-nmal17-2-0-cust206.19-2.cable.virginm.net> has joined #angularjs
[10:14:00] *** Snugglebash <Snugglebash!~textual@cpc65147-nmal17-2-0-cust206.19-2.cable.virginm.net> has quit IRC (Max SendQ exceeded)
[10:14:22] *** Snugglebash <Snugglebash!~textual@cpc65147-nmal17-2-0-cust206.19-2.cable.virginm.net> has joined #angularjs
[10:14:55] *** citizen-stig <citizen-stig!~citizen-s@89.221.207.219> has joined #angularjs
[10:15:36] <shkipper> Pyrrhus666, correct. When I mark a member as private in a controller it goes in a "scope" anyway. Private isn't private at all
[10:16:07] <Pyrrhus666> shkipper: it´s private from a TS perspective. the rest is not important.
[10:17:55] <siovene> icebox: sorry to bother, I'm trying the multiple named views approach, but if I add a `views` property to my main state, then nothing is rendered in the top ui-view, no matter what.
[10:18:12] <shkipper> Pyrrhus666, ok, thanks
[10:19:41] <siovene> icebox: I realized it's impossible for you to help with just that sentence... I'm trying to make a plunkr now.
[10:19:42] *** citizen-stig <citizen-stig!~citizen-s@89.221.207.219> has quit IRC (Ping timeout: 264 seconds)
[10:19:54] <icebox> siovene: thanks
[10:20:51] *** gigo1980 <gigo1980!~Adium@85.239.101.209> has quit IRC (Quit: Leaving.)
[10:21:07] *** ycon_ <ycon_!~ycon_@CPE-121-209-3-211.bqgp1.sa.bigpond.net.au> has joined #angularjs
[10:21:41] *** vrockai <vrockai!~vrockai@ip-89-102-10-111.net.upcbroadband.cz> has joined #angularjs
[10:22:29] *** falk0n <falk0n!~falk0n@a109-49-57-182.cpe.netcabo.pt> has joined #angularjs
[10:23:10] <nishu-tryinghard> read this link http://stackoverflow.com/questions/24615103/angular-directives-when-and-how-to-use-compile-controller-pre-link-and-post/24615123#24615123 to understand compile, post and pre. Can anyone give a analogy which they came up with or read it which helped them understand those concepts
[10:24:26] <nishu-tryinghard> compile is one time which doesnt involve any angular stuff in the phase, after that pre and post is for before an instance is created and after. am i correct?
[10:25:11] <siovene> icebox: https://plnkr.co/edit/FAUV1kG4ZnXUvsRQCjcF?p=preview
[10:25:28] *** Bish_ <Bish_!~arne@p57852E78.dip0.t-ipconnect.de> has joined #angularjs
[10:25:40] *** ycon_ <ycon_!~ycon_@CPE-121-209-3-211.bqgp1.sa.bigpond.net.au> has quit IRC (Ping timeout: 265 seconds)
[10:25:47] <siovene> icebox: uncomment the views attribute in script.js, and you should see that main.html is not rendered anymore.
[10:25:47] <Bish_> hi, how would you guys write a component that "chooses" another component
[10:25:51] *** Bish_ is now known as Bish
[10:26:03] <Bish> or should i always use routing for that
[10:26:15] *** squeakytoy <squeakytoy!~squeakyto@h87-96-232-19.cust.se.alltele.net> has joined #angularjs
[10:29:10] <icebox> siovene: I may give you the solution... but routing needs a bit of time to be used to it... I read dozens of time the docs and I practiced a lot before understanding the configurations... there are a few resources online how to configure ui router nested views
[10:29:14] *** Limarson1 <Limarson1!~marcel.cr@87.151.136.58> has quit IRC (Read error: Connection reset by peer)
[10:29:15] *** squeakytoy2 <squeakytoy2!~squeakyto@h87-96-232-19.cust.se.alltele.net> has quit IRC (Ping timeout: 272 seconds)
[10:29:16] *** rickmak_ <rickmak_!~rickmak@203186221114.ctinets.com> has quit IRC (Ping timeout: 255 seconds)
[10:30:00] *** fees <fees!~fees_@d54C22E1C.access.telenet.be> has joined #angularjs
[10:30:00] <siovene> I think the solution would be the most appreciated answer, if possible :-P
[10:30:14] <icebox> siovene: yes, I know :P
[10:30:27] <siovene> I would still learn from it, wouldn't I :-)
[10:30:30] <icebox> siovene: but the journey is better
[10:31:42] *** Venkat <Venkat!b75201f2@gateway/web/freenode/ip.183.82.1.242> has quit IRC (Ping timeout: 240 seconds)
[10:31:56] *** tomphp <tomphp!~tomphp@84-45-154-103.static.enta.net> has joined #angularjs
[10:32:40] *** rickmak_ <rickmak_!~rickmak@203186221114.ctinets.com> has joined #angularjs
[10:32:41] *** preity <preity!3a442d12@gateway/web/freenode/ip.58.68.45.18> has joined #angularjs
[10:32:45] <preity> hi
[10:33:06] *** Rodya_ <Rodya_!~Rodya_@2601:46:4001:e0b4:2de5:84c4:bfe2:1f76> has joined #angularjs
[10:33:25] <siovene> icebox: maybe just a hint?
[10:33:43] *** Shilon <Shilon!~Shilon@a79-168-104-17.cpe.netcabo.pt> has quit IRC (Quit: Shilon)
[10:33:47] <preity> Can anybody tell me how to reduce the time of loading 4000 records using ng-repeat
[10:34:09] *** Shilon <Shilon!~Shilon@a79-168-104-17.cpe.netcabo.pt> has joined #angularjs
[10:34:13] <ngWalrus> you should probably implement virtual scrolling or pagination
[10:34:16] <siovene> icebox: something related to the fact that I'm defining views that are available in index.html, instead of main.html as I intend?
[10:34:42] *** sbellina <sbellina!~sbellina@c-75-65-176-38.hsd1.ms.comcast.net> has quit IRC (Ping timeout: 264 seconds)
[10:34:47] <icebox> siovene: no, it is not that... see also abstract views
[10:35:20] <preity> in case of pagination searching won't work
[10:35:33] <preity> can you give any example
[10:35:38] <siovene> icebox: abstract views? You don't mean abstract states?
[10:35:54] <preity> with searching and fast loading of 4000 records
[10:35:58] *** ycon_ <ycon_!~ycon_@CPE-121-209-3-211.bqgp1.sa.bigpond.net.au> has joined #angularjs
[10:36:13] *** antiPoP <antiPoP!~antiPoP@unaffiliated/antipop> has quit IRC (Ping timeout: 265 seconds)
[10:36:14] <icebox> siovene: yep... that
[10:36:27] <Pyrrhus666> preity: you can search in non-rendered records perfectly fine
[10:37:00] <siovene> icebox: I can't see why main should be an abstract state... it has its own content. Nor I see why I should add a new abstract state... main is the only state I need, and it has sub views.
[10:37:07] *** ycon_ <ycon_!~ycon_@CPE-121-209-3-211.bqgp1.sa.bigpond.net.au> has quit IRC (Remote host closed the connection)
[10:38:07] *** Rodya_ <Rodya_!~Rodya_@2601:46:4001:e0b4:2de5:84c4:bfe2:1f76> has quit IRC (Ping timeout: 272 seconds)
[10:38:10] *** antiPoP <antiPoP!~antiPoP@unaffiliated/antipop> has joined #angularjs
[10:38:39] *** pwnd_nsfw` <pwnd_nsfw`!~pwnd_@cpe-2606-A000-FB05-3A00-9490-5287-A732-8C39.dyn6.twc.com> has joined #angularjs
[10:39:33] <siovene> icebox: I got it working!
[10:39:43] <icebox> siovene: nice
[10:39:48] <siovene> https://plnkr.co/edit/FAUV1kG4ZnXUvsRQCjcF?p=preview
[10:40:09] <icebox> siovene: https://plnkr.co/edit/FAUV1kG4ZnXUvsRQCjcF?p=preview
[10:41:41] *** davi-lima <davi-lima!~Davi@177.206.196.199.dynamic.adsl.gvt.net.br> has joined #angularjs
[10:42:08] *** gigo1980 <gigo1980!~Adium@85.239.101.209> has joined #angularjs
[10:42:33] *** Robtop__ <Robtop__!~pwnd_@cpe-2606-A000-FB05-3A00-9490-5287-A732-8C39.dyn6.twc.com> has quit IRC (Ping timeout: 272 seconds)
[10:42:41] <gigo1980> hi i have today a meeting, where will decide which technology stack we will use
[10:42:59] <gigo1980> we will compare react <> angular, and apache wicket
[10:43:12] <gigo1980> does anyone have the killing argument for angular 2 ?
[10:43:22] <icebox> gigo1980: are you a stackholder?
[10:43:38] <gigo1980> i am developer / architect
[10:43:58] <icebox> gigo1980: did you prepare the meeting writing a blueprint about these frameworks?
[10:44:19] <gigo1980> yes i have a written presentation
[10:44:35] <arnas> http://plnkr.co/edit/n6j7Ym9xD7VlH3ZE3Lja?p=preview how can I change variable "a"?
[10:44:35] <gigo1980> other partitions in the dev team present apache wicket
[10:44:36] <icebox> siovene: yep... or see also https://plnkr.co/edit/VIOTTuPfATRxkev0HkGY?p=preview
[10:45:40] <gigo1980> i focused the stack on an SPA (angular2, bootstrap or foundation) with REST (Spring Boot with HATEOAS)
[10:46:18] <siovene> icebox: I like the first one more
[10:47:01] <icebox> siovene: sure... it is yours... that was my initial point :)
[10:47:15] <siovene> icebox: well thanks for the journey!
[10:47:24] <icebox> siovene: you are welcome
[10:47:29] <ngWalrus> this is new
[10:48:10] <arnas> anyone?
[10:48:11] *** vassagus <vassagus!~vassagus@186.4.2.162> has joined #angularjs
[10:48:19] <gigo1980> which responsive css framework is the best one for angular ?
[10:48:27] <ngWalrus> gigo1980 bulma
[10:48:40] *** Shilon <Shilon!~Shilon@a79-168-104-17.cpe.netcabo.pt> has quit IRC (Quit: Shilon)
[10:49:07] <icebox> gigo1980: there is not a magic css framework... that depends on project requirements, team skills and so on
[10:49:32] <ngWalrus> but the best one is ui kit
[10:49:32] <GreenJello> bootstrap is always the safe option
[10:49:50] <ngWalrus> and the best one is also foundation
[10:50:01] <Bish> THE BEST THE BEST
[10:50:26] <ngWalrus> but if you want a serious answer icebox already said it
[10:51:07] <arnas> http://plnkr.co/edit/n6j7Ym9xD7VlH3ZE3Lja?p=preview how can I change variable "a"?
[10:51:52] <Bish> how would you guys write a ui, that displays different components
[10:51:56] <Bish> according to user interaction
[10:51:59] <Bish> kinda like router but not
[10:52:06] <gigo1980> so the thing is, i am searching one, without refactoring or rewriting it for angular2
[10:52:19] <icebox> arnas: Two way data binding pitfalls http://plnkr.co/edit/7anGLMoJZgMkJFX9d9IA?p=preview
[10:52:26] *** sharkasdf <sharkasdf!~Mike@cpe-72-130-247-114.hawaii.res.rr.com> has quit IRC (Quit: Leaving)
[10:53:16] *** jlebrech <jlebrech!~jlebrech@109.109.143.238> has joined #angularjs
[10:53:27] <arnas> icebox, so the only option is to use object?
[10:53:29] <icebox> gigo1980: two answers - 1) the question doesn't make sense 2) unicorn
[10:54:11] <icebox> arnas: of course... and you should know that... (primitives, automagically watchers on objects and so on)
[10:54:21] <arnas> icebox, oh wow, using factories sucks a lot.
[10:54:34] <icebox> arnas: as always reading docs helps https://docs.angularjs.org/guide/scope
[10:54:39] <Bish> :(
[10:54:46] *** rocktop__ <rocktop__!~rocktop@160.176.30.98> has joined #angularjs
[10:55:06] <icebox> arnas: it seems you are fighting with the framework
[10:55:25] *** toni_ <toni_!~toni@41.66.216.162> has joined #angularjs
[10:55:27] <arnas> icebox, so I am using this variable called "step". I need it in my template (I am changing it with ng-click" and I also need it in my factory. It's simple integer. But in order for it to work correctly, I need to make it object? that's stupid
[10:55:48] *** daedeloth <daedeloth!~daedeloth@91.183.109.67> has joined #angularjs
[10:56:03] *** vishal_ <vishal_!ab318421@gateway/web/freenode/ip.171.49.132.33> has quit IRC (Quit: Page closed)
[10:56:09] <Pyrrhus666> that´s javascript references...
[10:56:19] *** denisra <denisra!~denisra@88.128.80.217> has joined #angularjs
[10:56:33] *** vassagus <vassagus!~vassagus@186.4.2.162> has quit IRC (Ping timeout: 244 seconds)
[10:56:42] <arnas> Pyrrhus666, but I don't even see a point of using factories, when it complicates everything so much
[10:56:50] <arnas> having almost all of the code in controller is so much simpler
[10:57:34] <Pyrrhus666> arnas: if you´re running into so much problems, you´re probably not designing it right.
[10:57:52] <icebox> arnas: as we explained you a lot of times is only "much simpler" in a tiny app... when the app scales is not true
[10:58:02] <nishu-tryinghard> arnas lets say you are in a route a and you want to share some data to route b, then you will save that using factory in a and access that data in b route using this factory
[10:58:07] *** a_thakur_ <a_thakur_!~a_thakur@103.225.103.242> has quit IRC (Remote host closed the connection)
[10:58:17] <arnas> are there mentors on this channel? like who could review the code with me and help me refactor it. Not for free of course
[10:58:28] *** rocktop <rocktop!~rocktop@105.155.70.196> has quit IRC (Ping timeout: 265 seconds)
[10:58:56] *** a_thakur <a_thakur!~a_thakur@45.116.2.250> has joined #angularjs
[10:59:07] <gigo1980> ok i on thing is, i have a card layout. so 3 card columns, on some devices (tablet) i will have only one column
[10:59:17] <gigo1980> or on tablett better 2 columns
[10:59:24] <gigo1980> and on smartphone one column
[10:59:29] <icebox> gigo1980: it is called responsive layout
[10:59:34] <gigo1980> and i will define the order
[11:00:07] <gigo1980> icebox, i know what is a responsive layout. but most of them brake it down into one column
[11:00:11] *** watersoul <watersoul!~ircuser@172.245.255.61> has joined #angularjs
[11:00:18] <icebox> gigo1980: and it is not angular affair :)
[11:00:28] <gigo1980> i know that
[11:00:31] <nishu-tryinghard> not if you use the correct classed gigo1980
[11:01:28] <gigo1980> so what the customer whant is something like a bento box
[11:01:30] <nishu-tryinghard> also even after using the grid layout(bootstrap) or something similar there will be cases where the layout will breack and behave as expected they the developer has to use media queries
[11:01:42] <nishu-tryinghard> not behave*
[11:01:46] * Bish likes angular material
[11:02:25] <gigo1980> yes, like angular material
[11:02:38] <gigo1980> but this is not available for angular2, or am i wrong ?
[11:02:50] <Bish> i just said i like it, nothing else
[11:02:59] <Bish> but angular2 material is not ready yet, yes
[11:04:06] <Bish> what do i do, if i want ui.router in a "new" scope.. for a single dialog
[11:08:39] <Bish> am i a ghost :(
[11:09:40] <icebox> gigo1980: it is available... there is material 2
[11:09:59] *** donguston <donguston!~GEEGEEGEE@cpc12-sprt2-2-0-cust478.17-2.cable.virginm.net> has quit IRC (Ping timeout: 244 seconds)
[11:10:37] *** tarnus <tarnus!~tarnus@108-202-169-121.lightspeed.spfdmo.sbcglobal.net> has joined #angularjs
[11:11:45] <Pyrrhus666> Bish: I´ve read your question, I just don´t have an answer, sorry...
[11:11:54] <gigo1980> but is not still stable, is there time schedule ?
[11:12:22] <icebox> gigo1980: no
[11:12:38] <icebox> gigo1980: coming back to your initial question...
[11:13:34] <icebox> gigo1980: there is a big decision in the architecture... the paradigms between a MVC framework (angular or react) and apache wicket, for instance, are very different
[11:14:08] <Bish> Pyrrhus666: supposed to be a joke, because it felt like im invisible :D
[11:14:13] <icebox> gigo1980: in terms team skills, architecture approach, dev workflow and so on
[11:14:18] <Bish> but im impressed you cannot do that with ui.router, i thought it's so great!
[11:14:30] <Bish> i could do it with a simple ng-if sure, but it feels kinda hacky
[11:14:53] <icebox> gigo1980: it is the difference between a 3-tier and 3-layer architecture http://exponential.io/blog/2015/03/05/3-layer-architecture-in-detail/
[11:15:09] *** tarnus <tarnus!~tarnus@108-202-169-121.lightspeed.spfdmo.sbcglobal.net> has quit IRC (Ping timeout: 244 seconds)
[11:15:31] *** rickmak_ <rickmak_!~rickmak@203186221114.ctinets.com> has quit IRC (Quit: rickmak_)
[11:16:12] <icebox> gigo1980: modern architectures prefer a 3-tier approach vs a classic 3-layer... where there is a clean separation between frontend tier and backend one...
[11:16:14] *** naveenvalecha <naveenvalecha!~naveenval@unaffiliated/naveenvalecha> has joined #angularjs
[11:16:23] <Pyrrhus666> Bish: I know, but rest assured, you´re visible ;)
[11:16:32] *** glmp <glmp!8c651ff2@gateway/web/freenode/ip.140.101.31.242> has quit IRC (Quit: Page closed)
[11:16:34] <Bish> phew
[11:16:36] *** beauby <beauby!~beauby@84-72-105-159.dclient.hispeed.ch> has joined #angularjs
[11:16:59] *** rickmak_ <rickmak_!~rickmak@203186221114.ctinets.com> has joined #angularjs
[11:17:03] <Pyrrhus666> Bish: I have too little experience with ui-router to be of use though
[11:18:29] <icebox> gigo1980: as you see, the point is not angular or react... or which css framework... but the kind of architecture, business requirements and team skills (and other elements) are the drivers for the tecnology stack... not the features of the single components
[11:19:13] <icebox> gigo1980: it is a very broad topic... and I think we cannot define it in irc :)
[11:19:31] *** fdev <fdev!~fdev@xd9bad026.dyn.telefonica.de> has joined #angularjs
[11:19:59] <Bish> Pyrrhus666: i decided it to use it in my new project because everyone told me it#s the "de-facto" standard
[11:20:13] <Bish> but it doesn't do much more than ngRouter for me
[11:20:33] <Pyrrhus666> Bish: well, nested views for one :)
[11:20:39] <bd-> yea that's the big one
[11:20:42] <Pyrrhus666> other than that : I dunno.
[11:20:55] <Pyrrhus666> bd-: THE selling point, afaik
[11:20:57] <Bish> never used that for anything
[11:21:34] <icebox> Bish: ngRoute doesn't support multiple and nested views
[11:21:57] <Bish> yeah i know, but i never needed that :(
[11:22:25] <bd-> sometimes you don't *need* it, but can use it to make parts of your app bookmarkable
[11:23:26] <icebox> Bish: it seems weirdly... is your layout one big view? do you use only one controller?
[11:23:35] <bd-> like if you have some toggle which shows two different views, you can instead put that as a router state instead of just ng-show/hiding the content
[11:24:17] *** marr <marr!~ccc@87-205-244-80.adsl.inetia.pl> has joined #angularjs
[11:24:45] <icebox> Bish: maybe you are using "routing" simulating states with ngIfs or ng-show and ng.hide
[11:25:29] <icebox> Bish: what if you need a few resources before the view is rendered, meaning "resolve" feature of the routing?
[11:25:54] *** djboz <djboz!~djboz@c-69-139-16-116.hsd1.pa.comcast.net> has joined #angularjs
[11:27:35] <Pyrrhus666> resolve works fine in ng-router too :P
[11:27:46] *** nya_ <nya_!~nya@p7902c6f7.tokynt01.ap.so-net.ne.jp> has quit IRC (Remote host closed the connection)
[11:27:50] *** macwinne_ <macwinne_!~macwinner@192.77.239.202> has joined #angularjs
[11:29:10] <icebox> Pyrrhus666: in my experience, I started using "routing" only when I choose ui router... with ngRoute it was a mess
[11:30:22] *** djboz <djboz!~djboz@c-69-139-16-116.hsd1.pa.comcast.net> has quit IRC (Ping timeout: 265 seconds)
[11:31:04] <Pyrrhus666> icebox: probably. but when I started ui-router wasn´t really a thing yet. also, the app I built then had, except from some navigation, exactly one template/controller per route, so it fit well. it still does, although some things could be better implemented with ui-router.
[11:31:17] <icebox> Angular 2.0: The Future of Enterprise Application Development: http://blog.rangle.io/angular-2-0-the-future-of-enterprise-application-development/
[11:32:18] <icebox> gigo1980: if you need a few tech details about angular 2 in terms of selling points... ^
[11:32:22] *** macwinne_ <macwinne_!~macwinner@192.77.239.202> has quit IRC (Ping timeout: 244 seconds)
[11:32:28] <Pyrrhus666> icebox: the only thing that gets messy is the number of resolve clauses and the fact that they all need to be injected. together with other angular stuff most controllers have a shitload of injected stuff...
[11:34:04] <icebox> :) https://github.com/krasimir/navigo
[11:34:18] *** ZenimNL <ZenimNL!~steven@kb-client-014.kb.nl> has joined #angularjs
[11:35:09] <Pyrrhus666> yeah, but that probably lacks the resolve feature. and that´s the thing I really needed ;)
[11:36:27] <bd-> lol, 'up to 5x improved performance' links to a blog post showing ng1 being faster
[11:36:31] <bd-> good job
[11:37:18] <icebox> bd-: slower is better
[11:37:30] <icebox> bd-: *lower :)
[11:37:39] <bd-> yes... ng1 is lower
[11:37:45] *** winegoddess <winegoddess!~winegodde@ip-64-134-155-104.public.wayport.net> has joined #angularjs
[11:37:46] <bd-> on nearly all of those benchmarks
[11:38:57] <bd-> except the ones where higher is better, where it's higher
[11:39:42] <bd-> > Improved stack traces
[11:39:43] <bd-> lies
[11:39:45] <ngWalrus> I think they are unfairly comparing angular without using track by
[11:39:55] *** LeBlaaanc <LeBlaaanc!~LeBlaaanc@47.188.236.163> has quit IRC (Quit: My Mac has gone to sleep. ZZZzzz…)
[11:40:17] <ngWalrus> but obviously angular1 is not going to perform if you don't use trackby
[11:40:34] <bd-> yea there are results on there for trackby and it outperforms ng2
[11:40:35] <Pyrrhus666> what are you guys reading ?
[11:40:53] <icebox> ngWalrus: maybe... the point is: don't link that report :)
[11:41:14] <icebox> Pyrrhus666: http://blog.rangle.io/angular-2-0-the-future-of-enterprise-application-development/
[11:41:18] <bd-> > Load only what's needed.
[11:41:19] <bd-> lies?
[11:41:45] <icebox> bd-: marketing? :)
[11:41:59] <bd-> i'm not sure how a giant 4mb .js file can be considered only loading what's needed
[11:42:14] <Pyrrhus666> icebox: ah, thx :)
[11:42:29] *** citizen-stig <citizen-stig!~citizen-s@89.221.207.219> has joined #angularjs
[11:44:25] <Pyrrhus666> wow, those statistics are thoroughly unimpressive indeed...
[11:44:52] *** fuchstronaut <fuchstronaut!~fuchstron@unaffiliated/fuchstronaut> has joined #angularjs
[11:44:52] *** chachasmooth <chachasmooth!~chachasmo@unaffiliated/chachasmooth> has quit IRC (Ping timeout: 265 seconds)
[11:45:07] *** cacts <cacts!~cactus@c-174-51-80-218.hsd1.co.comcast.net> has quit IRC (Ping timeout: 244 seconds)
[11:45:25] *** fixl <fixl!~fixl@46.166.138.168> has joined #angularjs
[11:46:31] <Pyrrhus666> that conclusion : ¨the way it _feels_ faster than the alternatives¨. yeah good metric you got there....
[11:47:13] *** chachasmooth <chachasmooth!~chachasmo@unaffiliated/chachasmooth> has joined #angularjs
[11:48:25] *** hswolff <hswolff!~hswolff@207-38-134-4.c3-0.avec-ubr2.nyr-avec.ny.cable.rcn.com> has quit IRC (Ping timeout: 272 seconds)
[11:48:37] *** hswolff <hswolff!~hswolff@207-38-134-4.c3-0.avec-ubr2.nyr-avec.ny.cable.rcn.com> has joined #angularjs
[11:49:07] <bd-> certainly doesn't feel faster here
[11:50:27] <ngWalrus> but angular2 is a silverbullet
[11:50:31] <ngWalrus> silver bullet*
[11:50:35] *** denisra_ <denisra_!~denisra@88.128.80.217> has joined #angularjs
[11:51:13] <ngWalrus> https://github.com/google/incremental-dom
[11:51:20] <ngWalrus> this is the only thing I'll be using
[11:51:57] *** idwaker <idwaker!~idwaker@202.166.206.8> has quit IRC (Ping timeout: 276 seconds)
[11:52:07] *** edrocks <edrocks!~edrocks@66-194-206-178.static.twtelecom.net> has joined #angularjs
[11:52:25] *** jeppech- is now known as jeppech
[11:52:28] *** jeppech is now known as jeppech-
[11:52:36] *** denisra <denisra!~denisra@88.128.80.217> has quit IRC (Ping timeout: 276 seconds)
[11:53:29] *** denisra <denisra!~denisra@88.128.80.217> has joined #angularjs
[11:53:54] *** vassagus <vassagus!~vassagus@186.4.2.162> has joined #angularjs
[11:54:03] *** toni_ <toni_!~toni@41.66.216.162> has quit IRC (Ping timeout: 265 seconds)
[11:55:57] *** denisra_ <denisra_!~denisra@88.128.80.217> has quit IRC (Ping timeout: 244 seconds)
[11:55:59] *** snacs <snacs!~snacs.net@124-149-183-229.dyn.iinet.net.au> has quit IRC (Ping timeout: 265 seconds)
[11:56:13] *** denisra_ <denisra_!~denisra@88.128.80.217> has joined #angularjs
[11:56:18] *** durin_ <durin_!58d9e1ec@gateway/web/freenode/ip.88.217.225.236> has joined #angularjs
[11:56:23] <durin_> hey guys :D
[11:56:28] *** edrocks <edrocks!~edrocks@66-194-206-178.static.twtelecom.net> has quit IRC (Ping timeout: 265 seconds)
[11:57:55] *** baweaver <baweaver!~baweaver@ruby/staff/baweaver> has quit IRC (Ping timeout: 272 seconds)
[11:58:12] *** denisra <denisra!~denisra@88.128.80.217> has quit IRC (Ping timeout: 244 seconds)
[11:58:23] *** baweaver <baweaver!~baweaver@ruby/staff/baweaver> has joined #angularjs
[11:58:28] *** donguston <donguston!~GEEGEEGEE@cpc12-sprt2-2-0-cust478.17-2.cable.virginm.net> has joined #angularjs
[11:59:10] <durin_> i have a new understanding problem with promises, i have a comparison like (a > 10) how is posible to unsolved a promise so long the comparison is solved? I have see some works with intervals or timeouts to start the promise and then resolve() the promise, is ther no better way, because my var is very slow count up
[11:59:46] <bd-> eh?
[11:59:50] *** star_prone <star_prone!~sviatovig@81.89.12.66> has quit IRC (Remote host closed the connection)
[12:00:49] <durin_> eh? :D
[12:00:50] *** toni_ <toni_!~toni@41.207.252.122> has joined #angularjs
[12:01:08] *** vassagus <vassagus!~vassagus@186.4.2.162> has quit IRC (Ping timeout: 244 seconds)
[12:02:50] <bd-> not really understanding your question
[12:03:12] <ngWalrus> durin_ there's a magical construct called a while loop
[12:03:23] <ngWalrus> I think that's what you should be looking at
[12:03:39] *** cotko <cotko!~ahmed@89-212-138-82.static.t-2.net> has quit IRC (Ping timeout: 276 seconds)
[12:03:42] <ngWalrus> while(a > 10) {/*do stuff */}
[12:03:50] <bd-> isn't he asking for a non-blocking while loop?
[12:03:52] <durin_> sry for my bad english
[12:06:06] <ngWalrus> I have no idea bd-
[12:06:49] *** sbellina <sbellina!~sbellina@c-75-65-176-38.hsd1.ms.comcast.net> has joined #angularjs
[12:07:16] *** Sekny <Sekny!6f5cf04e@gateway/web/freenode/ip.111.92.240.78> has quit IRC (Quit: Page closed)
[12:07:38] <durin_> i have seen examples instead of while with timout and null as delay so its async but i think its not very good for performance, isnt?
[12:08:27] *** cotko <cotko!~ahmed@89-212-138-82.static.t-2.net> has joined #angularjs
[12:09:30] <gigo1980> in angular 2 i have in an template an ngFor Itterator (ng-repeat), i have also some conntent around, that i will only show if the size of the items is greater than 1
[12:09:33] *** falk0n_ <falk0n_!~falk0n@a79-168-124-191.cpe.netcabo.pt> has joined #angularjs
[12:09:37] <ngWalrus> you aren't making sense durin_
[12:09:46] *** mischat <mischat!~mischat@62.252.235.234> has joined #angularjs
[12:10:18] *** fdev <fdev!~fdev@xd9bad026.dyn.telefonica.de> has quit IRC (Remote host closed the connection)
[12:11:42] *** dsf_ <dsf_!b7526277@gateway/web/freenode/ip.183.82.98.119> has quit IRC (Ping timeout: 240 seconds)
[12:12:17] *** falk0n <falk0n!~falk0n@a109-49-57-182.cpe.netcabo.pt> has quit IRC (Ping timeout: 240 seconds)
[12:12:31] <durin_> :(
[12:13:14] <durin_> i will make a promise that be solved if my comparison is true, how could i do that?
[12:13:41] <durin_> *i want to
[12:14:05] *** cotko <cotko!~ahmed@89-212-138-82.static.t-2.net> has quit IRC (Ping timeout: 252 seconds)
[12:14:29] *** testild1 <testild1!~Thunderbi@ip-41-74-28-70.orange.mg> has joined #angularjs
[12:14:30] <durin_> my be i should do a plunker
[12:14:39] <bd-> durin_: https://www.npmjs.com/package/promise-while-loop
[12:14:43] <bd-> look at something like that for ideas
[12:15:01] *** testild <testild!~Thunderbi@51.254.25.31> has quit IRC (Ping timeout: 255 seconds)
[12:15:01] *** testild1 is now known as testild
[12:15:25] <bd-> and also http://stackoverflow.com/questions/24660096/correct-way-to-write-loops-for-promise
[12:15:49] *** cotko <cotko!~ahmed@89-212-138-82.static.t-2.net> has joined #angularjs
[12:16:07] *** luc4 <luc4!~luca@93-57-43-56.ip162.fastwebnet.it> has joined #angularjs
[12:16:08] *** a_thakur <a_thakur!~a_thakur@45.116.2.250> has quit IRC (Remote host closed the connection)
[12:17:01] *** plutoniix <plutoniix!~q@175.176.220.2> has quit IRC (Quit: Leaving)
[12:17:24] *** beauby <beauby!~beauby@84-72-105-159.dclient.hispeed.ch> has quit IRC (Read error: Connection reset by peer)
[12:18:05] <gigo1980> and how should i use the promisse in my frontend ?
[12:18:21] <gigo1980> so that i get the count of the items ?
[12:22:11] *** a_thakur <a_thakur!~a_thakur@45.116.2.250> has joined #angularjs
[12:23:08] *** beauby <beauby!~beauby@84-72-105-159.dclient.hispeed.ch> has joined #angularjs
[12:23:29] *** falk0n_ <falk0n_!~falk0n@a79-168-124-191.cpe.netcabo.pt> has quit IRC (Ping timeout: 240 seconds)
[12:23:33] <bd-> gigo1980: *ngIf="items.length>1" or whatever
[12:23:53] *** Guest70 <Guest70!~textual@195.191.1.34> has quit IRC (Ping timeout: 272 seconds)
[12:25:26] *** falk0n <falk0n!~falk0n@a79-168-124-191.cpe.netcabo.pt> has joined #angularjs
[12:26:16] *** idwaker <idwaker!~idwaker@202.166.206.8> has joined #angularjs
[12:26:31] *** ashka` is now known as ashka
[12:26:31] *** ashka <ashka!~postmaste@server2.shellgratuit.com> has quit IRC (Changing host)
[12:26:31] *** ashka <ashka!~postmaste@pdpc/supporter/active/ashka> has joined #angularjs
[12:26:49] *** marr <marr!~ccc@87-205-244-80.adsl.inetia.pl> has quit IRC (Read error: Connection reset by peer)
[12:27:29] *** davi-lima <davi-lima!~Davi@177.206.196.199.dynamic.adsl.gvt.net.br> has quit IRC (Ping timeout: 244 seconds)
[12:28:14] *** davi-lima <davi-lima!~Davi@177.206.196.199.dynamic.adsl.gvt.net.br> has joined #angularjs
[12:28:32] *** vassagus <vassagus!~vassagus@186.4.2.162> has joined #angularjs
[12:28:36] *** Aliks <Aliks!~aliks@c-50-161-64-217.hsd1.ca.comcast.net> has quit IRC (Remote host closed the connection)
[12:29:29] *** gNesher <gNesher!6db0508a@gateway/web/freenode/ip.109.176.80.138> has joined #angularjs
[12:29:31] <gNesher> Hi guys
[12:29:41] *** Aliks <Aliks!~aliks@c-50-161-64-217.hsd1.ca.comcast.net> has joined #angularjs
[12:29:42] <gNesher> I'm got an odd AngularJS problem for you - https://stackoverflow.com/questions/39722307/angularjs-1-4-ng-repeat-broken-works-outside-of-our-app
[12:29:58] <gNesher> Any advice would be appriciated.
[12:30:49] *** Aliks <Aliks!~aliks@c-50-161-64-217.hsd1.ca.comcast.net> has quit IRC (Remote host closed the connection)
[12:30:52] <gNesher> also if you could vote question up that would be helpful
[12:31:23] *** gigo1980 <gigo1980!~Adium@85.239.101.209> has quit IRC (Quit: Leaving.)
[12:31:32] *** beauby <beauby!~beauby@84-72-105-159.dclient.hispeed.ch> has quit IRC (Read error: Connection reset by peer)
[12:32:59] *** winegoddess <winegoddess!~winegodde@ip-64-134-155-104.public.wayport.net> has quit IRC (Quit: My Mac has gone to sleep. ZZZzzz…)
[12:33:51] <durin_> http://plnkr.co/edit/a64w80aXFLrWMBHyEPYI?p=preview
[12:34:00] <durin_> i build this
[12:34:36] <durin_> it works but i have concerns
[12:35:18] *** a_thakur_ <a_thakur_!~a_thakur@49.248.250.62> has joined #angularjs
[12:35:45] *** vassagus <vassagus!~vassagus@186.4.2.162> has quit IRC (Ping timeout: 244 seconds)
[12:36:25] *** afonsod__ <afonsod__!~denisra@88.128.80.217> has joined #angularjs
[12:36:50] <icebox> durin_: https://pouchdb.com/2015/05/18/we-have-a-problem-with-promises.html
[12:37:06] <icebox> durin_: generally speaking, that reading is very worthy
[12:37:28] *** a_thakur <a_thakur!~a_thakur@45.116.2.250> has quit IRC (Ping timeout: 244 seconds)
[12:37:31] *** fixl <fixl!~fixl@46.166.138.168> has quit IRC (Ping timeout: 255 seconds)
[12:37:46] *** fixl <fixl!~fixl@14-201-215-206.tpgi.com.au> has joined #angularjs
[12:38:27] <icebox> gNesher: "... I replace the selected object used for the pill list with a new object." // breaking the reference
[12:39:38] *** mischat <mischat!~mischat@62.252.235.234> has quit IRC (Remote host closed the connection)
[12:40:23] <icebox> gNesher: Two way data binding pitfalls http://plnkr.co/edit/7anGLMoJZgMkJFX9d9IA?p=preview
[12:40:42] *** denisra_ <denisra_!~denisra@88.128.80.217> has quit IRC (Ping timeout: 276 seconds)
[12:42:10] *** Wizek <Wizek!~Wizek@catv-89-132-132-110.catv.broadband.hu> has joined #angularjs
[12:42:23] *** siba <siba!~textual@60-242-28-48.static.tpgi.com.au> has quit IRC (Quit: My Mac has gone to sleep. ZZZzzz…)
[12:44:03] *** mischat <mischat!~mischat@62.252.235.234> has joined #angularjs
[12:44:27] *** mischat <mischat!~mischat@62.252.235.234> has quit IRC (Remote host closed the connection)
[12:45:01] *** mischat <mischat!~mischat@62.252.235.234> has joined #angularjs
[12:47:06] *** gigo1980 <gigo1980!~Adium@85.239.101.209> has joined #angularjs
[12:47:09] <gigo1980> what should i use in angular 2 to store object?
[12:47:53] <ngWalrus> gigo1980 plz, we're not here to do your job
[12:47:59] <ngWalrus> or homework
[12:48:07] <gigo1980> ok sorry
[12:48:21] *** denisra <denisra!~denisra@88.128.80.217> has joined #angularjs
[12:49:00] *** ycon_ <ycon_!~ycon_@CPE-121-209-3-211.bqgp1.sa.bigpond.net.au> has joined #angularjs
[12:49:24] *** liefer <liefer!~liefer@3e6b4ca3.rev.stofanet.dk> has joined #angularjs
[12:49:42] <icebox> gigo1980: you get an idea following the tutorial https://angular.io/docs/ts/latest/tutorial/
[12:50:38] *** n3ssi3 <n3ssi3!uid5547@gateway/web/irccloud.com/x-bnzmpprtigmscsip> has joined #angularjs
[12:50:54] *** afonsod__ <afonsod__!~denisra@88.128.80.217> has quit IRC (Ping timeout: 264 seconds)
[12:53:42] *** ycon_ <ycon_!~ycon_@CPE-121-209-3-211.bqgp1.sa.bigpond.net.au> has quit IRC (Ping timeout: 276 seconds)
[12:54:05] *** a_thakur <a_thakur!~a_thakur@45.116.2.250> has joined #angularjs
[12:54:37] *** a_thakur_ <a_thakur_!~a_thakur@49.248.250.62> has quit IRC (Ping timeout: 255 seconds)
[12:55:12] *** sammi <sammi!31f8c4d7@gateway/web/freenode/ip.49.248.196.215> has joined #angularjs
[12:56:53] *** mistralol <mistralol!~james@home.stev.org> has quit IRC (Remote host closed the connection)
[12:57:53] *** a_thakur_ <a_thakur_!~a_thakur@45.116.2.250> has joined #angularjs
[13:01:06] *** ycon_ <ycon_!~ycon_@CPE-121-209-3-211.bqgp1.sa.bigpond.net.au> has joined #angularjs
[13:01:42] *** a_thakur <a_thakur!~a_thakur@45.116.2.250> has quit IRC (Ping timeout: 264 seconds)
[13:03:50] *** usm4n <usm4n!~usm4n@unaffiliated/usm4n> has joined #angularjs
[13:04:57] <Snugglebash> anyone going to ng europe?
[13:05:05] *** donguston <donguston!~GEEGEEGEE@cpc12-sprt2-2-0-cust478.17-2.cable.virginm.net> has quit IRC (Ping timeout: 265 seconds)
[13:05:06] *** antiPoP <antiPoP!~antiPoP@unaffiliated/antipop> has quit IRC (Ping timeout: 265 seconds)
[13:06:28] *** star_prone <star_prone!~sviatovig@81.89.12.66> has joined #angularjs
[13:07:42] *** gNesher <gNesher!6db0508a@gateway/web/freenode/ip.109.176.80.138> has quit IRC (Ping timeout: 240 seconds)
[13:11:38] *** tarnus <tarnus!~tarnus@2602:306:ccaa:9790:ccc3:afa1:7448:f7ba> has joined #angularjs
[13:11:44] <star_prone> hi all
[13:12:36] *** testild1 <testild1!~Thunderbi@51.254.25.31> has joined #angularjs
[13:13:08] *** mralex <mralex!~user@185.8.92.146> has joined #angularjs
[13:13:51] *** testild <testild!~Thunderbi@ip-41-74-28-70.orange.mg> has quit IRC (Ping timeout: 276 seconds)
[13:13:52] *** testild1 is now known as testild
[13:15:20] <mralex> I have a filter that returns an object: sumOfPaid: {"purchased":6000,"chips":-1000} - how do I get the purchased in my view? {{day | sumOfPaid.purchased}} doesn't work
[13:15:25] *** citizen-stig <citizen-stig!~citizen-s@89.221.207.219> has quit IRC (Remote host closed the connection)
[13:16:20] <mralex> Can I even return an object using filter or do I have to do different filters for each property, chips and purchased.
[13:16:27] *** tarnus <tarnus!~tarnus@2602:306:ccaa:9790:ccc3:afa1:7448:f7ba> has quit IRC (Ping timeout: 272 seconds)
[13:16:34] *** sbellina <sbellina!~sbellina@c-75-65-176-38.hsd1.ms.comcast.net> has quit IRC (Read error: Connection reset by peer)
[13:17:54] *** gigo1980 <gigo1980!~Adium@85.239.101.209> has quit IRC (Ping timeout: 264 seconds)
[13:18:54] *** Aliks <Aliks!~aliks@c-50-161-64-217.hsd1.ca.comcast.net> has joined #angularjs
[13:19:36] *** hswolff <hswolff!~hswolff@207-38-134-4.c3-0.avec-ubr2.nyr-avec.ny.cable.rcn.com> has quit IRC (Ping timeout: 265 seconds)
[13:20:50] *** jlebrech <jlebrech!~jlebrech@109.109.143.238> has quit IRC (Remote host closed the connection)
[13:21:22] *** jlebrech <jlebrech!~jlebrech@109.109.143.238> has joined #angularjs
[13:21:33] *** tompaw <tompaw!~tompaw@tompaw.xxx> has quit IRC (Max SendQ exceeded)
[13:21:41] *** tompaw <tompaw!~tompaw@tompaw.xxx> has joined #angularjs
[13:21:41] *** tompaw <tompaw!~tompaw@tompaw.xxx> has quit IRC (Excess Flood)
[13:21:50] *** jlebrech <jlebrech!~jlebrech@109.109.143.238> has quit IRC (Read error: Connection reset by peer)
[13:21:52] <mralex> I have a filter that returns an object: sumOfPaid: {"purchased":6000,"chips":-1000} - how do I get the purchased in my view? {{day | sumOfPaid.purchased}} doesn't work
[13:22:02] *** hswolff <hswolff!~hswolff@207-38-134-4.c3-0.avec-ubr2.nyr-avec.ny.cable.rcn.com> has joined #angularjs
[13:22:03] *** marr <marr!~ccc@77-253-87-193.adsl.inetia.pl> has joined #angularjs
[13:22:13] *** tompaw <tompaw!~tompaw@tompaw.xxx> has joined #angularjs
[13:22:36] *** jlebrech <jlebrech!~jlebrech@109.109.143.238> has joined #angularjs
[13:22:37] <uru> mralex: Spamming your question won't help
[13:22:47] *** testild <testild!~Thunderbi@51.254.25.31> has quit IRC (Quit: testild)
[13:23:32] *** donguston <donguston!~GEEGEEGEE@cpc12-sprt2-2-0-cust478.17-2.cable.virginm.net> has joined #angularjs
[13:23:32] *** donguston <donguston!~GEEGEEGEE@cpc12-sprt2-2-0-cust478.17-2.cable.virginm.net> has quit IRC (Read error: Connection reset by peer)
[13:24:08] *** sammi <sammi!31f8c4d7@gateway/web/freenode/ip.49.248.196.215> has quit IRC (Quit: Page closed)
[13:25:26] *** zeioth <zeioth!~zeioth@5.red-80-39-129.dynamicip.rima-tde.net> has joined #angularjs
[13:25:58] *** quakephil <quakephil!~smuxi@cpe-69-200-246-39.nyc.res.rr.com> has joined #angularjs
[13:26:42] *** mischat_ <mischat_!~mischat@62.252.235.234> has joined #angularjs
[13:26:48] *** djboz <djboz!~djboz@c-69-139-16-116.hsd1.pa.comcast.net> has joined #angularjs
[13:26:50] *** antiPoP <antiPoP!~antiPoP@unaffiliated/antipop> has joined #angularjs
[13:27:26] *** Harlan44 <Harlan44!~james@2601:1c0:6b01:74f0:7891:2ad1:fb7c:3485> has joined #angularjs
[13:27:30] *** jlebrech <jlebrech!~jlebrech@109.109.143.238> has quit IRC (Ping timeout: 276 seconds)
[13:27:46] *** jstroem <jstroem!~jstroem@cpe.ge-3-2-0-100.arcnqe11.dk.customer.tdc.net> has quit IRC (Remote host closed the connection)
[13:28:18] *** jstroem <jstroem!~jstroem@cpe.ge-3-2-0-100.arcnqe11.dk.customer.tdc.net> has joined #angularjs
[13:28:30] *** macwinne_ <macwinne_!~macwinner@192.77.239.202> has joined #angularjs
[13:28:58] *** sahbeewah <sahbeewah!~sahbeewah@14-200-158-113.static.tpgi.com.au> has joined #angularjs
[13:29:03] *** falk0n <falk0n!~falk0n@a79-168-124-191.cpe.netcabo.pt> has quit IRC (Quit: leaving)
[13:29:08] *** mischat <mischat!~mischat@62.252.235.234> has quit IRC (Ping timeout: 244 seconds)
[13:30:45] <icebox> mralex: http://stackoverflow.com/questions/17793751/how-to-filter-by-object-property-in-angularjs
[13:31:04] *** harlan_44 <harlan_44!~james@2601:1c0:6b01:74f0:58b7:85ad:bdac:c315> has quit IRC (Ping timeout: 255 seconds)
[13:31:05] *** djboz <djboz!~djboz@c-69-139-16-116.hsd1.pa.comcast.net> has quit IRC (Ping timeout: 252 seconds)
[13:31:29] <mralex> Nice one thanks icebox :D
[13:31:47] *** d10n-work <d10n-work!uid37161@gateway/web/irccloud.com/x-qphcluuuxobafipe> has joined #angularjs
[13:32:44] *** jstroem <jstroem!~jstroem@cpe.ge-3-2-0-100.arcnqe11.dk.customer.tdc.net> has quit IRC (Ping timeout: 252 seconds)
[13:32:50] *** Aliks <Aliks!~aliks@c-50-161-64-217.hsd1.ca.comcast.net> has quit IRC (Remote host closed the connection)
[13:33:05] *** macwinne_ <macwinne_!~macwinner@192.77.239.202> has quit IRC (Ping timeout: 244 seconds)
[13:33:10] *** vassagus <vassagus!~vassagus@186.4.2.162> has joined #angularjs
[13:33:16] *** erol <erol!~erol@89.91.144.193> has quit IRC (Ping timeout: 244 seconds)
[13:33:57] *** lexileo <lexileo!~lexii@202.149.205.17> has joined #angularjs
[13:36:50] *** usm4n <usm4n!~usm4n@unaffiliated/usm4n> has quit IRC (Quit: leaving)
[13:37:06] *** DieguezZ <DieguezZ!~textual@184.red-88-1-148.dynamicip.rima-tde.net> has joined #angularjs
[13:37:20] *** lexileo <lexileo!~lexii@202.149.205.17> has quit IRC (Client Quit)
[13:37:44] <DieguezZ> hi, do you find this ugly? or you think is a good practice? <span ng-class="{'gc-{{::expense.status | lowercase}}-status': expense.status === $ctrl.FILTER_STATUS.DRAFT}">{{::expense.description}}</span>
[13:37:59] *** vader699 <vader699!~vader699@173-25-139-234.client.mchsi.com> has joined #angularjs
[13:38:55] *** jlebrech <jlebrech!~jlebrech@109.109.143.238> has joined #angularjs
[13:39:24] *** mischat_ <mischat_!~mischat@62.252.235.234> has quit IRC (Remote host closed the connection)
[13:39:26] *** raijin <raijin!~raijin@unaffiliated/raijin> has joined #angularjs
[13:39:46] *** a_thakur_ <a_thakur_!~a_thakur@45.116.2.250> has quit IRC (Remote host closed the connection)
[13:40:00] *** mischat <mischat!~mischat@62.252.235.234> has joined #angularjs
[13:41:09] *** antiPoP <antiPoP!~antiPoP@unaffiliated/antipop> has quit IRC (Ping timeout: 276 seconds)
[13:41:54] *** vassagus <vassagus!~vassagus@186.4.2.162> has quit IRC (Ping timeout: 264 seconds)
[13:42:00] <icebox> DieguezZ: Why mixing interpolation and expressions is bad practice: https://docs.angularjs.org/guide/interpolation
[13:45:47] *** a_thakur <a_thakur!~a_thakur@45.116.2.250> has joined #angularjs
[13:45:56] *** konradb_ is now known as konradb
[13:46:01] *** konradb <konradb!~konradb@46.101.163.118> has quit IRC (Changing host)
[13:46:01] *** konradb <konradb!~konradb@unaffiliated/konradb> has joined #angularjs
[13:46:31] *** Naru_ <Naru_!6e2c766b@gateway/web/freenode/ip.110.44.118.107> has joined #angularjs
[13:47:11] *** Naru_ <Naru_!6e2c766b@gateway/web/freenode/ip.110.44.118.107> has left #angularjs
[13:47:15] *** george_v <george_v!~george_v@77.49.223.194.dsl.dyn.forthnet.gr> has quit IRC (Quit: Leaving)
[13:47:25] *** jstroem <jstroem!~jstroem@cpe.ge-3-2-0-100.arcnqe11.dk.customer.tdc.net> has joined #angularjs
[13:47:52] *** djboz <djboz!~djboz@c-69-139-16-116.hsd1.pa.comcast.net> has joined #angularjs
[13:51:12] *** preity <preity!3a442d12@gateway/web/freenode/ip.58.68.45.18> has quit IRC (Ping timeout: 240 seconds)
[13:51:46] *** george_v <george_v!~george_v@77.49.223.194.dsl.dyn.forthnet.gr> has joined #angularjs
[13:53:55] *** edrocks <edrocks!~edrocks@66-194-206-178.static.twtelecom.net> has joined #angularjs
[13:56:03] *** wudilab <wudilab!~wudi@203-219-1-197.static.tpgi.com.au> has joined #angularjs
[13:58:14] *** leolrrj <leolrrj!~leolrrj@rrcs-24-73-238-194.se.biz.rr.com> has joined #angularjs
[13:58:15] *** edrocks <edrocks!~edrocks@66-194-206-178.static.twtelecom.net> has quit IRC (Ping timeout: 265 seconds)
[13:59:24] *** _moloch <_moloch!~moloch@cpe-98-150-237-205.hawaii.res.rr.com> has quit IRC (Quit: Bye)
[13:59:56] *** a_thakur_ <a_thakur_!~a_thakur@45.116.2.250> has joined #angularjs
[14:00:24] *** tarnus <tarnus!~tarnus@108-202-169-121.lightspeed.spfdmo.sbcglobal.net> has joined #angularjs
[14:00:39] *** a_thakur <a_thakur!~a_thakur@45.116.2.250> has quit IRC (Ping timeout: 276 seconds)
[14:01:27] <durin_> @icebox hello i have read the articel and it is very good, can you give me a hint, why you show me this in context with my plunker?
[14:02:17] <icebox> durin_: to understand better async workflow with promises
[14:02:32] <icebox> durin_: not related directly with your request
[14:03:31] *** VeeWee <VeeWee!~VeeWee@surf0.cronos.be> has joined #angularjs
[14:04:21] *** kablazan <kablazan!~brollypop@195.178.115.1> has joined #angularjs
[14:05:42] <durin_> ah okey, the articel is very good :D
[14:06:01] <Bish> hell, hello world is complicated with angular2
[14:06:05] <Bish> (with routing)
[14:06:11] *** w0rp_ <w0rp_!~w0rp@host31-53-133-102.range31-53.btcentralplus.com> has joined #angularjs
[14:06:41] *** w0rp <w0rp!~w0rp@host31-53-133-102.range31-53.btcentralplus.com> has quit IRC (Ping timeout: 265 seconds)
[14:06:45] <star_prone> what article?
[14:06:57] *** brollypop <brollypop!~brollypop@195.178.115.1> has quit IRC (Ping timeout: 265 seconds)
[14:08:57] *** idwaker <idwaker!~idwaker@202.166.206.8> has quit IRC (Quit: Leaving)
[14:09:02] <durin_> this one https://pouchdb.com/2015/05/18/we-have-a-problem-with-promises.html
[14:09:07] *** asteele <asteele!~Cronoh@192.77.237.216> has quit IRC (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
[14:09:52] *** michaelsharpe <michaelsharpe!~michaelsh@198-48-172-67.cpe.pppoe.ca> has joined #angularjs
[14:10:09] <Bish> what do i need that module for, gnaah what is this
[14:10:17] *** toni_ <toni_!~toni@41.207.252.122> has quit IRC (Ping timeout: 272 seconds)
[14:10:49] *** Ziberius <Ziberius!~IceChat78@pc-11-47-46-190.cm.vtr.net> has quit IRC (Ping timeout: 244 seconds)
[14:11:47] *** toni_ <toni_!~toni@41.207.252.122> has joined #angularjs
[14:13:54] *** rocktop__ <rocktop__!~rocktop@160.176.30.98> has quit IRC (Read error: Connection reset by peer)
[14:14:14] *** naveenvalecha <naveenvalecha!~naveenval@unaffiliated/naveenvalecha> has quit IRC (Remote host closed the connection)
[14:14:38] *** rocktop__ <rocktop__!~rocktop@160.176.30.98> has joined #angularjs
[14:15:27] *** siba <siba!~textual@60-242-28-48.static.tpgi.com.au> has joined #angularjs
[14:17:53] *** toni_ <toni_!~toni@41.207.252.122> has quit IRC (Ping timeout: 264 seconds)
[14:17:56] *** fuchstronaut <fuchstronaut!~fuchstron@unaffiliated/fuchstronaut> has quit IRC (Remote host closed the connection)
[14:18:22] *** nadoneves <nadoneves!~Thunderbi@177.131.144.72> has joined #angularjs
[14:19:36] *** ah <ah!~ah@145.81-166-25.customer.lyse.net> has quit IRC (Ping timeout: 250 seconds)
[14:20:29] *** fdev <fdev!~fdev@xd9bad026.dyn.telefonica.de> has joined #angularjs
[14:20:47] *** ah <ah!~ah@145.81-166-25.customer.lyse.net> has joined #angularjs
[14:22:09] <Bish> jesus christ, never expected ng2 to be so complicated
[14:22:58] <Bish> https://gist.github.com/anonymous/fb2845c275e775209f2a6755135f7a2b <= let me guess, this doesn't work because app does not know anything about testone and testtwo?
[14:23:15] *** itamarjp <itamarjp!~itamar@fedora/itamarjp> has joined #angularjs
[14:23:53] <bd-> i think you need an @NgModule somewhere
[14:24:15] <Bish> for what?
[14:25:43] <bd-> to declare what components you want to use
[14:26:14] *** wudilab <wudilab!~wudi@203-219-1-197.static.tpgi.com.au> has quit IRC (Quit: Leaving)
[14:26:16] *** citizen-stig <citizen-stig!~citizen-s@89.221.207.219> has joined #angularjs
[14:26:28] <Bish> http://embed.plnkr.co/eBv3hZZSk9Tx3joykvSQ/ <= this doesn't seem to do it
[14:30:18] *** leolrrj <leolrrj!~leolrrj@rrcs-24-73-238-194.se.biz.rr.com> has quit IRC (Remote host closed the connection)
[14:30:41] *** citizen-stig <citizen-stig!~citizen-s@89.221.207.219> has quit IRC (Ping timeout: 240 seconds)
[14:31:10] <Bish> what is so good about angular2 besides performance and being good for big projects, it looks overly complicated
[14:31:19] <Bish> unlike what made ng1 what it is
[14:31:24] *** toni_ <toni_!~toni@41.207.252.122> has joined #angularjs
[14:33:10] <uru> Bish: If you don't like it then don't use it ;) But imo there's nothing overly complicated about using ng2. You have a module with some things in it, one of those gets bootstrapped as the entry point.
[14:33:26] *** Aliks <Aliks!~aliks@c-50-161-64-217.hsd1.ca.comcast.net> has joined #angularjs
[14:33:42] <Bish> well, im saying this not to flame, i want someone to convince me otherwise, like you're trying
[14:33:51] <Bish> but i don't get the advantage of this weird module thingy
[14:33:57] *** seyyo <seyyo!d54aca59@gateway/web/freenode/ip.213.74.202.89> has joined #angularjs
[14:34:00] <uru> Plunker has a "hello world" template and imo the offical docs cover the basics very well
[14:34:15] *** whitebook <whitebook!~whitebook@ool-d18c239d.dyn.optonline.net> has joined #angularjs
[14:34:27] <uru> Bish: The modules become useful when you have very large apps to manage. It helps seperate out your code in to smaller and resuable parts
[14:34:29] *** seyyo <seyyo!d54aca59@gateway/web/freenode/ip.213.74.202.89> has quit IRC (Client Quit)
[14:34:32] <Bish> in angular2 you didn't have to read about it
[14:34:56] <Bish> uru: yeah i get that, but why isn't there something like a default module, if you choose not to use them
[14:35:01] <uru> For example we have a "UI" module that contains a bunch of commonly used interface things like sliders and switches
[14:35:26] <uru> In that case you have a single module, I don't really see what is so hard about that?
[14:35:37] *** iraj_ <iraj_!~iraj@91.107.244.101> has quit IRC (Ping timeout: 272 seconds)
[14:36:04] <Bish> the examples i see don't have modules
[14:36:18] <uru> If you can't be bothered to keep the module definition up to date then you could have a build tool to generate it for you.
[14:36:21] <uru> No?
[14:36:35] <liefer> I have never done web development, but for me angular2 is worth the time and effort to learn. So far it does not appear overengineered at all, but does force you do adhere to good habits that you *should* be following regardless
[14:37:01] <Bish> uru: again, it doesn't seem to be something you have to do
[14:37:27] <icebox> Bish: http://blog.angular-university.io/angular2-ngmodule/
[14:37:37] <uru> Bish: So poke the core team with a feature request then, for all I know it could already be in the works.
[14:38:09] <Bish> uru: eh!?
[14:38:21] <Bish> i just want to have a single file demo with routing
[14:38:45] <Bish> and i fail to show 2 components
[14:38:48] <Bish> already
[14:38:49] <uru> Bish: https://angular.io/resources/live-examples/toh-5/ts/plnkr.html ?
[14:38:50] *** Aliks <Aliks!~aliks@c-50-161-64-217.hsd1.ca.comcast.net> has quit IRC (Ping timeout: 260 seconds)
[14:38:52] <bd-> they added ngmodule in rc5 so a lot of docs about ng2 are out of date
[14:38:57] *** vassagus <vassagus!~vassagus@186.4.2.162> has joined #angularjs
[14:39:11] <uru> Bish: Found here https://angular.io/docs/ts/latest/tutorial/toh-pt5.html
[14:39:18] <Bish> http://embed.plnkr.co/xTyGA7Klq8Mta2T1yANh/ <= this doesn't have modules
[14:39:22] <Bish> is it outdated?
[14:39:31] <uru> Bish: Yes, very
[14:39:39] <uru> it's using alpha.45
[14:39:40] <Bish> so you have to do ngmodules?
[14:39:48] <uru> yep
[14:40:06] *** fuchstronaut <fuchstronaut!~fuchstron@unaffiliated/fuchstronaut> has joined #angularjs
[14:40:12] <Bish> and why does having a single appcomponent + bootstrap work?
[14:40:12] <uru> icebox's link has plenty of information on the subject
[14:40:23] <Bish> becaue appcomponent is a module ?
[14:40:27] <Bish> containing itself?
[14:40:45] <uru> No, modules and components are seperate things
[14:40:49] *** Timelaw <Timelaw!~Timelaw@h-190-33.a486.priv.bahnhof.se> has joined #angularjs
[14:41:11] <Bish> so, why does it worK?
[14:41:15] *** a_thakur_ <a_thakur_!~a_thakur@45.116.2.250> has quit IRC ()
[14:41:18] *** toni_ <toni_!~toni@41.207.252.122> has quit IRC (Ping timeout: 264 seconds)
[14:41:19] <uru> what is /it/?
[14:41:35] <Bish> having a single app component, and a template + bootstrap, it runs
[14:41:37] <Bish> without a module
[14:42:06] <uru> Bish: If you are talking about that plunker you linked it's because it's using a very old alpha version from before modules where introduced
[14:42:10] <Bish> no
[14:42:11] <Bish> i am not
[14:42:12] *** Timelaw <Timelaw!~Timelaw@h-190-33.a486.priv.bahnhof.se> has left #angularjs ("WeeChat 1.5")
[14:42:21] <uru> I've no idea what you are refering to then :)
[14:42:31] <Bish> okay, one sec
[14:42:35] *** michaelsharpe <michaelsharpe!~michaelsh@198-48-172-67.cpe.pppoe.ca> has quit IRC (Remote host closed the connection)
[14:42:36] <Pyrrhus666> alpha45 ? nice :)
[14:42:37] *** djboz <djboz!~djboz@c-69-139-16-116.hsd1.pa.comcast.net> has quit IRC (Remote host closed the connection)
[14:42:52] <Bish> https://gist.github.com/anonymous/0ff37633b9c97713fa80bf575531afee
[14:42:54] <Bish> this works.
[14:43:13] *** vpi <vpi!~vpi@195.66.82.9> has quit IRC (Read error: Connection reset by peer)
[14:43:28] <Bish> (like no magic inside there)
[14:43:33] <uru> Bish: Still looks like you are using an old version
[14:43:35] *** vpi <vpi!~vpi@195.66.82.9> has joined #angularjs
[14:43:45] <Bish> but i don't
[14:43:53] <uru> you are importing from "angular2/" not "@angular"
[14:44:08] <Bish> i have no clue what that @ means
[14:44:31] <Bish> angular2 at 2 dot 0.0-beta.17 <= what i use right now
[14:44:42] <uru> yes, that's an old old version of ng2
[14:44:42] <Pyrrhus666> still ancient
[14:44:50] <uru> Latest is angular at 2 dot 0.0
[14:44:52] <Bish> "ancient"
[14:45:05] *** davi-lima <davi-lima!~Davi@177.206.196.199.dynamic.adsl.gvt.net.br> has quit IRC (Ping timeout: 240 seconds)
[14:45:07] <s_20> Bish: welcome to the wonderful world of frontend development
[14:45:16] <icebox> uru: 2.0.1 :)
[14:45:17] <Pyrrhus666> yes ancient. this is from before *6* RC´s
[14:45:19] <icebox> Bish: https://github.com/angular/angular/blob/master/CHANGELOG.md
[14:45:27] <uru> icebox: Ah, neat :)
[14:45:50] *** zivester <zivester!~zivester@pool-100-35-226-28.nwrknj.fios.verizon.net> has joined #angularjs
[14:46:05] *** bsrd <bsrd!~ukk@0133902281.0.fullrate.ninja> has quit IRC (Quit: WeeChat 1.5)
[14:46:22] <icebox> Bish: in the changelog you can find breaking changes and other relevant info
[14:46:25] *** vassagus <vassagus!~vassagus@186.4.2.162> has quit IRC (Ping timeout: 260 seconds)
[14:46:43] <Bish> well it's the latest npm version
[14:46:44] <Bish> isn't it?
[14:46:46] <uru> nope
[14:46:55] <SaltyCatFish> icebox: articles you sent from yesterday were a big help, thanks again
[14:47:01] *** denisra_ <denisra_!~denisra@88.128.80.217> has joined #angularjs
[14:47:02] *** whitebook <whitebook!~whitebook@ool-d18c239d.dyn.optonline.net> has quit IRC (Remote host closed the connection)
[14:47:04] <icebox> SaltyCatFish: you are welcome
[14:47:25] <Bish> maintainers: [ 'angularcore <angular-core+npm at google dot com>' ],
[14:47:26] <Bish> 'dist-tags': { latest: '2.0.0-beta.17' },
[14:47:28] <Bish> sorry
[14:47:46] <icebox> Bish: no
[14:47:48] <durin_> hey guys what you thing about my solution? http://plnkr.co/edit/a64w80aXFLrWMBHyEPYI?p=preview
[14:47:53] <Bish> icebox: no what
[14:48:25] <icebox> Bish: it is not "npm install angular2"... please, read the changelog
[14:48:35] *** citizen-stig <citizen-stig!~citizen-s@89.221.207.219> has joined #angularjs
[14:48:50] <icebox> Bish: https://github.com/angular/angular/blob/master/CHANGELOG.md#200-rc0-2016-05-02
[14:49:17] <Bish> please install this one million packages to get a running envuronment, thank you
[14:49:31] *** vrockai <vrockai!~vrockai@ip-89-102-10-111.net.upcbroadband.cz> has quit IRC (Remote host closed the connection)
[14:49:34] *** denisra <denisra!~denisra@88.128.80.217> has quit IRC (Ping timeout: 265 seconds)
[14:50:24] <icebox> Bish: that decision was explained... :)
[14:50:45] *** arizzo <arizzo!~arizzo@pool-100-34-253-181.phlapa.fios.verizon.net> has joined #angularjs
[14:51:00] <icebox> Bish: apart using an old version of angular, what is your request?
[14:51:12] *** captn_hook <captn_hook!~captn_hoo@64.69.57.2> has joined #angularjs
[14:51:22] <Bish> im having the new one know, while not knowing what that @ means
[14:51:32] *** csk <csk!~csk@190-21-122-53.baf.movistar.cl> has joined #angularjs
[14:51:35] <Bish> my quest is to write ng2 app without going mad
[14:51:37] *** winegoddess <winegoddess!~winegodde@ip-64-134-155-104.public.wayport.net> has joined #angularjs
[14:51:48] <bd-> impossible
[14:51:48] <durin_> maybe ionic2?
[14:51:54] <icebox> bd-: :P
[14:52:00] * uru cackles
[14:52:03] <Pyrrhus666> Bish: if you just grab an up-to-date starter you´re up in no time.
[14:52:13] *** nicksloan <nicksloan!~nicksloan@unaffiliated/iamethos> has joined #angularjs
[14:52:26] <Bish> Pyrrhus666: i don't do "just run it" i also want to understand it
[14:52:32] <captn_hook> Hey guys, new to using some packages with angular. I'm wanting to use d3 and d3-hierarchy with a component I'm making. So I have them and the @types installed too. However, I can't get the typescript compiler errors to go away for trying to reference things like d3.hierarchy(). Anyone think they could give me a hand?
[14:52:40] <Bish> sure i can get the hello world plunker, but at some time, i will have to know whats going on to use it
[14:52:41] <Pyrrhus666> Bish: that comes after.
[14:52:47] <Bish> so i might aswell start with understanding
[14:53:02] <Bish> and so far i think ng devs went crazy while building ng1
[14:53:07] <bd-> angular-cli is the 'official' way to create a basic app
[14:53:16] <bd-> if you can get it working
[14:53:22] <Pyrrhus666> bd-: that will surely drive you mad :P
[14:54:01] <icebox> imagine there is someone using angular 2 with ES5 :)
[14:54:18] <Bish> there is?
[14:54:22] <icebox> me :)
[14:54:33] <Bish> why would you
[14:55:07] <icebox> Bish: because I prefer coding with ES2015 (or ES5) instead of Typescript
[14:55:30] *** kalai <kalai!75ca4cc3@gateway/web/freenode/ip.117.202.76.195> has joined #angularjs
[14:55:45] *** akkonrad <akkonrad!~akkonrad3@gae109.internetdsl.tpnet.pl> has quit IRC (Quit: Leaving)
[14:55:51] <durin_> noone :/
[14:56:12] <Bish> wasn't it es6?
[14:56:18] <Bish> es2015 = es6
[14:57:01] *** winfli <winfli!~winfli@189.208.142.207> has quit IRC (Remote host closed the connection)
[14:57:05] <kalai> anybody can tell me
[14:57:08] *** moloch <moloch!~moloch@cpe-98-150-237-205.hawaii.res.rr.com> has joined #angularjs
[14:57:11] <icebox> Bish: official name since June 2015 it is ES2015
[14:57:30] <kalai> where can i get the stuffs to learn about web designing
[14:57:38] <Bish> yeah i know, but still, when you say es5 you mean without classes?
[14:57:49] <Bish> >reflect-metadata shim is required..
[14:57:54] *** akkonrad <akkonrad!~akkonrad3@gae109.internetdsl.tpnet.pl> has joined #angularjs
[14:58:00] <Bish> im done, ng2 is crazy
[14:58:03] <icebox> Bish: when I say ES5 I mean the standard before ES2015 :)
[14:58:04] *** howitdo <howitdo!~howitdo@unaffiliated/howitdo> has joined #angularjs
[14:58:13] <Bish> well, without classes?
[14:58:19] <kalai> s
[14:58:20] *** VeeWee <VeeWee!~VeeWee@surf0.cronos.be> has quit IRC (Quit: WeeChat 1.4)
[14:58:40] *** kalai <kalai!75ca4cc3@gateway/web/freenode/ip.117.202.76.195> has left #angularjs
[14:58:51] <icebox> Bish: https://en.wikipedia.org/wiki/ECMAScript
[14:59:05] *** hashrocket <hashrocket!uid27380@gateway/web/irccloud.com/x-fqwienwllnbpiixq> has joined #angularjs
[14:59:35] *** toni_ <toni_!~toni@41.66.216.162> has joined #angularjs
[14:59:53] <captn_hook> Is there anywhere to download the full d3 type definitions for version 4?
[15:00:30] <DieguezZ> thanks a lot icebox (sorry i was having lunch)
[15:00:40] <icebox> DieguezZ: you are welcome
[15:01:15] *** arizzo <arizzo!~arizzo@pool-100-34-253-181.phlapa.fios.verizon.net> has quit IRC (Remote host closed the connection)
[15:01:16] <bd-> Bish: it's fine to stick with ng1, ng2 only really provides benefits if you have 30 developers working on a single project in some ENTERPRISE setting
[15:01:20] <icebox> captn_hook: https://github.com/d3/d3/issues/2855
[15:02:25] *** raijin <raijin!~raijin@unaffiliated/raijin> has quit IRC (Ping timeout: 255 seconds)
[15:02:36] <captn_hook> @icebox thanks, but those definitions are not seeming to be considered when I try to incorporate them into my project
[15:02:40] *** rscata <rscata!~cata@5.2.202.145> has quit IRC (Quit: Leaving)
[15:03:19] <icebox> really the last finalized standard is ES2016 :)
[15:03:44] <rand0m> guys
[15:03:46] <rand0m> quick question
[15:03:47] <icebox> captn_hook: well.. it is not an angular affair... here #angularjs
[15:03:47] <rand0m> https://github.com/jakemmarsh/angularjs-gulp-browserify-boilerplate/blob/9d3f56a700c05747fc826d3e6a86c23b27a399a4/app/js/services/example.js
[15:03:58] <rand0m> $http.get('apiPath')
[15:04:02] <rand0m> what is apiPath here?
[15:04:17] <bd-> a relative url
[15:04:28] <bd-> if you are on / then it would be /apiPath
[15:04:29] <icebox> rand0m: it is the endpoint
[15:04:29] *** gain_ <gain_!~Gianni@101.9.61.188.dynamic.wline.res.cust.swisscom.ch> has quit IRC (Quit: Leaving)
[15:04:34] <rand0m> where is it defined?
[15:04:40] <rand0m> I see that there is a config
[15:04:40] <rand0m> https://github.com/jakemmarsh/angularjs-gulp-browserify-boilerplate/blob/9d3f56a700c05747fc826d3e6a86c23b27a399a4/app/js/constants.js
[15:04:40] <bd-> it's not defined, it's a literal string
[15:04:43] <rand0m> oic
[15:04:50] *** naveenvalecha <naveenvalecha!~naveenval@unaffiliated/naveenvalecha> has joined #angularjs
[15:04:58] <captn_hook> Well, it has to do with how angular-cli has set up this environment to see typescript definitions I'm assuming, but whatever. Unhelpful room this morning
[15:05:04] *** whitebook <whitebook!~whitebook@ool-d18c239d.dyn.optonline.net> has joined #angularjs
[15:05:09] <rand0m> he aleady defined api url in config
[15:05:13] <rand0m> can that be reused?
[15:05:17] <bd-> sure
[15:05:26] <rand0m> also how does one call the service and pass in additional information?
[15:05:40] <rand0m> function ExampleService($http, param) { ?
[15:05:41] <bd-> but that's the root url of the api, not an endpoint
[15:06:09] <Bish> bd-: yeah i know, still this is crazy
[15:06:13] <Bish> it doesn't have to be like this
[15:06:40] *** whitebook <whitebook!~whitebook@ool-d18c239d.dyn.optonline.net> has quit IRC (Remote host closed the connection)
[15:07:02] <icebox> captn_hook: surely your setup is not correct.. because the type are there https://github.com/DefinitelyTyped/DefinitelyTyped/pull/10228
[15:07:36] <captn_hook> And that's what I'm looking for guidance on. Clearly my setup is not correct, or else it would see the definitions
[15:07:52] <Bish> bd-: ng1 got so popular because you could've hello world without even writing a single line of code
[15:08:03] <icebox> captn_hook: yes... for typescript... not for angular
[15:08:05] <Bish> now i am sitting here, 30min+ not being able to make a link
[15:09:06] <captn_hook> What a swell guy
[15:09:10] *** naveenvalecha <naveenvalecha!~naveenval@unaffiliated/naveenvalecha> has quit IRC (Ping timeout: 255 seconds)
[15:09:12] *** rickmak_ <rickmak_!~rickmak@203186221114.ctinets.com> has quit IRC (Quit: rickmak_)
[15:09:15] <icebox> captn_hook: I am sure if you ask the right question in the right channel, you may get an helpful answer :)
[15:09:38] *** gvanderest <gvanderest!~gvanderes@S01066c709fd71834.ok.shawcable.net> has joined #angularjs
[15:10:12] *** durin_ <durin_!58d9e1ec@gateway/web/freenode/ip.88.217.225.236> has quit IRC (Ping timeout: 240 seconds)
[15:10:13] <icebox> captn_hook: I suggest typescript channel or filling an issue in d3 repo
[15:10:35] *** marc_v92 <marc_v92!~marc_v92@unaffiliated/marc-v92/x-6202358> has joined #angularjs
[15:11:10] *** HalfEatenPie <HalfEatenPie!~HalfEaten@unaffiliated/halfeatenpie> has quit IRC (Ping timeout: 250 seconds)
[15:12:33] *** moloch <moloch!~moloch@cpe-98-150-237-205.hawaii.res.rr.com> has quit IRC (Quit: Bye)
[15:14:18] *** HalfEatenPie <HalfEatenPie!~HalfEaten@unaffiliated/halfeatenpie> has joined #angularjs
[15:14:24] <Bish> ffs..
[15:14:53] *** zol <zol!~zolomon@31.208.76.60> has quit IRC (Disconnected by services)
[15:15:19] *** zol1 <zol1!~zolomon@31.208.76.60> has joined #angularjs
[15:15:55] *** el_Bromso <el_Bromso!~textual@213-209-01.netrun.cytanet.com.cy> has quit IRC (Ping timeout: 255 seconds)
[15:17:16] *** siba <siba!~textual@60-242-28-48.static.tpgi.com.au> has quit IRC (Quit: My Mac has gone to sleep. ZZZzzz…)
[15:17:22] <icebox> Bish: wait for 3.0.0 :P
[15:17:33] <icebox> Bish: http://splintercode.github.io/is-angular-2-ready/
[15:18:04] <Bish> yes i will wait, because i want to keep my sanity
[15:18:16] <Bish> there aren't good libraries anyways yet i suppose
[15:19:12] <Bish> but the fact i cannot do "jspm i @angular-whatever" and just use it is crazy
[15:19:18] <Bish> that can't be good
[15:19:32] <Bish> oh i get it, 3.0.0 was a joke.
[15:19:37] <icebox> Bish: yes :)
[15:21:46] *** blackwind_123 <blackwind_123!~IceChat9@117.192.143.246> has quit IRC (Ping timeout: 244 seconds)
[15:22:43] <icebox> Bish: interesting large thread https://github.com/angular/angular/issues/10552
[15:22:58] *** Duikb00t <Duikb00t!54c71612@gateway/web/cgi-irc/kiwiirc.com/ip.84.199.22.18> has joined #angularjs
[15:23:15] <Duikb00t> Can I easily setup an AngularApplication ( basic thingy ) in jsFiddle?
[15:23:53] <Bish> Duikb00t: if it's ng1 yes, ng2 no
[15:24:05] <Bish> you will have to get a degree in physics to do that
[15:24:17] <Bish> Duikb00t: just kidding, sure it is.
[15:24:35] *** shinnya <shinnya!~shinnya@245.144.137.133.dy.bbexcite.jp> has joined #angularjs
[15:24:45] <icebox> Bish: and this one https://github.com/angular/angular/issues/3458
[15:24:55] *** cuebix <cuebix!~cuebix@8.214.108.190-cust.enetworksgy.com> has joined #angularjs
[15:24:55] <Duikb00t> Im looking at a good framework to create form-wizards, Im coming form jQuery and now looking at: React / VueJS and Angular2.
[15:25:06] <Duikb00t> >< https://jsfiddle.net/kq8e7ddn/8/ vue thingy
[15:25:13] *** naveenvalecha <naveenvalecha!~naveenval@unaffiliated/naveenvalecha> has joined #angularjs
[15:25:23] <Bish> Duikb00t: you don't want angular as "form-handler"
[15:25:34] *** Poeticode <Poeticode!~Prophesi@host-68-169-169-183.VABOLT2.epbfi.com> has joined #angularjs
[15:25:36] <Bish> you want it as full solution for your single page application or not at all
[15:25:55] <Duikb00t> SPA >> with multiple views etc
[15:26:08] <Bish> icebox: jesus christ i don't want to read a book, i just want a hello world with a router with jspm
[15:26:12] *** vassagus <vassagus!~vassagus@186.4.2.162> has joined #angularjs
[15:26:20] <Bish> and no i don't want to copy paste stuff together, because i will never ever do that
[15:26:24] <Bish> Duikb00t: yes
[15:26:26] <Duikb00t> Are SPA form actions always pointing to an API /POST , ... CRUD action?
[15:26:42] <Bish> Duikb00t: what do you mean by saying pointing?
[15:26:45] <icebox> Bish: you said, I want to understand... :) to understand you need to read details :)
[15:26:53] <Pyrrhus666> Bish: use the official quickstart and be done with it.
[15:27:05] <Pyrrhus666> helloworld in 2 minutes
[15:27:10] <Duikb00t> Le'ts assume a single basic registration page. in a AngularJS application
[15:27:18] <Duikb00t> Where is the form action going to when using a PHP.. backend
[15:27:30] *** winegoddess <winegoddess!~winegodde@ip-64-134-155-104.public.wayport.net> has quit IRC (Quit: My Mac has gone to sleep. ZZZzzz…)
[15:27:31] <Duikb00t> . /user/create ? [ post ] ? something like that?
[15:27:38] *** jsightler_afk is now known as jsightler
[15:27:38] <icebox> Bish: in ES5 that is done in 30 lines of code following all the best practices :)
[15:27:39] <Pyrrhus666> Duikb00t: in angular there is no form action.
[15:27:41] *** george_v <george_v!~george_v@77.49.223.194.dsl.dyn.forthnet.gr> has quit IRC (Quit: Leaving)
[15:27:46] <Duikb00t> Hmm
[15:27:53] <Duikb00t> :D
[15:28:05] <Bish> icebox: teach me
[15:28:05] <Pyrrhus666> Duikb00t: angular handles the form, which is asynchrously submitted.
[15:28:10] <icebox> Bish: using components, views, routing and so on
[15:28:12] <Bish> typescript is ugly anyways
[15:28:21] <Duikb00t> asynchrously submitted . .
[15:28:29] *** toni_ <toni_!~toni@41.66.216.162> has quit IRC (Ping timeout: 244 seconds)
[15:28:36] <icebox> Bish: https://github.com/albertosantini/angular2-es5-jumpstart
[15:28:37] <Bish> Duikb00t: sure, that is most time what you will be doing yes
[15:28:48] <Duikb00t> How does that look like?
[15:28:54] <Duikb00t> If that is the right question?
[15:29:24] *** george_v <george_v!~george_v@77.49.223.194.dsl.dyn.forthnet.gr> has joined #angularjs
[15:29:31] <Pyrrhus666> Duikb00t: start here I guess ? https://docs.angularjs.org/tutorial
[15:29:42] <Pyrrhus666> Duikb00t: or do you want angular2
[15:29:45] <Bish> Duikb00t: it does look like you said, it's a page which looks like any other page
[15:29:52] <Duikb00t> Angular2 :)
[15:30:09] <Bish> and it does communicate mostly or only by small http requests containing the information which is dynamic
[15:30:14] <Pyrrhus666> Duikb00t: https://angular.io/docs/ts/latest/quickstart.html
[15:30:21] *** naveenvalecha <naveenvalecha!~naveenval@unaffiliated/naveenvalecha> has quit IRC ()
[15:30:22] <Bish> Duikb00t: Angular(2) does not tell you how your page has to look
[15:30:36] <Duikb00t> Hmm
[15:30:51] *** marc_v92 <marc_v92!~marc_v92@unaffiliated/marc-v92/x-6202358> has quit IRC (Quit: Probably either lunch time or home time.)
[15:31:23] <Duikb00t> angular feels like it needs so much dependencies.
[15:31:31] <Bish> icebox: i already like that ng.router.RouterModule.forRoot part
[15:31:42] <Bish> Duikb00t: funny, because it doesn't have any
[15:31:51] <Bish> atleast speaking of angular1
[15:32:10] <Duikb00t> Let's say I would like to start coding now in a JSFiddle as test with Angular2.
[15:32:15] <orionstein> angular 2 needs some shims, for browser support mostly
[15:32:34] *** fedenunez <fedenunez!~fede@r167-61-16-59.dialup.adsl.anteldata.net.uy> has joined #angularjs
[15:32:35] <Bish> Duikb00t: then go to the angular website, there is a working jsfiddle/plunker
[15:32:40] <Bish> already
[15:32:47] <Bish> there is no other (sane) way to easily do it
[15:33:46] <Pyrrhus666> Bish: oh shut it. the git quickstart and preboot´s starter work fine.
[15:34:00] *** nya_ <nya_!~nya@p7902c6f7.tokynt01.ap.so-net.ne.jp> has joined #angularjs
[15:34:06] *** vassagus <vassagus!~vassagus@186.4.2.162> has quit IRC (Ping timeout: 264 seconds)
[15:34:08] <Duikb00t> > Bish https://jsfiddle.net/duikboot/n5pjgev6/103/ some quick google
[15:34:28] <Bish> Pyrrhus666: like it matters if you have a fiddle having the ONLY ONE CONFIGURATION THAT WORKs
[15:34:34] <Bish> or you unzip it
[15:34:38] <Bish> same thing, really
[15:34:39] <icebox> Bish: for ES5 fans... https://angular.io/docs/js/latest/guide/cheatsheet.html
[15:34:50] <Pyrrhus666> Bish: that´s simply a lie.
[15:35:00] <Bish> Pyrrhus666: okay, it's entirely different
[15:35:15] <Pyrrhus666> I´ve done both the quickstart and preboot, both work.
[15:35:24] <Bish> Pyrrhus666: yeah i never said anything else
[15:35:34] <Bish> but you downloaded a configuration THE CONFIGURATIOn to be exact
[15:36:03] <Bish> icebox: what if i want es6/2015/whatever classes?
[15:36:05] <icebox> Bish: there is a companion repo for typescript https://github.com/DanWahlin/Angular2-JumpStart
[15:36:05] <Pyrrhus666> also no problem. grab the config from the quickstart, npm install and go.
[15:36:13] *** nya_ <nya_!~nya@p7902c6f7.tokynt01.ap.so-net.ne.jp> has quit IRC (Remote host closed the connection)
[15:36:18] *** PalTale <PalTale!~PalTale@paltale.com> has quit IRC (Ping timeout: 250 seconds)
[15:36:31] <Bish> Pyrrhus666: yeah great. stil the same thing
[15:36:38] *** zac <zac!~zac@2601:40d:8101:de00:15f5:2fe8:8d46:c172> has joined #angularjs
[15:36:40] *** Umesh <Umesh!3180a5dc@gateway/web/freenode/ip.49.128.165.220> has joined #angularjs
[15:36:41] <icebox> Bish: here we are... https://github.com/toddmotto/angular-styleguide
[15:36:49] <Pyrrhus666> you got a working config, up in minutes. what more do you want ?
[15:36:55] *** smiche <smiche!~smuxi@mobile-access-6df000-1.dhcp.inet.fi> has joined #angularjs
[15:37:02] *** ycon_ <ycon_!~ycon_@CPE-121-209-3-211.bqgp1.sa.bigpond.net.au> has quit IRC (Remote host closed the connection)
[15:37:15] <Bish> Pyrrhus666: never said you woudln't but when you say "a working config" it's simply not true
[15:37:18] <Umesh> help
[15:37:21] <Duikb00t> > Bish http://jsfiddle.net/duikboot/AU6Md/15/ euhyh
[15:37:23] <Bish> it's "the" working config, and that makes me crazy
[15:37:30] *** fixl <fixl!~fixl@14-201-215-206.tpgi.com.au> has quit IRC (Quit: Konversation terminated!)
[15:37:33] <Pyrrhus666> what about the quickstart isn´t a working config ?
[15:37:44] *** PalTale <PalTale!kiwi@paltale.com> has joined #angularjs
[15:37:44] <Bish> when did i say that
[15:38:04] <Bish> icebox: that one is angular1.x?
[15:38:07] <Duikb00t> dammit that angular 1
[15:38:09] <Umesh> how to restrict use on particular url on browser back and front button in angularjs
[15:38:11] *** csk_ <csk_!~csk@181.201.30.114> has joined #angularjs
[15:38:12] <Pyrrhus666> (3:37:15 PM) Bish: Pyrrhus666: never said you woudln't but when you say "a working config" it's simply not true
[15:38:22] *** csk <csk!~csk@190-21-122-53.baf.movistar.cl> has quit IRC (Read error: Connection reset by peer)
[15:38:27] <Bish> i said something else after that
[15:38:38] <icebox> Bish: yes, I know... you need to mix that and ES5 jump start knowledge :)
[15:38:55] *** whitebook <whitebook!~whitebook@ool-d18c25ea.dyn.optonline.net> has joined #angularjs
[15:39:05] <Bish> icebox: i meant that ng.Core.Class thing.. you have to specify the constructor as a function, can i not put a es2015 class in there?
[15:39:06] <Duikb00t> * Bish Angular2 - http://jsfiddle.net/duikboot/AU6Md/16/
[15:39:10] *** captn_hook <captn_hook!~captn_hoo@64.69.57.2> has left #angularjs
[15:39:12] <Pyrrhus666> why would it matter what you feel about it ? it works.
[15:39:15] <Bish> Duikb00t: yeah good for you
[15:39:27] *** dodobrain <dodobrain!~dodobrain@unaffiliated/freakabcd> has quit IRC (Ping timeout: 276 seconds)
[15:39:34] <icebox> Bish: I think so... but I never tried it
[15:39:38] <Bish> Pyrrhus666: yeah did i ever say something against it? i told him to use the fiddle because he could turn crazy
[15:40:37] *** nya_ <nya_!~nya@p7902c6f7.tokynt01.ap.so-net.ne.jp> has joined #angularjs
[15:40:54] <Bish> icebox: but then i would say "constructor:class{constructor(){...}}" wouldn't that be weird?
[15:42:12] <icebox> Bish: I think the result it would be different, but, as I said, I never tried that
[15:42:44] *** anggy <anggy!79f1a5f5@gateway/web/freenode/ip.121.241.165.245> has joined #angularjs
[15:42:48] <anggy> hi
[15:42:53] <Umesh> how to restict user from accessing particular url on browser back and forward button in angularjs
[15:43:22] <bd-> Umesh: ui-router can handle that quite well
[15:43:36] <icebox> Umesh: it is not an angular affair... it is browser one
[15:43:41] <anggy> how can i pass params in pop-up window to the main window.
[15:43:52] *** toni_ <toni_!~toni@41.207.252.122> has joined #angularjs
[15:43:57] <icebox> bd: I understand blocking back and forward button
[15:44:04] <Umesh> yes
[15:44:20] <bd-> i read it as blocking routes which get loaded differently on navigation vs initial page load
[15:44:37] <icebox> bd-: I hope you are right
[15:44:51] <bd-> cause 'accessing particular url' doesn't make much sense otherwise
[15:45:32] <Umesh> I have record id in the url and i didn't user to access again
[15:46:27] *** rho <rho!~rho@drupal.org/user/114058/view> has joined #angularjs
[15:47:17] <Bish> Pyrrhus666: and what configuration do i take if i like jspm?
[15:48:11] <bd-> Umesh: if using ui-router you can probably do it with a combination of `resolve` and http interceptors
[15:48:13] *** denisra <denisra!~denisra@88.128.80.217> has joined #angularjs
[15:48:18] <bd-> but you still need to make sure backend is secured
[15:48:37] <bd-> and people can still load your routes if they are determined
[15:49:05] *** marr <marr!~ccc@77-253-87-193.adsl.inetia.pl> has quit IRC (Ping timeout: 272 seconds)
[15:49:25] *** zivester <zivester!~zivester@pool-100-35-226-28.nwrknj.fios.verizon.net> has quit IRC (Ping timeout: 265 seconds)
[15:49:41] <Umesh> Ok, Thanks for the help. <bd>
[15:49:53] *** pimlu <pimlu!~pimlu@128.172.35.9> has quit IRC (Ping timeout: 240 seconds)
[15:51:03] *** afonsod__ <afonsod__!~denisra@88.128.80.217> has joined #angularjs
[15:51:05] *** w0rp_ is now known as w0rp
[15:51:09] *** denisra_ <denisra_!~denisra@88.128.80.217> has quit IRC (Ping timeout: 276 seconds)
[15:51:37] *** Umesh <Umesh!3180a5dc@gateway/web/freenode/ip.49.128.165.220> has quit IRC (Quit: Page closed)
[15:51:47] <Duikb00t> Hmm, any ideas where this goes wrong?
[15:51:47] <Duikb00t> http://jsfiddle.net/duikboot/AU6Md/23/
[15:53:22] <Bish> as far as i can see, you don't have any javascript in there
[15:53:32] *** denisra <denisra!~denisra@88.128.80.217> has quit IRC (Ping timeout: 252 seconds)
[15:53:51] *** winegoddess <winegoddess!~winegodde@199.244.219.64> has joined #angularjs
[15:53:59] *** zac <zac!~zac@2601:40d:8101:de00:15f5:2fe8:8d46:c172> has quit IRC (Read error: Connection reset by peer)
[15:54:02] <Bish> Duikb00t: just take this to play around http://embed.plnkr.co/xTyGA7Klq8Mta2T1yANh/ you will know it's a running example
[15:54:31] *** zac <zac!~zac@2601:40d:8101:de00:15f5:2fe8:8d46:c172> has joined #angularjs
[15:55:46] *** edrocks <edrocks!~edrocks@66-194-206-178.static.twtelecom.net> has joined #angularjs
[15:56:12] <bd-> Bish: that's really old ng2 version though
[15:56:18] <bd-> don't use that plnkr
[15:56:27] *** dcherman <dcherman!~dcherman@164.55.254.106> has joined #angularjs
[15:56:59] <Pyrrhus666> but it´s the ONLY working config :P
[15:57:15] *** ewet <ewet!~ewet@unaffiliated/ewet> has quit IRC (Quit: Leaving)
[15:57:22] *** jhjh <jhjh!25806c43@gateway/web/freenode/ip.37.128.108.67> has joined #angularjs
[15:58:16] <Bish> does it matter for him, really?
[15:58:18] <bd-> what? the default plnkr ng2 template is 2.0.0
[15:59:19] <Bish> Pyrrhus666: and i still don't know how i create a working angular2 example
[15:59:39] <Bish> and that is a problem, you can stop making fun of me because i say "it's the working configuration" because it is
[15:59:43] <Bish> until you show me, that it isn't
[15:59:58] <Bish> because otherwise you won't be able to use any tool you want which will result in the whole thing being bad
[16:00:09] <bd-> install angular-cli, run `ng new`
[16:00:22] <bd-> or use the 2.0 plnkr
[16:00:26] <bd-> https://plnkr.co/edit/tpl:AvJOMERrnz94ekVua0u5
[16:00:29] *** edrocks <edrocks!~edrocks@66-194-206-178.static.twtelecom.net> has quit IRC (Ping timeout: 272 seconds)
[16:00:35] *** ang <ang!672b21f7@gateway/web/freenode/ip.103.43.33.247> has joined #angularjs
[16:00:40] <Bish> does angular-cli have all features jspm have?
[16:00:46] <Duikb00t> Hmmm
[16:00:47] <bd-> idk what jspm is
[16:00:48] <Pyrrhus666> or install quickstart, or install preboot starter. it´s very simple.
[16:01:03] <ang> hy
[16:01:07] <Bish> Pyrrhus666: does the quickstart include css files, does it bundle into a single javascript file?
[16:01:16] <bd-> jspm doesn't seem to be anything like angular-cli
[16:01:23] <Bish> my point exactly
[16:01:24] <ang> anyone has reference for angular-material
[16:01:33] <Bish> i cannot use any tool i want, because ng2 breaks as soon you change 1 version
[16:01:34] <Bish> it sucks
[16:01:42] *** jhjh <jhjh!25806c43@gateway/web/freenode/ip.37.128.108.67> has quit IRC (Ping timeout: 240 seconds)
[16:01:47] <Bish> "use this zip" what is this, 1998
[16:01:53] <bd-> so use angular-cli
[16:02:05] <Bish> "i want to use any tool i want" => "use angular-cli"
[16:02:10] <Bish> how does that makes sense to you
[16:02:52] <Pyrrhus666> ¨I can´t install windows with yum or apt¨. same difference, silly question.
[16:02:54] <dopry> Bish, you can use any tool you want...
[16:02:55] *** smiche <smiche!~smuxi@mobile-access-6df000-1.dhcp.inet.fi> has quit IRC (Remote host closed the connection)
[16:02:55] <Duikb00t> What is wrong with doing: npm install angular2
[16:03:10] <bd-> jspm has nothing to do with angular2 though
[16:03:11] *** ang <ang!672b21f7@gateway/web/freenode/ip.103.43.33.247> has quit IRC (Client Quit)
[16:03:29] <dopry> Bish, you just need to configure it.. my team uses npm, gulp, webpack, and es6..
[16:03:34] <Pyrrhus666> jspm is just another package manager. like we don´t already have enough of those...
[16:04:01] <dopry> if you wanna swap npm with jspm in your own build tools feel free to.
[16:04:42] *** anjumkaiser <anjumkaiser!~anjumkais@202.142.188.106> has quit IRC (Quit: Leaving.)
[16:05:04] <Duikb00t> Is there something wrong with npm install angular2 when I just skip the whole Plunker/JSFiddle thingy?
[16:05:58] <bd-> angular2 is the wrong npm package
[16:06:02] <Pyrrhus666> Duikb00t: that will install an old version.
[16:06:35] <Pyrrhus666> Duikb00t: use https://github.com/angular/quickstart/blob/master/README.md
[16:06:48] <dopry> Bish, is there a particular problem you need help with.. I've done a lot of build tool and packaging development for our teams.
[16:07:09] <Pyrrhus666> Duikb00t: or https://github.com/preboot/angular2-webpack
[16:07:15] <Duikb00t> So git clone?
[16:07:21] <Duikb00t> Instead of npm install?
[16:07:29] *** siovene <siovene!uid16530@gateway/web/irccloud.com/x-nagbefmpbwgfvfui> has quit IRC (Quit: Connection closed for inactivity)
[16:07:32] <Pyrrhus666> Duikb00t: npm install comes later ;)
[16:07:51] <Pyrrhus666> Duikb00t: the git gives you a starting config for npm
[16:08:27] <Bish> dopry: i still want to use jspm, because i hate gulp and all that stuff
[16:08:35] <Duikb00t> Oh i got it
[16:08:43] <bd-> Bish: if you want to use jspm then you can, you just have to setup the whole build system yourself
[16:08:47] <dopry> Bish, okay. So what is blocking you from using jspm?
[16:08:47] <Bish> Pyrrhus666: there is a lot of them because they all sucked so people write new ones
[16:08:47] <Pyrrhus666> Bish: neither of the options I gave you use gulp.
[16:08:49] <Duikb00t> config in the composer.json file and npm install get the dependencies it needs
[16:09:10] <Bish> Pyrrhus666: your option was "download a zip like it's 1998" i can also go back to php if i want to write script tags
[16:09:28] <Pyrrhus666> I didn´t say anything about a zip...
[16:09:28] <Bish> Pyrrhus666: that messages was also not addressed to you so you don't have to answer it
[16:09:30] <bd-> you can git clone it like it's 2008 if you'd prefer
[16:09:31] <Bish> dopry: tell me how to manage it
[16:09:35] <Duikb00t> Seems there are some issues with it Pyrrhus666
[16:09:44] <Bish> Pyrrhus666: you told me to use a fixed set of files, it is equivalent to a zip file
[16:09:45] <Pyrrhus666> Duikb00t: which one ?
[16:09:52] <dopry> Bish, well a quick google search of jspm angular2 leads me to https://gist.github.com/robwormald/429e01c6d802767441ec
[16:09:56] <Duikb00t> http://kopy.io/U6wjh
[16:10:19] <Bish> dopry: yeah that one also tells me to use script tags.. which would be tolerable but still i haven't manage to get it to work
[16:10:26] <Pyrrhus666> Duikb00t: your npm/node look old
[16:10:33] <Bish> dopry: and it's outdated, as it uses angular2
[16:10:37] <Duikb00t> 2.15
[16:10:45] <bd-> Bish: if you want to use jspm then you have to do all the work yourself, as no one yet has published a jspm starter
[16:10:51] <Duikb00t> node v4.4.3
[16:10:52] <dopry> Bish, http://www.mario-brendel.com/angular2-setup/2016/01/28/Angular2_Jspm_Setup_Part1/
[16:10:57] *** Z3R0 <Z3R0!~mischief@156.sub-70-195-205.myvzw.com> has joined #angularjs
[16:11:07] <Bish> dopry: that one is even older
[16:11:24] *** michaelsharpe <michaelsharpe!~michaelsh@198-48-172-67.cpe.pppoe.ca> has joined #angularjs
[16:11:26] <Pyrrhus666> Duikb00t: you need 3.x.x (npm) and 5.x.x (node)
[16:11:26] <Bish> bd-: yeah i did that for ng1, too, and it didn't drive me mad
[16:11:38] <bd-> sure because ng1 wasn't an overengineered pile of wank
[16:11:39] <Duikb00t> oohh
[16:11:46] <Pyrrhus666> Bish: whatever dude. I´m done.
[16:11:53] <dopry> Bish, there are examples out there. The core community has chosen to build around npm. Beyond that you need to be able to support and debug the build chain yourself.
[16:11:57] <bd-> ng2 is so either you put in the work or you forget about using jspm and just use npm like everyone else
[16:12:10] <Bish> Pyrrhus666: good for you
[16:12:28] <Bish> dopry: with ng1 i can take whatever versions i want of 1.x and it will work
[16:12:31] *** mven <mven!~textual@32.97.110.57> has joined #angularjs
[16:12:33] *** mven <mven!~textual@32.97.110.57> has quit IRC (Excess Flood)
[16:12:48] <bd-> ng2 made a ton of breaking changes in RC
[16:12:53] <bd-> none of the old stuff works
[16:12:59] <Bish> dopry: that seems not to be possible with ng2, the version you use seem to be very restrictive
[16:13:12] <bd-> basically anything before 2.0.0 final is useless
[16:13:18] *** donguston <donguston!~GEEGEEGEE@cpc12-sprt2-2-0-cust478.17-2.cable.virginm.net> has joined #angularjs
[16:13:19] <Duikb00t> Hmm
[16:13:35] *** marr <marr!~ccc@159-205-243-117.adsl.inetia.pl> has joined #angularjs
[16:13:35] *** moloch <moloch!~moloch@cpe-98-150-237-205.hawaii.res.rr.com> has joined #angularjs
[16:13:43] <dopry> Bish, unfortunately if you're unable to debug your build chain, not many people are going to be able to helpyou....
[16:14:14] <Duikb00t> Why is all this updating so hard ><
[16:14:16] *** bbankes <bbankes!~bbankes@50-200-100-242-static.hfc.comcastbusiness.net> has joined #angularjs
[16:14:26] <Bish> i can see that, but that shows that ng2 architecture is really weird and immature still
[16:14:37] <Pyrrhus666> Duikb00t: it´s javascript, it all sucks one way or another ;)
[16:14:38] <dopry> Bish, I don't feel very restricted by my choices... I get to spend a lot of time working on client facing code...
[16:14:53] <Duikb00t> https://docs.npmjs.com/cli/update
[16:14:56] <Duikb00t> it always throws error
[16:14:58] *** rand0m <rand0m!~rand0m@host86-139-27-149.range86-139.btcentralplus.com> has quit IRC (Quit: I gotta run! Bye bye!)
[16:15:25] *** devintrouble <devintrouble!567a66bb@gateway/web/freenode/ip.86.122.102.187> has joined #angularjs
[16:15:42] <dopry> Bish, well that is your opinion and you're welcome to it.. If you can't point me to a specific problem you're having with your build, I'm going to be unable to help you.
[16:15:45] <Pyrrhus666> Duikb00t: that´s not meant to update npm itself, is it ?
[16:16:00] <dopry> err, I'm not going to be able to help you.
[16:16:04] *** Garfield-fr <Garfield-fr!~Garfield-@unaffiliated/garfield-fr> has quit IRC (Quit: Linkinus - http://linkinus.com)
[16:16:05] <devintrouble> hi
[16:16:11] *** lavalamp <lavalamp!~lavalamp@unaffiliated/lavalamp> has joined #angularjs
[16:16:18] <devintrouble> can anybody help me with some advice?
[16:16:22] *** toni_ <toni_!~toni@41.207.252.122> has quit IRC (Ping timeout: 244 seconds)
[16:16:25] <Bish> dopry: specific problem: getting ng2 with jspm to work
[16:16:36] <devintrouble> how do you minify an angular js project?
[16:16:42] <Duikb00t> yes
[16:16:44] <Duikb00t> indeed
[16:16:52] *** notsec <notsec!c27e66b2@gateway/web/freenode/ip.194.126.102.178> has joined #angularjs
[16:16:55] <notsec> hi
[16:16:58] <devintrouble> with all the js and html files in one single file.min.js
[16:17:09] <Bish> devintrouble: many ways, having tools like webpack/gulp/jspm
[16:17:17] <notsec> how to make field required if checkbox is selected?
[16:17:20] <dopry> Bish, a specific problem would be an error message and code... you're still talking in generality... It's like my saying my DVD player doesn't work with my car.
[16:17:21] <Pyrrhus666> Duikb00t: can´t you update npm/node from your OS ?
[16:17:23] <Bish> devintrouble: regarding the templates and such, you will have to do that by hand
[16:17:31] <icebox> Pyrrhus666: that is commonplace, it is sucks... the point is nowadays the frontend layer, in term of requirements and expectations, is very complex
[16:17:35] <Duikb00t> it's possible
[16:17:40] <Duikb00t> npm update or npm update -g
[16:17:43] <Duikb00t> both run in an erro
[16:17:50] <Bish> devintrouble: or use a package manager that is able to handle template files
[16:18:00] *** moloch <moloch!~moloch@cpe-98-150-237-205.hawaii.res.rr.com> has quit IRC (Ping timeout: 260 seconds)
[16:18:02] <Pyrrhus666> icebox: yup, I know :)
[16:18:04] <dopry> devintrouble, don't listen to Bish...
[16:18:07] <devintrouble> can someone point me to a complete method?
[16:18:21] <dopry> devintrouble, there are a few seeds that have good build chains...
[16:18:22] <devintrouble> i've been searching the web for tutorial and examples
[16:18:22] *** fdev <fdev!~fdev@xd9bad026.dyn.telefonica.de> has quit IRC (Remote host closed the connection)
[16:18:23] <Bish> dopry: what of the things i said is wrong?
[16:18:42] <devintrouble> but cant find exact steps from start to finish
[16:18:49] <notsec> nvm
[16:18:53] *** notsec <notsec!c27e66b2@gateway/web/freenode/ip.194.126.102.178> has quit IRC (Client Quit)
[16:18:59] <dopry> ahh.. yeah most seeds don't show you the steps...
[16:18:59] <Pyrrhus666> Duikb00t: you want to update npm itself, not the installed packages...
[16:19:03] <bd-> Bish: you are limiting yourself with your own requirements, it's kind of beyond the scope of ng2 now
[16:19:30] <dopry> devintrouble, are you looking to use particular toolchain?
[16:19:31] <Bish> im done with the ng2 topic already, it doesn't lead anywhere
[16:19:31] <Duikb00t> Yes exactly, that is what I am trying to do.
[16:19:41] <bd-> so go ask in #jspm or whatever
[16:19:47] <devintrouble> can somebody help me please?
[16:19:53] <bd-> you seem to want help with build systems, not ng2
[16:19:55] <Bish> dopry: i told him there are many tools, and he will have to put templates into a template cache or use a package-manager that can do that
[16:19:57] <Pyrrhus666> Duikb00t: are you ? ´npm update´ won´t update itself, I think...
[16:19:58] <Bish> what of that is wrong?
[16:20:09] <dopry> devintrouble, usually there are a few steps to the problem.
[16:20:15] *** aarobc <aarobc!~aarobc@216.51.32.182> has joined #angularjs
[16:20:20] <dopry> so 1) you have your html templates...
[16:20:42] <devintrouble> yes
[16:20:43] <dopry> most projects with aggregate those into a custom template cache module...
[16:20:45] <devintrouble> and the js files
[16:21:04] <Bish> that's exactly what i said.
[16:21:16] <Pyrrhus666> Duikb00t: ah, I see now... npm should be able to update itself. but I guess it needs a newer node version first. have you updated that to 5.x.x ?
[16:21:17] <devintrouble> the previous dev minified the whole project into one min.js file
[16:21:27] *** whiteboo_ <whiteboo_!~whitebook@ool-182e2e18.dyn.optonline.net> has joined #angularjs
[16:21:28] <dopry> devintrouble, with gulp the is gulp-ng-template with webpack there is an ngtemplate loader.
[16:22:03] <dopry> both of those will bundle up all your html in a js file and prepopulates angular's template cache.
[16:22:07] <Bish> and in jspm there is the option to have templates as files, which automaticially puts it into a build.js :)
[16:22:32] <devintrouble> he include the html like this a.put("path/name.html",'html content')
[16:22:36] <Duikb00t> Pyrrhus666: so first node?
[16:22:42] <icebox> dopry: for node.js questions better node channel... anyway https://docs.npmjs.com/getting-started/installing-node and be aware about the path
[16:22:56] <Duikb00t> btw Current version: v4.5.0 (includes npm 2.15.9)
[16:22:58] <icebox> Duikb00t: for node.js questions better node channel... anyway https://docs.npmjs.com/getting-started/installing-node and be aware about the path
[16:23:04] <Duikb00t> i have 4.4.3
[16:23:06] <icebox> dopry: sorry mistell
[16:23:10] <Duikb00t> that' isn' t bad at all?
[16:23:15] <dopry> icebox, np.
[16:23:29] <dopry> devintrouble, 2) you need to concatenate your js...
[16:23:53] <dopry> devintrouble, in gulp or grunt you can use the concat plugins... I personally prefer webpack...
[16:23:54] *** zac <zac!~zac@2601:40d:8101:de00:15f5:2fe8:8d46:c172> has quit IRC (Read error: Connection reset by peer)
[16:24:00] <Duikb00t> node -v v4.4.3 ( Is ok imo )
[16:24:06] <icebox> Duikb00t: yes...
[16:24:07] <Pyrrhus666> Duikb00t: it´s the LTS release, you need 5.x.x.
[16:24:12] <Duikb00t> oh
[16:24:27] <devintrouble> so all of this is done via the server?
[16:24:29] <Pyrrhus666> https://nodejs.org/dist/latest-v5.x/\
[16:24:30] *** zac <zac!~zac@2601:40d:8101:de00:15f5:2fe8:8d46:c172> has joined #angularjs
[16:24:34] <dopry> devintrouble, now if you need to transpile your js, you probably want to so that before concate..
[16:24:47] <devintrouble> can i achieve this in windows?
[16:24:52] <Duikb00t> I'll go with the pkg
[16:24:57] <dopry> then you can minify your code... (shorten symbols, stripw whitespave ec)
[16:25:00] <icebox> devintrouble: yes you can
[16:25:14] <dopry> devintrouble, I only work on windows these days...
[16:25:25] <devintrouble> but it seems teedious to go and concatenae each file and each html separately no?
[16:25:32] <Duikb00t> node -v
[16:25:32] <Duikb00t> Current version: v5.12.0 pyios
[16:25:33] <dopry> devintrouble, I do a lot of .net and game development...
[16:25:36] *** whitebook <whitebook!~whitebook@ool-d18c25ea.dyn.optonline.net> has quit IRC (Ping timeout: 276 seconds)
[16:25:39] <Duikb00t> Pyrrhus666: *
[16:25:41] *** vassagus <vassagus!~vassagus@186.4.2.162> has joined #angularjs
[16:25:42] <Bish> dopry: can you please tell me how this is any different from what i said, while you're telling people to not listen to me
[16:25:43] <dopry> devintrouble, it is... which is why build tools exist...
[16:26:21] <dopry> and they're a pain in the butt to configure and get working right, unless you're already pretty familiar with them...
[16:26:49] <dopry> which is why I said you should check out a seed... There are a few semi-official seeds.
[16:26:50] <devintrouble> so my best bet is still a linux server lets say
[16:27:14] <Pyrrhus666> Duikb00t: looks good. and npm ?
[16:27:15] <icebox> Bish: no diff... I think it was a misunderstanding
[16:27:16] <devintrouble> but what ur saying are packages from node npm
[16:27:20] <Duikb00t> 3.8.x
[16:27:25] <devintrouble> so first install node
[16:27:28] <dopry> devintrouble, sure linux is a good backbone...
[16:27:28] <devintrouble> then npm
[16:27:36] <Bish> icebox: yeah but ignoring me afterwards, just because he doesn't like my opinion about ng2
[16:27:41] <devintrouble> then those packages
[16:27:49] <devintrouble> then figure out how to do it
[16:27:51] <Duikb00t> But then I should do npm install
[16:27:54] <devintrouble> this is my question
[16:28:13] <devintrouble> how to do the minify the exact process with those packages
[16:28:19] <Duikb00t> ( in the start ) thing from the git url.. but that gives me again errors :D
[16:28:19] <devintrouble> both html and js
[16:28:27] <Bish> devintrouble: depends on what the dude before you was using
[16:28:35] <devintrouble> unfortunately
[16:28:36] <dopry> devintrouble, yep and there are about a dozen tools to do it...
[16:28:37] *** michaelsharpe <michaelsharpe!~michaelsh@198-48-172-67.cpe.pppoe.ca> has quit IRC (Remote host closed the connection)
[16:28:37] <devintrouble> he left
[16:28:40] <devintrouble> and i dont know
[16:28:42] <Duikb00t> https://github.com/angular/quickstart/blob/master/README.md#install-npm-packages here now
[16:28:50] <Bish> devintrouble: can you give us a list of files in the folder?
[16:28:53] *** aarobc_ <aarobc_!~aarobc@216.51.32.182> has joined #angularjs
[16:29:01] <dopry> devintrouble, an they have different approaches...
[16:29:01] *** zac <zac!~zac@2601:40d:8101:de00:15f5:2fe8:8d46:c172> has quit IRC (Read error: Connection reset by peer)
[16:29:04] <Bish> maybe some of them can tell us, what he was using
[16:29:10] <Duikb00t> "'@angular/common' is not in the npm registry.".
[16:29:11] <devintrouble> app.js
[16:29:14] <devintrouble> modules
[16:29:19] <devintrouble> assests
[16:29:22] <Bish> devintrouble: not in here, like in a gist
[16:29:31] <dopry> if you want to see them.. google for gulp angular seed, grunt angular seed, webpack angular seed
[16:29:35] *** zac <zac!~zac@2601:40d:8101:de00:15f5:2fe8:8d46:c172> has joined #angularjs
[16:29:48] *** ycon_ <ycon_!~ycon_@CPE-121-209-3-211.bqgp1.sa.bigpond.net.au> has joined #angularjs
[16:29:49] *** michaelsharpe <michaelsharpe!~michaelsh@198-48-172-67.cpe.pppoe.ca> has joined #angularjs
[16:30:02] <dopry> devintrouble, yeah most of the build tools are node...
[16:30:15] *** aarobc <aarobc!~aarobc@216.51.32.182> has quit IRC (Ping timeout: 272 seconds)
[16:30:29] *** leolrrj <leolrrj!~leolrrj@rrcs-24-73-238-194.se.biz.rr.com> has joined #angularjs
[16:30:40] <devintrouble> there are three folders
[16:30:50] <Bish> are there any javascript files that aren't minified?
[16:30:55] <devintrouble> modules directives and modules
[16:30:59] <dopry> although you could do all of it with non node build tools...
[16:30:59] <devintrouble> just the app.js
[16:31:08] <devintrouble> that one is not minified
[16:31:21] <Bish> and in modules and stuff, there is no javascript files unminified?
[16:31:35] <devintrouble> directives.js factories.js and all files from folders everything is in a single modules.min,js
[16:31:37] <Pyrrhus666> Duikb00t: have you started clean ? (new clone)
[16:32:04] *** ycon_ <ycon_!~ycon_@CPE-121-209-3-211.bqgp1.sa.bigpond.net.au> has quit IRC (Client Quit)
[16:32:07] <Duikb00t> Creating a : .npmrc with: always-auth=false @angular:registry=http://registry.npmjs.org
[16:32:14] <Duikb00t> seems to solve it ( did some readling on github )
[16:32:19] *** Xatenev <Xatenev!~Gerd@pd907f4d2.dip0.t-ipconnect.de> has joined #angularjs
[16:32:23] <Xatenev> Hello
[16:32:27] *** zac <zac!~zac@2601:40d:8101:de00:15f5:2fe8:8d46:c172> has quit IRC (Read error: Connection reset by peer)
[16:32:30] <Duikb00t> Almost done with the NPM install.
[16:32:31] <Xatenev> I got a $http.get method
[16:32:34] <Pyrrhus666> Duikb00t: I just did the exact thing as in the readme, and it works fine.
[16:32:44] <Pyrrhus666> Duikb00t: is that an OSX thing ?
[16:32:44] <Duikb00t> now it seems i got everything right as well
[16:32:50] <Pyrrhus666> Duikb00t: cool :)
[16:32:52] <Xatenev> I do return $http({}..); -
[16:33:03] *** zac <zac!~zac@2601:40d:8101:de00:15f5:2fe8:8d46:c172> has joined #angularjs
[16:33:07] <Xatenev> now i want to do something if that $http requeswt is done
[16:33:11] <Xatenev> how can i do that
[16:33:12] <devintrouble> i have the production which is a lot of files
[16:33:18] <dopry> devintrouble, that a.put()... is him inserting the html in $templateCache...
[16:33:20] <devintrouble> pardon the dev
[16:33:25] <dopry> you don't need a server..
[16:33:30] <devintrouble> and the production just jas two files
[16:33:32] <Duikb00t> I'm landed!
[16:33:34] <Duikb00t> Im at OSX yes.
[16:33:36] <devintrouble> app.js and modules.min.js
[16:33:42] <Pyrrhus666> nice :)
[16:33:44] <Duikb00t> My First Angular App"
[16:33:50] *** cvanball <cvanball!~textual@2001:980:92c0:1:c0f2:4ac5:a8b0:acb> has joined #angularjs
[16:33:50] <dopry> the template loader will look to the $templateCache before going to the server...
[16:34:02] <bd-> Xatenev: $http returns a promise so you can use .then on the return value
[16:34:06] <Xatenev> I cant
[16:34:12] <Xatenev> IT calls me .then is not a function
[16:34:14] <devintrouble> i understant but that is also in the minified file
[16:34:19] <Xatenev> Oh
[16:34:21] <Xatenev> im idiot
[16:34:30] <devintrouble> i bet he wasnt insane and went and insert everty html by hand
[16:35:01] *** george_v <george_v!~george_v@77.49.223.194.dsl.dyn.forthnet.gr> has quit IRC (Quit: Leaving)
[16:35:09] <Xatenev> Yes .then is ok
[16:35:15] <dopry> devintrouble, yeah that is minified output... he had a build system create that...
[16:35:34] <devintrouble> :((
[16:35:45] <devintrouble> i've wasted like 3 days already
[16:35:50] <devintrouble> trying to find a method
[16:35:50] *** leolrrj <leolrrj!~leolrrj@rrcs-24-73-238-194.se.biz.rr.com> has quit IRC (Ping timeout: 265 seconds)
[16:35:51] <dopry> others it would probably read $templateCache.put('/path/file.html', '<http>');
[16:36:00] <dopry> devintrouble, to minify minified code?
[16:36:18] <devintrouble> its a...
[16:36:21] <devintrouble> so yeah
[16:36:24] <devintrouble> it was put there
[16:36:25] <Duikb00t> wauw now.. the sublime has no .js coloring wauw
[16:36:28] <devintrouble> before minification
[16:36:41] <Duikb00t> What a failwaleday
[16:37:04] <devintrouble> and i cant find those
[16:37:04] <Xatenev> bd-: sory
[16:37:06] <Xatenev> another question
[16:37:08] <devintrouble> with the html
[16:37:12] <Pyrrhus666> Duikb00t: that´s not really angular´s fault :P
[16:37:17] <Duikb00t> haha no indeed
[16:37:18] <devintrouble> in the dev files
[16:37:24] <Xatenev> bd-: when i do then(function(data) { data is empty
[16:37:31] <dopry> devintrouble, is there a repo so you can share what you're looking at?
[16:37:31] <Xatenev> how can I get the value i returned from the ajax call??
[16:37:38] <devintrouble> so he did that a.put just for minif
[16:37:47] <devintrouble> no...
[16:37:54] <Duikb00t> can I remove all those .ts files from the starter?
[16:37:58] <Duikb00t> I don't like TypeScript.
[16:38:00] <bd-> Xatenev: if it's empty then bacckend probably not returning any data
[16:38:04] <Xatenev> It does
[16:38:19] <Pyrrhus666> Duikb00t: that starter is for typescript...
[16:38:24] <Xatenev> In the ajax call i can do console.log(response.data);
[16:38:26] <Xatenev> and there is value
[16:38:27] <bd-> oh, wait, no, for .then it passes a response
[16:38:30] * Duikb00t bam kills himselves
[16:38:33] <Duikb00t> :D
[16:38:34] <bd-> so yea, use response.data
[16:38:35] <dopry> devintrouble, no the file you're looking at is the output of a build process.
[16:38:36] <bd-> not data
[16:38:49] <devintrouble> yes
[16:38:58] <Xatenev> the variable has to be called response?
[16:39:00] <devintrouble> it is the result of a proces of something he uses
[16:39:01] <dopry> devintrouble, it was produced by a build toolchain most likely and has already been minified.
[16:39:03] <bd-> call it anything you like
[16:39:08] <devintrouble> exactly
[16:39:13] <Xatenev> its undefined too
[16:39:15] <bd-> function(res) { res.data })
[16:39:18] <Xatenev> .then(function(response) {
[16:39:18] <Xatenev> console.log(response);
[16:39:18] <devintrouble> and i have the angular js project files
[16:39:21] <Xatenev> => undefined
[16:39:26] <devintrouble> i want to find a method
[16:39:28] <Duikb00t> Pyrrhus666: Is there also one just for ...
[16:39:33] <Duikb00t> Javascript 'vanilla'.
[16:39:33] <devintrouble> to minify the files
[16:39:47] <devintrouble> to see if the dev files are complete and working
[16:39:48] <dopry> devintrouble, that is the output of something like gulp-ng-template or webpack's ngtemplate loader.
[16:39:55] *** aarobc_ <aarobc_!~aarobc@216.51.32.182> has quit IRC (Remote host closed the connection)
[16:39:56] <Xatenev> sorry
[16:39:56] <Xatenev> it works
[16:39:58] <Xatenev> im idiot again
[16:39:59] <Xatenev> xd
[16:40:03] <Duikb00t> As the quickstart provides TS and JS https://angular.io/docs/js/latest/quickstart.html
[16:40:09] <dopry> devintrouble, is there a gulpfile.js or similar in the root of your project?
[16:40:18] <devintrouble> no
[16:40:20] <dopry> or gruntfile.js?
[16:40:25] <Bish> Xatenev: PCs usually aren't very picky :p
[16:40:25] <dopry> webpack.conf?
[16:40:26] <devintrouble> no
[16:40:33] <Pyrrhus666> Duikb00t: the JS version has no git, it seems... weird.
[16:40:34] <devintrouble> he must have removed those from the dev files
[16:40:37] <dopry> mention of angular-cli in packages.json?
[16:40:55] <devintrouble> to hide his method and config of obtaning the minified file
[16:41:02] <dopry> is there a packages .json?
[16:41:16] <dopry> devintrouble, are you taking over a project from someone else?
[16:41:34] <dopry> err package.json?
[16:41:37] <devintrouble> no packages
[16:41:39] <devintrouble> and yes
[16:41:45] <devintrouble> im taking over a project
[16:42:00] <Pyrrhus666> Duikb00t: you can follow the javascript quickstart from the tutorial. you´ll end up with a working setup.
[16:42:01] <devintrouble> from someone who is a jerk and left and doesnt repsond to questions
[16:42:12] <dopry> hmm sounds like he just gave you source or he was using a stand-alone build toolchain...
[16:42:13] <Bish> the* :p
[16:42:34] <devintrouble> from what i saw on the web
[16:42:44] <dopry> he might have an ide configured to do the work...
[16:42:55] <devintrouble> the file . config or something is used to slect js files for html or etc
[16:43:02] <devintrouble> so he removed those on purpose
[16:43:23] *** zivester <zivester!~zivester@38.104.66.138> has joined #angularjs
[16:43:58] *** mischat <mischat!~mischat@62.252.235.234> has quit IRC (Remote host closed the connection)
[16:44:11] <dopry> devintrouble, yeah he might have... is it a git repo?
[16:44:18] *** tarnus <tarnus!~tarnus@108-202-169-121.lightspeed.spfdmo.sbcglobal.net> has quit IRC (Ping timeout: 264 seconds)
[16:44:38] *** Rodya_ <Rodya_!~Rodya_@173.120.11.236> has joined #angularjs
[16:44:41] <Snugglebash> my goodness i run typescript compiler for the first time and i get a million new js files
[16:45:18] <icebox> Snugglebash: it seems it works also with money :)
[16:45:29] *** Poeticode <Poeticode!~Prophesi@host-68-169-169-183.VABOLT2.epbfi.com> has quit IRC (Ping timeout: 265 seconds)
[16:45:35] <Duikb00t> "My First Angular App" Pyrrhus666 ;) JS
[16:45:46] <Pyrrhus666> Duikb00t: w00t :)
[16:46:01] *** vkareh <vkareh!~vkareh@12.231.104.138> has joined #angularjs
[16:46:15] <Snugglebash> we were all noobs once
[16:46:16] <dopry> devintrouble, you may be in a tough spot if you're expected to take this project over and you're not familiar with build chains...
[16:46:50] <dopry> devintrouble, but that doesn't mean you won't be able to try dropping it into another seed to get it going...
[16:47:04] *** vrockai <vrockai!~vrockai@ip-89-102-10-111.net.upcbroadband.cz> has joined #angularjs
[16:47:22] <dopry> devintrouble, you do have the unminified source files?
[16:48:01] <devintrouble> i do
[16:48:13] <devintrouble> im trying to determine they are complete and work
[16:48:25] <devintrouble> so i can make future changes to the production project
[16:48:26] *** tarnus <tarnus!~tarnus@2602:306:ccaa:9790:9070:a840:870b:8a42> has joined #angularjs
[16:48:38] <dopry> can you pastebin a file tree somewhere, even if you can't share the code itself...
[16:48:51] *** toni_ <toni_!~toni@41.207.252.122> has joined #angularjs
[16:49:08] <dopry> devintrouble, also all that stuff could be built by an external CI system...
[16:49:22] <Duikb00t> Pyrrhus666: Lets say I want to built a from with registration functionality which posts to an API
[16:49:32] <Duikb00t> Is that wrapper being called a component?
[16:49:34] <dopry> and committed back to the repo as artifacts... but that makes local dev hard...
[16:50:16] <Duikb00t> Too bad : This page is not yet available in JavaScript. We recommend reading it in TypeScript.
[16:50:29] <Pyrrhus666> Duikb00t: that could well be. but at that level it´s probably a component that builds on other, smaller, components.
[16:51:13] <devintrouble> ok so you have an agular project
[16:51:30] <Pyrrhus666> Duikb00t: yeah, it seems not all pages are up to date for js/dart. ts is the preferred way. for most instances, the ts page will probably give enough information though.
[16:51:32] <devintrouble> how do you minify it and include also the html files?
[16:52:13] *** denisra <denisra!~denisra@88.128.80.217> has joined #angularjs
[16:52:15] *** whiteboo_ <whiteboo_!~whitebook@ool-182e2e18.dyn.optonline.net> has quit IRC (Remote host closed the connection)
[16:52:18] *** batch4225 <batch4225!~batch4225@23-25-200-169-static.hfc.comcastbusiness.net> has joined #angularjs
[16:52:34] <devintrouble> what tools would you use
[16:52:40] <dopry> devintrouble, I explained that once already.
[16:52:46] <devintrouble> and how exaclty would you achieve that
[16:52:49] <devintrouble> i understand
[16:52:54] <devintrouble> use that tool
[16:52:55] <Pyrrhus666> off for today. laterz !
[16:53:03] <devintrouble> but how exactly it is done?
[16:53:06] <Snugglebash> now i need to get rid of this server-lite
[16:53:06] <Snugglebash> its like being at school
[16:53:07] *** hswolff <hswolff!~hswolff@207-38-134-4.c3-0.avec-ubr2.nyr-avec.ny.cable.rcn.com> has quit IRC (Ping timeout: 276 seconds)
[16:53:10] *** Pyrrhus666 <Pyrrhus666!~Pyrrhus66@095-097-155-024.static.chello.nl> has quit IRC (Quit: Leaving.)
[16:53:13] <dopry> 3 primary build tools you can choose from. grunt, gulp, webpack, angular-cli
[16:53:19] <devintrouble> a tutorial on the web or something
[16:53:21] <dopry> and it all depends on the tool you choose.
[16:53:29] <dopry> devintrouble, google agnualr seed
[16:53:32] <devintrouble> the one you use the mode
[16:53:38] <devintrouble> most*
[16:53:46] <icebox> off... by
[16:54:30] *** afonsod__ <afonsod__!~denisra@88.128.80.217> has quit IRC (Ping timeout: 264 seconds)
[16:54:36] *** hswolff <hswolff!~hswolff@207-38-134-4.c3-0.avec-ubr2.nyr-avec.ny.cable.rcn.com> has joined #angularjs
[16:54:56] *** icebox <icebox!5e5fe874@gateway/web/freenode/ip.94.95.232.116> has quit IRC (Quit: Page closed)
[16:55:12] *** anggy <anggy!79f1a5f5@gateway/web/freenode/ip.121.241.165.245> has quit IRC (Ping timeout: 240 seconds)
[16:55:32] *** jpcercal <jpcercal!b1435b82@gateway/web/freenode/ip.177.67.91.130> has joined #angularjs
[16:56:12] *** toni_ <toni_!~toni@41.207.252.122> has quit IRC (Ping timeout: 265 seconds)
[16:56:22] <Duikb00t> From the tutorial I just made anew model: We can create a new hero like this:... var myHero = new Hero(42, 'SkyDog',
[16:56:28] <Duikb00t> Where do you execute that code? :)
[16:56:29] *** eshlox <eshlox!uid44222@gateway/web/irccloud.com/x-sewungccwjcxpkfy> has quit IRC (Quit: Connection closed for inactivity)
[16:56:34] <Duikb00t> Anywhere int the app?
[16:57:06] *** mischat <mischat!~mischat@62.252.235.234> has joined #angularjs
[16:58:15] *** Rodya_ <Rodya_!~Rodya_@173.120.11.236> has quit IRC (Remote host closed the connection)
[16:58:58] <Duikb00t> ok int he model it works
[16:59:39] <devintrouble> 10x going to goole
[16:59:43] *** devintrouble <devintrouble!567a66bb@gateway/web/freenode/ip.86.122.102.187> has quit IRC (Quit: Page closed)
[16:59:46] *** denisra <denisra!~denisra@88.128.80.217> has quit IRC (Ping timeout: 244 seconds)
[16:59:47] *** denisra_ <denisra_!~denisra@88.128.80.217> has joined #angularjs
[17:00:19] *** senayar <senayar!~senayar@unaffiliated/senayar> has joined #angularjs
[17:00:46] *** fakingfantastic <fakingfantastic!~aardvarkb@50-254-77-221-static.hfc.comcastbusiness.net> has joined #angularjs
[17:01:56] *** chachasmooth <chachasmooth!~chachasmo@unaffiliated/chachasmooth> has quit IRC (Ping timeout: 265 seconds)
[17:02:20] <fakingfantastic> Angular 1.5, I’ve got a parent componentA passing data to a bunch of componentB’s via an ng-repeat. Inside each componentB ctrl, I’m doing angular.copy(this.data) $onInit. If I update the data collection being passed from componentA, how can I get $onChanges() to be called in all of the componentBs ?
[17:02:41] *** zivester <zivester!~zivester@38.104.66.138> has quit IRC (Ping timeout: 240 seconds)
[17:03:16] <bd-> why .copy the data if you expect it to be updated by the parent?
[17:04:10] *** chachasmooth <chachasmooth!~chachasmo@unaffiliated/chachasmooth> has joined #angularjs
[17:04:35] *** tristanp <tristanp!~tristanp@c-73-97-112-36.hsd1.wa.comcast.net> has quit IRC ()
[17:04:45] <fakingfantastic> bd-: as I’ve been reading / learning, the pattern is to .copy the data, to make it one-way binding, and align it more with ng2 style
[17:06:08] *** tristanp <tristanp!~tristanp@c-73-97-112-36.hsd1.wa.comcast.net> has joined #angularjs
[17:06:09] *** daedeloth <daedeloth!~daedeloth@91.183.109.67> has quit IRC (Read error: Connection reset by peer)
[17:06:23] *** rangu <rangu!bef1baad@gateway/web/freenode/ip.190.241.186.173> has joined #angularjs
[17:06:29] *** itaipu <itaipu!~Marco@168.121.96.22> has joined #angularjs
[17:06:35] *** jstroem <jstroem!~jstroem@cpe.ge-3-2-0-100.arcnqe11.dk.customer.tdc.net> has quit IRC (Remote host closed the connection)
[17:07:11] *** jstroem <jstroem!~jstroem@cpe.ge-3-2-0-100.arcnqe11.dk.customer.tdc.net> has joined #angularjs
[17:07:26] *** star_prone <star_prone!~sviatovig@81.89.12.66> has quit IRC (Remote host closed the connection)
[17:08:32] *** csk <csk!~csk@200-28-115-207.baf.movistar.cl> has joined #angularjs
[17:08:33] <bd-> oh, i don't follow that style myself
[17:08:34] *** aghostinme <aghostinme!~aghostinm@unaffiliated/aghostinme> has joined #angularjs
[17:09:03] *** zivester <zivester!~zivester@38.104.66.138> has joined #angularjs
[17:09:11] *** cyan__ <cyan__!~cyan@217.170.162.68> has quit IRC (Remote host closed the connection)
[17:09:21] <rangu> Hello guys
[17:09:28] <Snugglebash> If I want to run my typescript transpiler do i just put ""start": "npm run tsc" in my config file?
[17:09:42] *** Daerist <Daerist!~Daerist@mir31-1-82-224-13-158.fbx.proxad.net> has quit IRC (Quit: Leaving)
[17:09:48] <rangu> is this call directives in angular 2? <my-html-tag> </my-html-tag> ?
[17:10:21] <rangu> I guess they're selectors
[17:10:23] <rangu> arent they?
[17:10:37] *** csk_ <csk_!~csk@181.201.30.114> has quit IRC (Ping timeout: 244 seconds)
[17:10:42] <bd-> rangu: components
[17:10:44] <Snugglebash> its a component
[17:10:55] *** mastokley <mastokley!~mastokley@71.35.179.178> has joined #angularjs
[17:10:56] *** mastokley <mastokley!~mastokley@71.35.179.178> has quit IRC (Max SendQ exceeded)
[17:11:03] <bd-> <myComponent myDirective></myComponent>
[17:11:08] <rangu> How can I import a component to use it in another component's html?
[17:11:25] *** toni_ <toni_!~toni@41.66.216.162> has joined #angularjs
[17:11:25] <bd-> but all components are directives
[17:11:28] *** mastokley <mastokley!~mastokley@71.35.179.178> has joined #angularjs
[17:11:29] *** {DV8} <{DV8}!~Deviate@135-23-110-43.cpe.pppoe.ca> has joined #angularjs
[17:11:38] *** jstroem <jstroem!~jstroem@cpe.ge-3-2-0-100.arcnqe11.dk.customer.tdc.net> has quit IRC (Ping timeout: 252 seconds)
[17:13:37] <Bish> phew, minimal minified ng2 app is 500kb?
[17:13:39] *** Poeticode <Poeticode!~Prophesi@host-68-169-169-183.VABOLT2.epbfi.com> has joined #angularjs
[17:13:46] <bd-> only 500kb?
[17:13:56] <bd-> it's like 2MB with webpack
[17:14:12] <Bish> haha, see it sucks!
[17:14:16] <Bish> no, in all seriousness
[17:14:21] <Bish> i managed it with jspm (wohoo finally)
[17:14:24] *** krusty_ar <krusty_ar!~quassel@190.192.59.178> has joined #angularjs
[17:14:36] <Bish> and i get a 500kb bundle minified and 1.5mb unminified
[17:15:06] <fakingfantastic> bd-: yeah, parent passes data into child. Child can’t (read: shouldn’t) update data on the parent… so you .copy() it. If the child really needs to update parent, parent needs to pass in callback function to allow it. Lastly, child gets notified about updates to data from an $onChanges() callback fn in its controller… however, I can’t get mine to fire
[17:15:09] *** NTrash <NTrash!~user@108.61.123.71> has joined #angularjs
[17:15:10] <bd-> unminified
[17:15:10] *** kuadrosx <kuadrosx!~kuadrosx@190.240.80.94> has joined #angularjs
[17:15:24] <NTrash> angularjs or jquery & why?
[17:15:42] <Bish> bd-: give jspm a shot :D
[17:15:45] *** rocktop__ <rocktop__!~rocktop@160.176.30.98> has quit IRC (Read error: Connection reset by peer)
[17:15:54] <Bish> NTrash: apple or melons & why?
[17:15:56] *** rocktop <rocktop!~rocktop@41.143.75.134> has joined #angularjs
[17:16:02] *** whitebook <whitebook!~whitebook@ool-d18c2342.dyn.optonline.net> has joined #angularjs
[17:16:04] <bd-> fakingfantastic: i don't think that's a good practice to follow for all apps, it wouldn't work well for me, would just add a ton of pointless code and cause a lot of copied data and gc thrashing
[17:16:40] *** anjumkaiser <anjumkaiser!~anjumkais@39.50.233.136> has joined #angularjs
[17:16:45] <NTrash> why is everyone and their grandmother getting into angularjs
[17:16:55] <Bish> NTrash: jquery is a "toolshed" with neat little tricks in it, angularjs is a platform/architecture/framewor kto build a whole website/spa
[17:17:25] <Bish> NTrash: because it let's write you websites like they were programs ( creating websites beautifully and without going insane )
[17:17:45] <fakingfantastic> bd-: you may be right. I’m just following from Todd Motto / Chris Thielen and others. I do like the one-way data flow… the two-way binding makes things a little too magically at times for me, and hard to track down where exactly data changes come from
[17:17:47] <NTrash> awesome
[17:17:49] <Bish> but you cannot compare it to jquery, totally different use-cases
[17:17:59] *** nishu-tryinghard <nishu-tryinghard!~nishanth@183.82.99.106> has quit IRC (Quit: Leaving)
[17:18:23] *** romerocesar <romerocesar!~cesar@c-67-183-219-247.hsd1.wa.comcast.net> has joined #angularjs
[17:18:41] <NTrash> how long do you think it would take to become average skilled
[17:18:43] <Bish> if you want to start a flame-war "react or angularjs" is a way better question
[17:18:51] <bd-> if i wanted one-way i'd just use react or something tbh
[17:18:57] <bd-> two-way binding was the selling point of ng1 for me
[17:19:00] <Bish> NTrash: a year, if you're experienced, but your questions are weird
[17:19:06] <rangu> I was trying to use a component in another components HTML but it does not get recoignized.
[17:19:14] <NTrash> Bish: :^)
[17:19:35] <Bish> rangu: define "in it's html", like in it's template?
[17:19:36] <Xatenev> Bish: you expect a year to become average skilled in angularJS?
[17:19:39] <Xatenev> thats insane lol
[17:19:42] <rangu> Yes, Bish
[17:19:52] <Bish> Xatenev: im average, im using it for a year.
[17:19:56] <Bish> i might be a genius though
[17:20:12] <NTrash> Xatenev: what's your eta to become average skilled?
[17:20:15] <Bish> rangu: are you talking ng1 or n2?
[17:20:20] <rangu> ng2
[17:20:25] *** denisra_ <denisra_!~denisra@88.128.80.217> has quit IRC (Ping timeout: 260 seconds)
[17:20:27] <Bish> rangu: hahaha then im out, GOOD LUCK
[17:20:33] <Bish> had the same issue a while ago
[17:20:33] <arnas> is it possible to send GET request synchoniously?
[17:20:34] *** cvanball <cvanball!~textual@2001:980:92c0:1:c0f2:4ac5:a8b0:acb> has quit IRC (Ping timeout: 255 seconds)
[17:20:43] <Xatenev> Maybe a half year at max NTrash
[17:20:49] <Bish> arnas: XHR still ahs the functionality, but it will say it's deprecated
[17:20:53] <Bish> so not for long
[17:20:58] <Xatenev> But of course it depends how much you use it every day...
[17:21:01] <arnas> ;(
[17:21:05] <Bish> Xatenev: haha :D that's how you meant it
[17:21:18] <rangu> Bish: Hahahaha
[17:21:21] <arnas> Bish, so if I want a valid way, then no?
[17:21:30] *** whitebook <whitebook!~whitebook@ool-d18c2342.dyn.optonline.net> has quit IRC (Ping timeout: 264 seconds)
[17:21:35] <Xatenev> Bish: yes. Angular is just some frontend framework
[17:21:43] <Bish> arnas: afaik , yes, i was questioning myself the same, too
[17:21:46] <Bish> tell me if you find out
[17:21:46] <Xatenev> that uses JS so if your comfortable in JS
[17:21:53] <arnas> Bish, that's bad :(
[17:22:10] <Bish> Xatenev: well, im talking you are able to write a well-architectured full-featured website
[17:22:25] <arnas> so how can I prevent code from being executed after I send the GET request and until I didn't get the response back?
[17:22:25] <NTrash> What is it about angular that makes the learning time so long?
[17:22:49] <Bish> arnas: do it when the requests ends
[17:22:58] <Bish> NTrash: it's not long, there is just a lot to discover
[17:23:04] <arnas> Bish, how?
[17:23:06] <Bish> NTrash: first steps will be very quick
[17:23:18] *** mven_ <mven_!~textual@32.97.110.57> has joined #angularjs
[17:23:21] *** mven_ <mven_!~textual@32.97.110.57> has quit IRC (Excess Flood)
[17:23:25] <Bish> arnas: in the response-handling-callback?
[17:23:36] <arnas> Bish, ah, this is going to suck
[17:23:48] <Bish> arnas: if you're talking angular1 $http.get('/some/url').then(x=>console.log(x))
[17:23:53] *** one_zero <one_zero!~one_zero@ip72-203-85-109.oc.oc.cox.net> has joined #angularjs
[17:23:59] <Bish> console.log(x) will hapen when the request is finished
[17:24:14] <Bish> if you want something NOT to be done, before the request is finished, just don
[17:24:17] <Bish> 't do it
[17:24:26] *** bsrd <bsrd!~ukk@87-104-178-223-dynamic-customer.profibernet.dk> has joined #angularjs
[17:24:42] <Bish> arnas: asynchronous programming is a pain in the ass at first, but can be quite funny
[17:24:52] *** jimklo <jimklo!~jimklo@192.12.16.110> has joined #angularjs
[17:25:06] <Bish> well, im out, ng2 made me nuts
[17:26:11] *** plutoniix <plutoniix!~q@node-rg4.pool-180-180.dynamic.totbb.net> has joined #angularjs
[17:27:19] *** csk <csk!~csk@200-28-115-207.baf.movistar.cl> has quit IRC (Ping timeout: 255 seconds)
[17:29:06] *** csk <csk!~csk@200-28-115-207.baf.movistar.cl> has joined #angularjs
[17:29:36] *** macwinne_ <macwinne_!~macwinner@192.77.239.202> has joined #angularjs
[17:30:40] *** fuchstronaut <fuchstronaut!~fuchstron@unaffiliated/fuchstronaut> has quit IRC (Remote host closed the connection)
[17:30:41] <NTrash> Xatenev: how would you define 'comfortable in js'?
[17:32:23] *** jimklo <jimklo!~jimklo@192.12.16.110> has quit IRC ()
[17:32:25] *** Hexoid <Hexoid!~Hexoid@178.124.164.226> has quit IRC (Quit: Textual IRC Client: www.textualapp.com)
[17:33:37] *** jimklo <jimklo!~jimklo@192.12.16.110> has joined #angularjs
[17:34:09] *** Triangular <Triangular!tri@46.7.141.237> has joined #angularjs
[17:34:51] *** macwinne_ <macwinne_!~macwinner@192.77.239.202> has quit IRC (Ping timeout: 272 seconds)
[17:35:26] *** al-damiri <al-damiri!uid142631@gateway/web/irccloud.com/x-altsganaqutmiyho> has joined #angularjs
[17:35:34] *** cvanball <cvanball!~textual@2001:980:92c0:1:5c69:f860:c04:8ff8> has joined #angularjs
[17:35:49] *** DieguezZ <DieguezZ!~textual@184.red-88-1-148.dynamicip.rima-tde.net> has quit IRC (Quit: My MacBook has gone to sleep. ZZZzzz…)
[17:36:15] *** a_thakur <a_thakur!~a_thakur@106.221.159.148> has joined #angularjs
[17:36:47] <winegoddess> is the default information for locale coming from the server? I am trying to practice with locale and not sure how to proceed.
[17:40:15] <bd-> ?
[17:43:42] *** mastokley <mastokley!~mastokley@71.35.179.178> has quit IRC (Remote host closed the connection)
[17:44:25] *** ZenimNL <ZenimNL!~steven@kb-client-014.kb.nl> has quit IRC (Remote host closed the connection)
[17:44:32] *** Z3R0 <Z3R0!~mischief@156.sub-70-195-205.myvzw.com> has quit IRC (Ping timeout: 265 seconds)
[17:46:29] *** mastokley <mastokley!~mastokley@71.35.179.178> has joined #angularjs
[17:46:46] *** mastokley <mastokley!~mastokley@71.35.179.178> has quit IRC (Remote host closed the connection)
[17:47:22] *** a_thakur <a_thakur!~a_thakur@106.221.159.148> has quit IRC (Remote host closed the connection)
[17:47:44] *** Z3R0 <Z3R0!~mischief@24.27.227.128> has joined #angularjs
[17:48:50] *** Debnet <Debnet!~Marc@smtp2.sa-cim.fr> has quit IRC (Read error: Connection reset by peer)
[17:50:47] *** re1_ <re1_!~reiser@178.220.4.176> has quit IRC (Read error: Connection reset by peer)
[17:52:16] *** re1 <re1!~reiser@178.220.4.176> has joined #angularjs
[17:52:17] *** toni_ <toni_!~toni@41.66.216.162> has quit IRC (Ping timeout: 240 seconds)
[17:52:51] *** DieguezZ <DieguezZ!~textual@184.red-88-1-148.dynamicip.rima-tde.net> has joined #angularjs
[17:52:51] *** romerocesar <romerocesar!~cesar@c-67-183-219-247.hsd1.wa.comcast.net> has quit IRC (Remote host closed the connection)
[17:53:16] *** senayar <senayar!~senayar@unaffiliated/senayar> has quit IRC ()
[17:53:16] *** kablazan <kablazan!~brollypop@195.178.115.1> has quit IRC (Remote host closed the connection)
[17:53:23] *** romerocesar <romerocesar!~cesar@c-67-183-219-247.hsd1.wa.comcast.net> has joined #angularjs
[17:53:34] *** bsrd <bsrd!~ukk@87-104-178-223-dynamic-customer.profibernet.dk> has quit IRC (Quit: WeeChat 1.5)
[17:54:12] *** mbedcoder <mbedcoder!~mbedcoder@node-sqg.pool-125-25.dynamic.totbb.net> has joined #angularjs
[17:54:53] *** iraj_ <iraj_!~iraj@91.107.244.101> has joined #angularjs
[17:56:36] *** romerocesar_ <romerocesar_!~cesar@c-67-183-219-247.hsd1.wa.comcast.net> has joined #angularjs
[17:56:44] <Xatenev> NTrash: well if you hear promises, callbacks and stuff like that you know what people talk about
[17:56:50] <Xatenev> and dont think its some kind of food
[17:57:46] *** edrocks <edrocks!~edrocks@66-194-206-178.static.twtelecom.net> has joined #angularjs
[17:58:13] *** Xatenev <Xatenev!~Gerd@pd907f4d2.dip0.t-ipconnect.de> has quit IRC (Read error: Connection reset by peer)
[17:58:17] *** DieguezZ <DieguezZ!~textual@184.red-88-1-148.dynamicip.rima-tde.net> has quit IRC (Read error: Connection reset by peer)
[17:58:27] *** {DV8} <{DV8}!~Deviate@135-23-110-43.cpe.pppoe.ca> has quit IRC (Quit: Leaving)
[17:58:53] *** csk <csk!~csk@200-28-115-207.baf.movistar.cl> has quit IRC (Quit: ZZZzzz…)
[17:59:56] *** romerocesar <romerocesar!~cesar@c-67-183-219-247.hsd1.wa.comcast.net> has quit IRC (Ping timeout: 265 seconds)
[18:00:01] *** fakingfantastic <fakingfantastic!~aardvarkb@50-254-77-221-static.hfc.comcastbusiness.net> has quit IRC (Quit: fakingfantastic)
[18:01:53] *** edrocks <edrocks!~edrocks@66-194-206-178.static.twtelecom.net> has quit IRC (Ping timeout: 240 seconds)
[18:05:33] *** Vipul_ <Vipul_!0e62c594@gateway/web/freenode/ip.14.98.197.148> has joined #angularjs
[18:06:41] *** tomphp <tomphp!~tomphp@84-45-154-103.static.enta.net> has quit IRC (Ping timeout: 265 seconds)
[18:06:45] <Vipul_> BreasCrumbs if loaded in child component are not loading on default child on first navigation. any clue?
[18:07:12] *** luc4 <luc4!~luca@93-57-43-56.ip162.fastwebnet.it> has quit IRC (Quit: Konversation terminated!)
[18:07:57] *** DieguezZ <DieguezZ!~textual@184.red-88-1-148.dynamicip.rima-tde.net> has joined #angularjs
[18:10:33] *** shinnya <shinnya!~shinnya@245.144.137.133.dy.bbexcite.jp> has quit IRC (Ping timeout: 244 seconds)
[18:10:56] *** romerocesar_ <romerocesar_!~cesar@c-67-183-219-247.hsd1.wa.comcast.net> has quit IRC (Remote host closed the connection)
[18:11:16] *** toni_ <toni_!~toni@41.66.216.162> has joined #angularjs
[18:11:29] *** romerocesar <romerocesar!~cesar@c-67-183-219-247.hsd1.wa.comcast.net> has joined #angularjs
[18:14:09] *** DieguezZ <DieguezZ!~textual@184.red-88-1-148.dynamicip.rima-tde.net> has quit IRC (Quit: My MacBook has gone to sleep. ZZZzzz…)
[18:14:34] *** itaipu <itaipu!~Marco@168.121.96.22> has quit IRC (Ping timeout: 255 seconds)
[18:15:03] *** jlebrech <jlebrech!~jlebrech@109.109.143.238> has quit IRC (Remote host closed the connection)
[18:15:33] *** cotko <cotko!~ahmed@89-212-138-82.static.t-2.net> has quit IRC (Quit: Konversation terminated!)
[18:15:44] *** jlebrech <jlebrech!~jlebrech@109.109.143.238> has joined #angularjs
[18:16:13] *** itaipu <itaipu!~Marco@168.121.96.22> has joined #angularjs
[18:16:14] *** toni_ <toni_!~toni@41.66.216.162> has quit IRC (Ping timeout: 244 seconds)
[18:16:44] *** jstroem <jstroem!~jstroem@87-63-45-4-dynamic.dk.customer.tdc.net> has joined #angularjs
[18:16:45] *** aghostinme <aghostinme!~aghostinm@unaffiliated/aghostinme> has quit IRC (Ping timeout: 244 seconds)
[18:16:46] *** zac <zac!~zac@2601:40d:8101:de00:15f5:2fe8:8d46:c172> has quit IRC (Remote host closed the connection)
[18:17:14] *** zac <zac!~zac@2601:40d:8101:de00:15f5:2fe8:8d46:c172> has joined #angularjs
[18:17:41] *** mastokley <mastokley!~mastokley@71.35.179.178> has joined #angularjs
[18:17:47] *** zac <zac!~zac@2601:40d:8101:de00:15f5:2fe8:8d46:c172> has quit IRC (Remote host closed the connection)
[18:18:04] *** zac <zac!~zac@2601:40d:8101:de00:15f5:2fe8:8d46:c172> has joined #angularjs
[18:18:37] *** zac <zac!~zac@2601:40d:8101:de00:15f5:2fe8:8d46:c172> has quit IRC (Remote host closed the connection)
[18:19:09] *** zac <zac!~zac@2601:40d:8101:de00:15f5:2fe8:8d46:c172> has joined #angularjs
[18:19:17] *** degva <degva!~degva@190.232.18.40> has joined #angularjs
[18:19:55] <degva> Hello all, I want to serve angular-material from the node_modules directory, but this: http://stackoverflow.com/questions/27464168/how-to-include-scripts-located-inside-the-node-modules-folder doesn't work. Does anybody know why is this? thanks in advnace
[18:20:06] *** whitebook <whitebook!~whitebook@ool-3f8fc573.dyn.optonline.net> has joined #angularjs
[18:20:18] *** jlebrech <jlebrech!~jlebrech@109.109.143.238> has quit IRC (Ping timeout: 264 seconds)
[18:21:12] *** Vipul_ <Vipul_!0e62c594@gateway/web/freenode/ip.14.98.197.148> has quit IRC (Ping timeout: 240 seconds)
[18:23:01] *** sahbeewah <sahbeewah!~sahbeewah@14-200-158-113.static.tpgi.com.au> has quit IRC (Quit: sahbeewah)
[18:23:05] *** joshonth_ <joshonth_!~joshonthe@49.49.227.82> has quit IRC (Ping timeout: 240 seconds)
[18:23:15] *** romerocesar <romerocesar!~cesar@c-67-183-219-247.hsd1.wa.comcast.net> has quit IRC (Ping timeout: 276 seconds)
[18:23:29] *** anjumkaiser <anjumkaiser!~anjumkais@39.50.233.136> has quit IRC (Quit: Leaving.)
[18:23:33] *** realz__ <realz__!~realz@unaffiliated/realazthat> has joined #angularjs
[18:23:34] *** zac <zac!~zac@2601:40d:8101:de00:15f5:2fe8:8d46:c172> has quit IRC (Ping timeout: 255 seconds)
[18:25:04] *** whitebook <whitebook!~whitebook@ool-3f8fc573.dyn.optonline.net> has quit IRC (Ping timeout: 265 seconds)
[18:25:06] *** jimklo <jimklo!~jimklo@192.12.16.110> has quit IRC (Read error: Connection reset by peer)
[18:25:22] *** realz <realz!~realz@unaffiliated/realazthat> has quit IRC (Ping timeout: 255 seconds)
[18:25:27] *** jimklo <jimklo!~jimklo@192.12.16.110> has joined #angularjs
[18:29:03] *** joshonth_ <joshonth_!~joshonthe@49.49.227.82> has joined #angularjs
[18:29:06] *** Z3R0_ <Z3R0_!~mischief@24.27.227.128> has joined #angularjs
[18:30:40] <dopry> degva, do you get an error in your browser?
[18:30:53] <degva> yes, a 404
[18:31:05] *** fuchstronaut <fuchstronaut!~fuchstron@unaffiliated/fuchstronaut> has joined #angularjs
[18:31:20] *** Z3R0 <Z3R0!~mischief@24.27.227.128> has quit IRC (Ping timeout: 265 seconds)
[18:31:21] *** Z3R0_ is now known as Z3R0
[18:31:44] <dopry> then you're not hosting up the static files properly.
[18:31:51] *** leolrrj <leolrrj!~leolrrj@rrcs-24-73-238-194.se.biz.rr.com> has joined #angularjs
[18:32:01] <dopry> maybe you have the paths wrong?
[18:32:48] *** LeBlaaanc <LeBlaaanc!~LeBlaaanc@47.188.236.163> has joined #angularjs
[18:32:51] <dopry> degva, there is a good seed for angular-material here, https://github.com/tarlepp/angular-material-webpack-seed
[18:33:05] <dopry> for ng 1.x
[18:36:58] *** echelog-2` <echelog-2`!~echelog-2@108.61.103.42> has joined #angularjs
[18:37:08] *** fedenunez <fedenunez!~fede@r167-61-16-59.dialup.adsl.anteldata.net.uy> has quit IRC (Ping timeout: 265 seconds)
[18:37:08] *** StanMarsh <StanMarsh!~StanMarsh@gateway/vpn/privateinternetaccess/stanmarsh> has quit IRC (Ping timeout: 265 seconds)
[18:37:08] *** heartburn <heartburn!~heartburn@213.21.33.24> has quit IRC (Ping timeout: 265 seconds)
[18:37:08] *** Duzzy_ <Duzzy_!~jbergman@194.71.144.72> has quit IRC (Ping timeout: 265 seconds)
[18:37:18] *** M1N10N4 <M1N10N4!~M1N10N@107.191.111.46> has joined #angularjs
[18:37:22] *** MattWelch_ <MattWelch_!~MattWelch@cpe-107-15-134-63.nc.res.rr.com> has joined #angularjs
[18:37:23] *** pspfolio__ <pspfolio__!~pspfolio@62-121-49-2-static-dsl.ssp.fi> has joined #angularjs
[18:37:23] *** u0m3_ <u0m3_!~u0m3@5-12-199-171.residential.rdsnet.ro> has joined #angularjs
[18:37:23] *** AlexWork__ <AlexWork__!~AlexWork@d24-150-190-172.home.cgocable.net> has joined #angularjs
[18:37:23] *** ASUChander <ASUChander!~asuchande@136.56.9.215> has joined #angularjs
[18:37:23] *** NomadJim_ <NomadJim_!~NomadJim@pdpc/supporter/active/nomadjim> has joined #angularjs
[18:37:23] *** one_zero_q <one_zero_q!~one_zero@ip72-203-85-109.oc.oc.cox.net> has joined #angularjs
[18:37:23] *** bbankes_ <bbankes_!~bbankes@50-200-100-242-static.hfc.comcastbusiness.net> has joined #angularjs
[18:37:23] *** squeakytoy2 <squeakytoy2!~squeakyto@h87-96-232-19.cust.se.alltele.net> has joined #angularjs
[18:37:23] *** michaels_ <michaels_!~michaelsh@198-48-172-67.cpe.pppoe.ca> has joined #angularjs
[18:37:23] *** jstroem_ <jstroem_!~jstroem@87-63-45-4-dynamic.dk.customer.tdc.net> has joined #angularjs
[18:37:23] *** rocktop__ <rocktop__!~rocktop@41.143.75.134> has joined #angularjs
[18:37:23] *** arnas_ <arnas_!~arnas@88-119-97-225.static.zebra.lt> has joined #angularjs
[18:37:23] <rangu> I have my features divided in folders
[18:37:23] *** uru is now known as uru|away
[18:37:23] *** vassagus_ <vassagus_!~vassagus@186.4.2.162> has joined #angularjs
[18:37:24] *** littlebearz__ <littlebearz__!littlebear@2607:fea8:a220:7e3:43c:8cea:d765:ba61> has joined #angularjs
[18:37:24] *** stefanotorresi_ <stefanotorresi_!~etienne`@84.222.150.11> has joined #angularjs
[18:37:24] *** harlan_44 <harlan_44!~james@2601:1c0:6b01:74f0:7891:2ad1:fb7c:3485> has joined #angularjs
[18:37:24] *** jimklo_ <jimklo_!~jimklo@192.12.16.110> has joined #angularjs
[18:37:24] <rangu> How do I import a component to another template?
[18:37:24] *** _m8 <_m8!~m8@host114-180-dynamic.11-87-r.retail.telecomitalia.it> has joined #angularjs
[18:37:24] *** encryptd_fractal <encryptd_fractal!~encryptd_@c-24-245-47-249.hsd1.mn.comcast.net> has joined #angularjs
[18:37:24] *** nya__ <nya__!~nya@p7902c6f7.tokynt01.ap.so-net.ne.jp> has joined #angularjs
[18:37:24] *** burzum2 <burzum2!~burzum@p4FDF8D3F.dip0.t-ipconnect.de> has joined #angularjs
[18:37:24] *** Robtop__ <Robtop__!~pwnd_@cpe-2606-A000-FB05-3A00-9490-5287-A732-8C39.dyn6.twc.com> has joined #angularjs
[18:37:24] <rangu> I'm talking about angular 2
[18:37:25] *** platonic_ <platonic_!~platonic@51.175.98.163> has joined #angularjs
[18:37:25] *** leolrrj <leolrrj!~leolrrj@rrcs-24-73-238-194.se.biz.rr.com> has quit IRC (Ping timeout: 244 seconds)
[18:37:25] *** realz <realz!~realz@unaffiliated/realazthat> has joined #angularjs
[18:37:25] *** dopry_ <dopry_!~dopry@ool-18b95449.dyn.optonline.net> has joined #angularjs
[18:37:25] *** preilly <preilly!~preilly@136.91.154.104.bc.googleusercontent.com> has joined #angularjs
[18:37:25] *** hswolff_ <hswolff_!~hswolff@207-38-134-4.c3-0.avec-ubr2.nyr-avec.ny.cable.rcn.com> has joined #angularjs
[18:37:25] *** Netramcod <Netramcod!~Docmarten@173.65.211.233> has joined #angularjs
[18:37:25] *** nadoneves1 <nadoneves1!~Thunderbi@177.131.144.72> has joined #angularjs
[18:37:25] *** preilly is now known as Guest19030
[18:37:25] *** d10n-work <d10n-work!uid37161@gateway/web/irccloud.com/x-qphcluuuxobafipe> has quit IRC (Ping timeout: 255 seconds)
[18:37:25] *** corioliss <corioliss!uid11429@gateway/web/irccloud.com/x-tmhqljunrthzqqxk> has quit IRC (Ping timeout: 255 seconds)
[18:37:25] *** rovox_ <rovox_!~rovox@13.67.181.197> has quit IRC (Ping timeout: 255 seconds)
[18:37:25] *** Klumben <Klumben!Nsaiswatch@elmo.stole-your.pw> has quit IRC (Ping timeout: 255 seconds)
[18:37:25] *** forrestv <forrestv!forrestv@unaffiliated/forrestv> has quit IRC (Ping timeout: 255 seconds)
[18:37:25] *** one_zero <one_zero!~one_zero@ip72-203-85-109.oc.oc.cox.net> has quit IRC (Ping timeout: 255 seconds)
[18:37:25] *** hswolff <hswolff!~hswolff@207-38-134-4.c3-0.avec-ubr2.nyr-avec.ny.cable.rcn.com> has quit IRC (Ping timeout: 255 seconds)
[18:37:25] *** phishy <phishy!sid32361@gateway/web/irccloud.com/x-pzgnsyezonhakoip> has quit IRC (Ping timeout: 255 seconds)
[18:37:25] *** roek <roek!sid15176@gateway/web/irccloud.com/x-qucjqqgxfxepjqvz> has quit IRC (Ping timeout: 255 seconds)
[18:37:25] *** NTrash <NTrash!~user@108.61.123.71> has quit IRC (Ping timeout: 255 seconds)
[18:37:26] *** Armen <Armen!~Armen138@i.am.armen138.com> has quit IRC (Ping timeout: 255 seconds)
[18:37:26] *** Lowell <Lowell!sid43163@gateway/web/irccloud.com/x-ebijvshxkyojrpkz> has quit IRC (Ping timeout: 255 seconds)
[18:37:26] *** hswolff_ is now known as hswolff
[18:37:26] *** NTrash_ <NTrash_!~user@108.61.123.71> has joined #angularjs
[18:37:26] *** csharper <csharper!~csharper@31.6.42.47> has joined #angularjs
[18:37:26] *** amundj_ <amundj_!~textual@185.13.92.20> has joined #angularjs
[18:37:26] *** SaltyCat1ish <SaltyCat1ish!~saltycatf@107.191.111.46> has joined #angularjs
[18:37:26] *** w0rp <w0rp!~w0rp@host31-53-133-102.range31-53.btcentralplus.com> has quit IRC (Ping timeout: 260 seconds)
[18:37:26] *** jeppech- <jeppech-!~jeppech@178.62.191.174> has quit IRC (Ping timeout: 260 seconds)
[18:37:26] *** Alina-malina <Alina-malina!~Alina-mal@unaffiliated/alina-malina> has quit IRC (Ping timeout: 260 seconds)
[18:37:26] *** Z3R0 <Z3R0!~mischief@24.27.227.128> has quit IRC (Ping timeout: 260 seconds)
[18:37:26] *** roachiep- <roachiep-!~roachiepo@50.168.15.227> has quit IRC (Ping timeout: 260 seconds)
[18:37:27] *** echelog-2 <echelog-2!~echelog-2@108.61.103.42> has quit IRC (Ping timeout: 240 seconds)
[18:37:27] *** SaltyCatFish <SaltyCatFish!~saltycatf@107.191.111.46> has quit IRC (Ping timeout: 240 seconds)
[18:37:27] *** samu <samu!s@unaffiliated/samaelszafran> has quit IRC (Ping timeout: 240 seconds)
[18:37:27] *** steelstyle <steelstyle!~Steel@195-154-162-203.rev.poneytelecom.eu> has quit IRC (Ping timeout: 240 seconds)
[18:37:27] *** zol1 <zol1!~zolomon@31.208.76.60> has quit IRC (Ping timeout: 260 seconds)
[18:37:27] *** citizen-stig <citizen-stig!~citizen-s@89.221.207.219> has quit IRC (Ping timeout: 260 seconds)
[18:37:27] *** w2r5 <w2r5!~textual@unaffiliated/w2r5> has quit IRC (Ping timeout: 260 seconds)
[18:37:27] *** monokrome <monokrome!~monokrome@54.88.139.115> has quit IRC (Ping timeout: 260 seconds)
[18:37:27] *** ASUChand_ <ASUChand_!~asuchande@136.56.9.215> has quit IRC (Read error: Connection reset by peer)
[18:37:27] <Nasp> Use the import
[18:37:28] *** howitdo <howitdo!~howitdo@unaffiliated/howitdo> has quit IRC (Ping timeout: 255 seconds)
[18:37:28] *** rud <rud!~r@unaffiliated/rud> has quit IRC (Ping timeout: 255 seconds)
[18:37:28] *** amatecha <amatecha!sid10006@gateway/web/irccloud.com/x-utdfvsctqlqobxad> has quit IRC (Ping timeout: 255 seconds)
[18:37:28] *** littlebear <littlebear!littlebear@2607:fea8:a220:7e3:e407:8f2:ed6a:dc9e> has quit IRC (Ping timeout: 255 seconds)
[18:37:28] *** dmamills_ <dmamills_!~mills@104.131.14.250> has quit IRC (Ping timeout: 255 seconds)
[18:37:28] *** Danielss89 <Danielss89!~danielss8@server1.dasprids.de> has quit IRC (Ping timeout: 255 seconds)
[18:37:28] <Nasp> It's quite well explained
[18:37:28] *** jstroem <jstroem!~jstroem@87-63-45-4-dynamic.dk.customer.tdc.net> has quit IRC (Ping timeout: 240 seconds)
[18:37:28] *** mbedcoder <mbedcoder!~mbedcoder@node-sqg.pool-125-25.dynamic.totbb.net> has quit IRC (Ping timeout: 240 seconds)
[18:37:28] *** m8 <m8!~m8@unaffiliated/m8> has quit IRC (Ping timeout: 240 seconds)
[18:37:28] *** spriz <spriz!~spriz@b29bd7a0.rev.stofanet.dk> has quit IRC (Ping timeout: 240 seconds)
[18:37:28] *** thomaspaulb <thomaspaulb!~Tom@217.21.193.235> has quit IRC (Ping timeout: 240 seconds)
[18:37:28] *** AndrewIsh <AndrewIsh!~andrew@mrboom.plus.com> has quit IRC (Ping timeout: 240 seconds)
[18:37:28] *** burzum <burzum!~burzum@p4FDF8D3F.dip0.t-ipconnect.de> has quit IRC (Ping timeout: 240 seconds)
[18:37:28] *** pratch <pratch!~pratch@unaffiliated/pratch> has quit IRC (Ping timeout: 240 seconds)
[18:37:28] *** soee <soee!~soee@user-46-112-93-152.play-internet.pl> has quit IRC (Read error: Connection reset by peer)
[18:37:29] *** Guest61812 <Guest61812!~silverdus@curve.sypherz.com> has quit IRC (Ping timeout: 265 seconds)
[18:37:29] *** JmZ- <JmZ-!~JmZ@69.65.44.146> has joined #angularjs
[18:37:29] *** dmamills <dmamills!~mills@104.131.14.250> has joined #angularjs
[18:37:29] *** n3ssi3 <n3ssi3!uid5547@gateway/web/irccloud.com/x-bnzmpprtigmscsip> has quit IRC (Ping timeout: 265 seconds)
[18:37:29] *** AaronDreamcoin <AaronDreamcoin!AaronDream@debian.fewona.net> has quit IRC (Ping timeout: 265 seconds)
[18:37:29] *** techntoke <techntoke!sid124863@gateway/web/irccloud.com/x-nktphnvfmynomsqg> has quit IRC (Ping timeout: 265 seconds)
[18:37:29] *** davidmichaelkarr <davidmichaelkarr!sid71216@gateway/web/irccloud.com/x-zncdxhaihyfzygci> has quit IRC (Ping timeout: 265 seconds)
[18:37:29] *** dopry <dopry!~dopry@ool-18b95449.dyn.optonline.net> has quit IRC (Disconnected by services)
[18:37:29] *** marr <marr!~ccc@159-205-243-117.adsl.inetia.pl> has quit IRC (Ping timeout: 272 seconds)
[18:37:29] *** Shrooms <Shrooms!~Shrooms@unaffiliated/shrooms> has quit IRC (Ping timeout: 272 seconds)
[18:37:30] *** TinkerTyper <TinkerTyper!~TinkerTyp@71.69.172.245> has quit IRC (Ping timeout: 272 seconds)
[18:37:30] *** hashrocket <hashrocket!uid27380@gateway/web/irccloud.com/x-fqwienwllnbpiixq> has quit IRC (Ping timeout: 272 seconds)
[18:37:30] *** joseph_arnstein_ <joseph_arnstein_!sid180110@gateway/web/irccloud.com/x-xzaoknoznnaeethq> has quit IRC (Ping timeout: 272 seconds)
[18:37:30] *** beckyconning_ <beckyconning_!sid31604@gateway/web/irccloud.com/x-hykffimmwztxzmgd> has quit IRC (Ping timeout: 272 seconds)
[18:37:30] *** aendrew <aendrew!sid117843@gateway/web/irccloud.com/x-lbaelvdrkssfmquz> has quit IRC (Ping timeout: 272 seconds)
[18:37:30] *** JmZ_ <JmZ_!~JmZ@unaffiliated/jmz> has quit IRC (Ping timeout: 272 seconds)
[18:37:30] *** RangerRick <RangerRick!~quassel@cpe-2606-A000-45C2-6901-82EE-73FF-FE9F-967E.dyn6.twc.com> has quit IRC (Quit: No Ping reply in 180 seconds.)
[18:37:30] *** rud_ <rud_!~r@bob75-2-82-67-146-125.fbx.proxad.net> has joined #angularjs
[18:37:30] *** marr <marr!~ccc@159-205-243-117.adsl.inetia.pl> has joined #angularjs
[18:37:30] *** elijah <elijah!sid21431@gateway/web/irccloud.com/x-jydayupcikwmqnyd> has quit IRC (Ping timeout: 272 seconds)
[18:37:30] *** clode_______ <clode_______!sid40776@gateway/web/irccloud.com/x-crnbpcfwehicniqc> has quit IRC (Ping timeout: 272 seconds)
[18:37:30] *** erry <erry!~errietta@shadowcat/hyperactive-puppy/erry> has quit IRC (Ping timeout: 272 seconds)
[18:37:30] *** idr0p <idr0p!~idr0p@idrjmp.pbugs.pw> has quit IRC (Ping timeout: 272 seconds)
[18:37:31] *** MerlinDMC <MerlinDMC!~merlin@irc.l0cal.net> has quit IRC (Excess Flood)
[18:37:31] *** TodPunk <TodPunk!~quassel@68.169.47.218> has quit IRC (Read error: Connection reset by peer)
[18:37:31] *** dopry_ is now known as dopry
[18:37:31] *** rud_ <rud_!~r@bob75-2-82-67-146-125.fbx.proxad.net> has quit IRC (Changing host)
[18:37:31] *** rud_ <rud_!~r@unaffiliated/rud> has joined #angularjs
[18:37:31] *** kuadrosx <kuadrosx!~kuadrosx@190.240.80.94> has quit IRC (Ping timeout: 244 seconds)
[18:37:31] *** tritian <tritian!~lazarus@meobets.com> has quit IRC (Ping timeout: 244 seconds)
[18:37:31] *** cliluw <cliluw!~cliluw@unaffiliated/cliluw> has quit IRC (Ping timeout: 244 seconds)
[18:37:31] *** c17r <c17r!~c17r@c-76-111-82-24.hsd1.va.comcast.net> has quit IRC (Ping timeout: 273 seconds)
[18:37:31] *** u0m3__ <u0m3__!~u0m3@5-12-199-171.residential.rdsnet.ro> has quit IRC (Ping timeout: 244 seconds)
[18:37:31] *** encrypt__ <encrypt__!~encryptd_@c-24-245-47-249.hsd1.mn.comcast.net> has quit IRC (Ping timeout: 244 seconds)
[18:37:31] *** batch422_ <batch422_!~batch4225@23-25-200-169-static.hfc.comcastbusiness.net> has joined #angularjs
[18:37:31] *** Poeticode <Poeticode!~Prophesi@host-68-169-169-183.VABOLT2.epbfi.com> has quit IRC (Ping timeout: 260 seconds)
[18:37:31] *** lavalamp <lavalamp!~lavalamp@unaffiliated/lavalamp> has quit IRC (Ping timeout: 260 seconds)
[18:37:31] *** bbankes <bbankes!~bbankes@50-200-100-242-static.hfc.comcastbusiness.net> has quit IRC (Ping timeout: 260 seconds)
[18:37:31] *** itamarjp <itamarjp!~itamar@fedora/itamarjp> has quit IRC (Ping timeout: 260 seconds)
[18:37:31] *** mralex <mralex!~user@185.8.92.146> has quit IRC (Ping timeout: 260 seconds)
[18:37:32] *** jhadvig <jhadvig!~jhadvig@adsl-d84.84-47-43.t-com.sk> has quit IRC (Ping timeout: 260 seconds)
[18:37:32] *** grug <grug!~grug@45.62.228.154> has quit IRC (Ping timeout: 260 seconds)
[18:37:32] *** orionstein <orionstein!~orionstei@ec2-54-84-28-44.compute-1.amazonaws.com> has quit IRC (Ping timeout: 260 seconds)
[18:37:32] *** daynaskully <daynaskully!~digifiv5e@unaffiliated/daynaskully> has quit IRC (Ping timeout: 260 seconds)
[18:37:32] *** jcara_ <jcara_!~jcara@188.166.12.223> has quit IRC (Ping timeout: 260 seconds)
[18:37:32] *** Preuk <Preuk!~prk@ns3369808.ip-37-187-91.eu> has quit IRC (Ping timeout: 260 seconds)
[18:37:32] *** skullcrasher <skullcrasher!~skullcras@v22015112742129272.yourvserver.net> has quit IRC (Ping timeout: 260 seconds)
[18:37:32] *** NomadJim <NomadJim!~NomadJim@pdpc/supporter/active/nomadjim> has quit IRC (Ping timeout: 240 seconds)
[18:37:32] *** iraj <iraj!~iraj@91.107.244.101> has joined #angularjs
[18:37:32] *** realz__ <realz__!~realz@unaffiliated/realazthat> has quit IRC (Ping timeout: 255 seconds)
[18:37:32] *** Harlan44 <Harlan44!~james@2601:1c0:6b01:74f0:7891:2ad1:fb7c:3485> has quit IRC (Ping timeout: 255 seconds)
[18:37:32] *** OnkelTem <OnkelTem!~onkeltem@pppoe-62-84-112-224.dubna.ru> has quit IRC (Ping timeout: 255 seconds)
[18:37:33] *** DannyFritz <DannyFritz!sid182043@gateway/web/irccloud.com/x-adfstbvjpdginqkc> has quit IRC (Ping timeout: 255 seconds)
[18:37:33] *** Orion3k <Orion3k!~Orion3k@47-51-33-228.static.mtpk.ca.charter.com> has quit IRC (Ping timeout: 255 seconds)
[18:39:26] *** echelog-2 <echelog-2!~echelog-2@108.61.103.42> has joined #angularjs
[18:39:28] *** Bish <Bish!~arne@p57852E78.dip0.t-ipconnect.de> has joined #angularjs
[18:39:29] *** jstroem_ <jstroem_!~jstroem@87-63-45-4-dynamic.dk.customer.tdc.net> has quit IRC (Remote host closed the connection)
[18:39:37] *** snkcld <snkcld!sid54536@gateway/web/irccloud.com/x-qbqukwiqrwqafkur> has quit IRC (Ping timeout: 248 seconds)
[18:39:37] *** ggherdov <ggherdov!sid11402@gateway/web/irccloud.com/x-kharnwnhsnrrlodz> has quit IRC (Ping timeout: 248 seconds)
[18:39:37] *** Klumben <Klumben!Nsaiswatch@elmo.stole-your.pw> has joined #angularjs
[18:39:38] *** al-damiri <al-damiri!uid142631@gateway/web/irccloud.com/x-altsganaqutmiyho> has quit IRC (Ping timeout: 252 seconds)
[18:39:39] *** shennyg <shennyg!sid4021@gateway/web/irccloud.com/x-lhzjaznsargqelpq> has quit IRC (Ping timeout: 244 seconds)
[18:39:43] *** idr0p <idr0p!~idr0p@idrjmp.pbugs.pw> has joined #angularjs
[18:39:51] *** sagerdearia <sagerdearia!~necrodear@unaffiliated/necrodearia> has joined #angularjs
[18:39:55] *** forrestv <forrestv!forrestv@unaffiliated/forrestv> has joined #angularjs
[18:40:01] *** Tuxity <Tuxity!~Tuxity@198.50.156.160> has left #angularjs
[18:40:02] *** ansimation <ansimation!~textual@208.185.232.10> has joined #angularjs
[18:40:03] *** cory___ <cory___!sid180108@gateway/web/irccloud.com/x-wctgprnozdxlzogx> has quit IRC (Ping timeout: 250 seconds)
[18:40:03] *** Kamuela <Kamuela!sid111576@gateway/web/irccloud.com/x-asakpzrkulenzgtx> has quit IRC (Ping timeout: 265 seconds)
[18:40:03] *** andersh <andersh!sid106643@gateway/web/irccloud.com/x-esffprnqimjnffkt> has quit IRC (Ping timeout: 265 seconds)
[18:40:04] *** busticated <busticated!~textual@c-24-21-207-146.hsd1.or.comcast.net> has joined #angularjs
[18:40:09] *** dboskovic <dboskovic!sid12178@gateway/web/irccloud.com/x-fowpllikjlvzepuw> has quit IRC (Ping timeout: 274 seconds)
[18:40:24] *** TodPunk <TodPunk!~quassel@68.169.47.218> has joined #angularjs
[18:40:32] *** JackMc <JackMc!sid85402@gateway/web/irccloud.com/x-zpvuuxixmdqjpzdt> has quit IRC (Ping timeout: 265 seconds)
[18:40:35] <wrkrcoop> bd-: well i was wondering if i could do it with the angular router
[18:40:36] *** rho <rho!~rho@drupal.org/user/114058/view> has quit IRC (Ping timeout: 265 seconds)
[18:40:36] *** doppio <doppio!~Bryson@45.55.251.192> has quit IRC (Ping timeout: 265 seconds)
[18:40:38] *** mven <mven!~textual@32.97.110.57> has joined #angularjs
[18:40:39] *** GuiltyLemon <GuiltyLemon!~guiltylem@unaffiliated/guiltylemon> has joined #angularjs
[18:40:48] *** AndrewIsh <AndrewIsh!~andrew@mrboom.plus.com> has joined #angularjs
[18:40:48] *** xteknoid <xteknoid!Elite16918@gateway/shell/elitebnc/x-empqxzsfuegkfzph> has joined #angularjs
[18:40:48] *** wizonesolutions <wizonesolutions!sid27627@drupal.org/user/739994/view> has quit IRC (Ping timeout: 273 seconds)
[18:40:48] *** Shrooms <Shrooms!~Shrooms@192.187.121.98> has joined #angularjs
[18:40:55] <wrkrcoop> ah nvm ok thanks :D
[18:41:01] *** joshtau <joshtau!sid17334@gateway/web/irccloud.com/x-lrnjtjnyvfwtzzbn> has quit IRC (Ping timeout: 265 seconds)
[18:41:02] *** alphonse23_ <alphonse23_!sid34238@gateway/web/irccloud.com/x-qojkverrmcurzfbz> has quit IRC (Ping timeout: 244 seconds)
[18:41:05] *** zomg <zomg!~jani@jjh.fi> has quit IRC (Ping timeout: 265 seconds)
[18:41:06] *** howitdo <howitdo!~howitdo@unaffiliated/howitdo> has joined #angularjs
[18:41:07] *** kutenai <kutenai!sid80151@gateway/web/irccloud.com/x-hhcpgsicvrhaixcy> has quit IRC (Ping timeout: 255 seconds)
[18:41:09] *** watersoul <watersoul!~ircuser@172.245.255.61> has joined #angularjs
[18:41:30] *** klobucar <klobucar!sid1012@gateway/web/irccloud.com/x-usgiytfoujituvea> has quit IRC (Ping timeout: 265 seconds)
[18:41:30] *** solexious <solexious!sid331@gateway/web/irccloud.com/x-rbhecnfwguyclhoz> has quit IRC (Ping timeout: 265 seconds)
[18:41:34] *** samu <samu!s@unaffiliated/samaelszafran> has joined #angularjs
[18:41:36] *** maxikon <maxikon!maksim@bsd.ee> has joined #angularjs
[18:41:42] *** Preuk <Preuk!~prk@ns3369808.ip-37-187-91.eu> has joined #angularjs
[18:41:46] *** strohi <strohi!~smoofi@unaffiliated/strohi> has quit IRC (Ping timeout: 250 seconds)
[18:41:52] *** HalfEatenPie_ <HalfEatenPie_!~HalfEaten@37.247.49.127> has joined #angularjs
[18:41:59] *** ulkesh <ulkesh!sid140298@gateway/web/irccloud.com/x-akjegdosbnzajuku> has quit IRC (Ping timeout: 272 seconds)
[18:42:14] *** zomg <zomg!~jani@jjh.fi> has joined #angularjs
[18:42:28] *** devin__ <devin__!sid177405@gateway/web/irccloud.com/x-bivzomzykgenjnsm> has quit IRC (Ping timeout: 265 seconds)
[18:42:32] *** whitebook <whitebook!~whitebook@ool-182e2e18.dyn.optonline.net> has joined #angularjs
[18:42:37] *** phtes_ <phtes_!sid43321@gateway/web/irccloud.com/x-sgtlwluxkscirfdy> has quit IRC (Ping timeout: 272 seconds)
[18:42:37] *** roachiepoopoo <roachiepoopoo!~roachiepo@50.168.15.227> has joined #angularjs
[18:42:54] *** corioliss <corioliss!uid11429@gateway/web/irccloud.com/x-ghdwgtigminfprkb> has joined #angularjs
[18:42:58] *** Z3R0 <Z3R0!~mischief@24.27.227.128> has joined #angularjs
[18:46:23] *** bjoops <bjoops!~bjoo@trippin.online> has quit IRC (Ping timeout: 265 seconds)
[18:46:52] *** keemyb <keemyb!keemyb@gateway/shell/fnordserver.eu/x-fpcouqymasmurkla> has quit IRC (Quit: https://fnordserver.eu)
[18:46:55] *** iraj_ <iraj_!~iraj@91.107.244.101> has joined #angularjs
[18:47:06] *** Mer|inDMC <Mer|inDMC!~merlin@irc.l0cal.net> has joined #angularjs
[18:47:17] *** simp <simp!~simp@talvik.eu> has quit IRC (Ping timeout: 265 seconds)
[18:47:19] *** thomas <thomas!~thomas@freenode/staff/thomas> has quit IRC (Ping timeout: 615 seconds)
[18:47:22] *** zero7 <zero7!sid10708@gateway/web/irccloud.com/x-akpitwrjxtknmhza> has quit IRC (Ping timeout: 252 seconds)
[18:47:22] *** lnaia <lnaia!~lnaia@luisnaia.org> has joined #angularjs
[18:47:22] *** drowngodx <drowngodx!sid162816@gateway/web/irccloud.com/x-ldmdpxjmffyqyadj> has quit IRC (Ping timeout: 250 seconds)
[18:47:23] <bd-> wrkrcoop: you could switch a subview, but not the entire index.html
[18:47:24] *** dherman_ <dherman_!~dcherman@164.55.254.106> has joined #angularjs
[18:47:24] *** tarnus_ <tarnus_!~tarnus@2602:306:ccaa:9790:9070:a840:870b:8a42> has joined #angularjs
[18:47:24] *** bjoops <bjoops!~bjoo@trippin.online> has joined #angularjs
[18:47:24] *** mike__ <mike__!~am55@vpn.artsconnection.org> has joined #angularjs
[18:47:24] *** D9 <D9!~Ron@104.236.71.143> has joined #angularjs
[18:47:24] *** WillMoogle <WillMoogle!sid38138@gateway/web/irccloud.com/x-ynelnutpxvaoirpv> has quit IRC (Ping timeout: 265 seconds)
[18:47:24] *** LeBlaaan_ <LeBlaaan_!~LeBlaaanc@47.188.236.163> has joined #angularjs
[18:47:24] *** Z3R0_ <Z3R0_!~mischief@24.27.227.128> has joined #angularjs
[18:47:25] *** csharper <csharper!~csharper@31.6.42.47> has quit IRC (Ping timeout: 252 seconds)
[18:47:25] *** joepie91_ <joepie91_!~joepie91@199.241.31.225> has quit IRC (Ping timeout: 252 seconds)
[18:47:25] *** Migs <Migs!~migs@205.122.50.108> has quit IRC (Ping timeout: 252 seconds)
[18:47:25] *** IvailoStoianov <IvailoStoianov!~wut@ec2-52-59-103-1.eu-central-1.compute.amazonaws.com> has joined #angularjs
[18:47:25] *** JmZ- <JmZ-!~JmZ@69.65.44.146> has quit IRC (Ping timeout: 252 seconds)
[18:47:25] *** tabakhase <tabakhase!tabakhase@unaffiliated/tabakhase> has quit IRC (Ping timeout: 252 seconds)
[18:47:25] *** arnas <arnas!~arnas@88-119-97-225.static.zebra.lt> has joined #angularjs
[18:47:25] *** boxmein <boxmein!~boxmein@Powder/Cardboard/boxmein> has joined #angularjs
[18:47:25] *** joseph_arnstein_ <joseph_arnstein_!sid180110@gateway/web/irccloud.com/x-kxesskxvnllqphmb> has joined #angularjs
[18:47:26] *** gvanderest <gvanderest!~gvanderes@S01066c709fd71834.ok.shawcable.net> has quit IRC (Ping timeout: 252 seconds)
[18:47:26] *** xtreamwayz <xtreamwayz!sid141190@gateway/web/irccloud.com/x-rniitlvvibhimqqj> has quit IRC (Ping timeout: 252 seconds)
[18:47:26] *** jimmyff <jimmyff!sid11140@gateway/web/irccloud.com/x-pqbljnpsdbsspwup> has quit IRC (Ping timeout: 252 seconds)
[18:47:26] *** Alina-malina <Alina-malina!~Alina-mal@37.157.216.181> has joined #angularjs
[18:47:26] *** zomg <zomg!~jani@jjh.fi> has quit IRC (Ping timeout: 240 seconds)
[18:47:26] *** Quarryman <Quarryman!jensadne@graskaret.nlc.no> has joined #angularjs
[18:47:26] *** rovox_ <rovox_!~rovox@13.67.181.197> has joined #angularjs
[18:47:27] *** Alina-malina <Alina-malina!~Alina-mal@37.157.216.181> has quit IRC (Ping timeout: 240 seconds)
[18:47:27] *** howitdo <howitdo!~howitdo@unaffiliated/howitdo> has quit IRC (Ping timeout: 240 seconds)
[18:47:27] *** shkipper <shkipper!~shkipper@pool-63-125.ptcomm.ru> has quit IRC (Ping timeout: 240 seconds)
[18:47:27] *** HalfEatenPie_ <HalfEatenPie_!~HalfEaten@37.247.49.127> has quit IRC (Ping timeout: 240 seconds)
[18:47:27] *** idr0p <idr0p!~idr0p@idrjmp.pbugs.pw> has quit IRC (Ping timeout: 240 seconds)
[18:47:27] *** spriz <spriz!~spriz@b29bd7a0.rev.stofanet.dk> has quit IRC (Ping timeout: 240 seconds)
[18:47:27] *** star_prone <star_prone!~sviatovig@188.25.28.123> has joined #angularjs
[18:47:27] *** wrkrcoop <wrkrcoop!~martee@adsk-nat-ip5.autodesk.com> has quit IRC (Ping timeout: 272 seconds)
[18:47:27] *** roek <roek!sid15176@gateway/web/irccloud.com/x-euvcdurzjlwizfzo> has quit IRC (Ping timeout: 272 seconds)
[18:47:27] *** Klumben <Klumben!Nsaiswatch@elmo.stole-your.pw> has quit IRC (Ping timeout: 272 seconds)
[18:47:27] *** MerlinDMC <MerlinDMC!~merlin@irc.l0cal.net> has quit IRC (Ping timeout: 272 seconds)
[18:47:28] *** w0rp <w0rp!~w0rp@host31-53-133-102.range31-53.btcentralplus.com> has joined #angularjs
[18:47:28] *** rud_ <rud_!~r@unaffiliated/rud> has quit IRC (Read error: Connection reset by peer)
[18:47:28] *** km4 <km4!~km4@grizon.pl> has quit IRC (Ping timeout: 272 seconds)
[18:47:28] *** marr123 <marr123!~ccc@159-205-243-117.adsl.inetia.pl> has joined #angularjs
[18:47:28] *** ajpiano_ <ajpiano_!~ajpiano@li98-57.members.linode.com> has joined #angularjs
[18:47:28] *** Klumben <Klumben!Nsaiswatch@elmo.stole-your.pw> has joined #angularjs
[18:47:28] *** GuiltyLemon <GuiltyLemon!~guiltylem@unaffiliated/guiltylemon> has quit IRC (Ping timeout: 252 seconds)
[18:47:28] *** TodPunk <TodPunk!~quassel@68.169.47.218> has quit IRC (Ping timeout: 252 seconds)
[18:47:28] *** erry <erry!~errietta@shadowcat/hyperactive-puppy/erry> has quit IRC (Ping timeout: 252 seconds)
[18:47:29] *** ah <ah!~ah@145.81-166-25.customer.lyse.net> has quit IRC (Ping timeout: 252 seconds)
[18:47:29] *** _m8 <_m8!~m8@host114-180-dynamic.11-87-r.retail.telecomitalia.it> has quit IRC (Ping timeout: 252 seconds)
[18:47:29] *** stefanotorresi_ <stefanotorresi_!~etienne`@84.222.150.11> has quit IRC (Ping timeout: 252 seconds)
[18:47:29] *** arnas_ <arnas_!~arnas@88-119-97-225.static.zebra.lt> has quit IRC (Ping timeout: 252 seconds)
[18:47:29] *** krusty_ar <krusty_ar!~quassel@190.192.59.178> has quit IRC (Ping timeout: 252 seconds)
[18:47:29] *** dcherman <dcherman!~dcherman@164.55.254.106> has quit IRC (Ping timeout: 252 seconds)
[18:47:29] *** jhertz <jhertz!~jhertz@c-56c3e253.501201257616-0-757473696b74.cust.bredbandsbolaget.se> has quit IRC (Ping timeout: 252 seconds)
[18:47:29] *** steelstyle <steelstyle!~Steel@195-154-162-203.rev.poneytelecom.eu> has joined #angularjs
[18:47:29] *** Segore <Segore!~segoere@h2585473.stratoserver.net> has joined #angularjs
[18:47:33] *** _m8 <_m8!~m8@host114-180-dynamic.11-87-r.retail.telecomitalia.it> has joined #angularjs
[18:47:33] *** Bish_ <Bish_!~arne@p57852E78.dip0.t-ipconnect.de> has joined #angularjs
[18:47:34] *** simp <simp!~simp@talvik.eu> has joined #angularjs
[18:47:35] *** romerocesar <romerocesar!~cesar@c-67-183-219-247.hsd1.wa.comcast.net> has joined #angularjs
[18:47:41] *** Z3R0 <Z3R0!~mischief@24.27.227.128> has quit IRC (Ping timeout: 272 seconds)
[18:47:41] *** ansimation <ansimation!~textual@208.185.232.10> has quit IRC (Ping timeout: 272 seconds)
[18:47:42] *** rangu <rangu!bef1baad@gateway/web/freenode/ip.190.241.186.173> has quit IRC (Ping timeout: 240 seconds)
[18:47:42] *** RangerRick <RangerRick!~quassel@cpe-2606-A000-45C2-6901-82EE-73FF-FE9F-967E.dyn6.twc.com> has quit IRC (Ping timeout: 272 seconds)
[18:47:42] *** Z3R0_ is now known as Z3R0
[18:47:42] *** marr <marr!~ccc@159-205-243-117.adsl.inetia.pl> has quit IRC (Ping timeout: 272 seconds)
[18:47:42] *** scorphus <scorphus!~scorphus@CAcert/User/scorphus> has quit IRC (Ping timeout: 272 seconds)
[18:47:43] *** __alex_ <__alex_!~alex@wisdom.tricnet.de> has quit IRC (Ping timeout: 272 seconds)
[18:47:43] *** cydrobolt <cydrobolt!~cydrobolt@fedora/cydrobolt> has quit IRC (Ping timeout: 272 seconds)
[18:47:43] *** marr123 is now known as marr
[18:47:46] *** watersoul <watersoul!~ircuser@172.245.255.61> has quit IRC (Ping timeout: 265 seconds)
[18:47:46] *** sfix <sfix!~gtierney@unaffiliated/sfix> has quit IRC (Ping timeout: 265 seconds)
[18:47:46] *** GreenJello <GreenJello!~GreenJell@unaffiliated/greenjello> has quit IRC (Ping timeout: 265 seconds)
[18:47:48] *** xteknoid_ <xteknoid_!Elite16918@gateway/shell/elitebnc/x-ooywyyqmwmsjavuv> has joined #angularjs
[18:47:48] *** __alex <__alex!~alex@wisdom.tricnet.de> has joined #angularjs
[18:47:48] *** krusty_ar <krusty_ar!~quassel@190.192.59.178> has joined #angularjs
[18:47:50] *** GreenJello__ <GreenJello__!~GreenJell@ip68-106-249-139.ph.ph.cox.net> has joined #angularjs
[18:47:52] *** doppio <doppio!~Bryson@45.55.251.192> has joined #angularjs
[18:47:58] *** Mr_Pancake <Mr_Pancake!~Pancake@2001:41d0:8:e386::1> has quit IRC (Ping timeout: 255 seconds)
[18:47:59] *** moogumbo <moogumbo!sid31999@gateway/web/irccloud.com/x-vscttzekhfnzpyzx> has quit IRC (Ping timeout: 255 seconds)
[18:47:59] *** Preuk <Preuk!~prk@ns3369808.ip-37-187-91.eu> has quit IRC (Read error: Connection reset by peer)
[18:47:59] *** jnap_ <jnap_!sid41868@gateway/web/irccloud.com/x-zohowluwwntdevro> has quit IRC (Ping timeout: 255 seconds)
[18:47:59] *** iraj <iraj!~iraj@unaffiliated/iraj> has quit IRC (Read error: Connection reset by peer)
[18:48:00] *** whiteboo_ <whiteboo_!~whitebook@ool-182e2e18.dyn.optonline.net> has joined #angularjs
[18:48:01] *** tarnus <tarnus!~tarnus@2602:306:ccaa:9790:9070:a840:870b:8a42> has quit IRC (Ping timeout: 255 seconds)
[18:48:01] *** Immutef <Immutef!sid17978@gateway/web/irccloud.com/x-ncblwrmbzxyvinpz> has quit IRC (Ping timeout: 255 seconds)
[18:48:01] *** ish <ish!sid1441@gateway/web/irccloud.com/x-xfyehkucchvfyvst> has quit IRC (Ping timeout: 255 seconds)
[18:48:01] *** zomg_ <zomg_!~jani@jjh.fi> has joined #angularjs
[18:48:02] *** sagerdearia <sagerdearia!~necrodear@unaffiliated/necrodearia> has quit IRC (Max SendQ exceeded)
[18:48:02] *** AndrewIsh <AndrewIsh!~andrew@mrboom.plus.com> has quit IRC (Ping timeout: 255 seconds)
[18:48:02] *** xteknoid <xteknoid!Elite16918@gateway/shell/elitebnc/x-empqxzsfuegkfzph> has quit IRC (Ping timeout: 255 seconds)
[18:48:03] *** lemur <lemur!~baweaver@ruby/staff/baweaver> has quit IRC (Ping timeout: 255 seconds)
[18:48:03] *** fedenunez <fedenunez!~fede@r167-61-16-59.dialup.adsl.anteldata.net.uy> has quit IRC (Ping timeout: 255 seconds)
[18:48:04] *** Guest1427 <Guest1427!~am55@vpn.artsconnection.org> has quit IRC (Ping timeout: 255 seconds)
[18:48:05] *** Steel <Steel!~Steel@195-154-162-203.rev.poneytelecom.eu> has quit IRC (Ping timeout: 244 seconds)
[18:48:05] *** cuebix <cuebix!~cuebix@8.214.108.190-cust.enetworksgy.com> has quit IRC (Ping timeout: 244 seconds)
[18:48:05] *** busticated <busticated!~textual@c-24-21-207-146.hsd1.or.comcast.net> has quit IRC (Ping timeout: 244 seconds)
[18:48:06] *** soee_ <soee_!~soee@user-46-112-93-152.play-internet.pl> has quit IRC (Remote host closed the connection)
[18:48:06] *** silverdust <silverdust!~silverdus@curve.sypherz.com> has joined #angularjs
[18:48:06] *** ^Migs^ <^Migs^!~migs@205.122.50.108> has joined #angularjs
[18:48:06] *** Preuk_ <Preuk_!~prk@ns3369808.ip-37-187-91.eu> has joined #angularjs
[18:48:06] *** Quarryma1 <Quarryma1!jensadne@graskaret.nlc.no> has quit IRC (Ping timeout: 244 seconds)
[18:48:07] *** whitebook <whitebook!~whitebook@ool-182e2e18.dyn.optonline.net> has quit IRC (Ping timeout: 244 seconds)
[18:48:07] *** LeBlaaanc <LeBlaaanc!~LeBlaaanc@47.188.236.163> has quit IRC (Ping timeout: 244 seconds)
[18:48:07] *** quakephil_ <quakephil_!~smuxi@cpe-69-200-246-39.nyc.res.rr.com> has quit IRC (Ping timeout: 244 seconds)
[18:48:07] *** jsightler_ <jsightler_!~jsightler@redhat/jboss/jsightler> has quit IRC (Ping timeout: 244 seconds)
[18:48:07] *** quakephil <quakephil!~smuxi@cpe-69-200-246-39.nyc.res.rr.com> has joined #angularjs
[18:48:08] *** cydrobolt_ <cydrobolt_!~cydrobolt@iota.cydrobolt.com> has joined #angularjs
[18:48:11] *** Duikb00t <Duikb00t!54c71612@gateway/web/cgi-irc/kiwiirc.com/ip.84.199.22.18> has quit IRC (Ping timeout: 264 seconds)
[18:48:11] *** HarryHallman <HarryHallman!~Ulysses@ec2-52-23-192-47.compute-1.amazonaws.com> has quit IRC (Ping timeout: 264 seconds)
[18:48:11] *** ninsei <ninsei!~IRCIdent@40.121.53.42> has quit IRC (Ping timeout: 264 seconds)
[18:48:12] *** spriz <spriz!~spriz@b29bd7a0.rev.stofanet.dk> has joined #angularjs
[18:48:12] *** percY-_ <percY-_!~percY@138.68.7.139> has quit IRC (Read error: Connection reset by peer)
[18:48:12] *** rovox <rovox!~rovox@13.67.181.197> has quit IRC (Ping timeout: 264 seconds)
[18:48:13] *** charper2 <charper2!~csharper@31.6.42.47> has joined #angularjs
[18:48:14] *** jsightler__ <jsightler__!~jsightler@98.124.125.227> has joined #angularjs
[18:48:14] *** ajpiano <ajpiano!~ajpiano@li98-57.members.linode.com> has quit IRC (Excess Flood)
[18:48:15] *** km4_ <km4_!~km4@grizon.pl> has joined #angularjs
[18:48:15] *** Bish <Bish!~arne@p57852E78.dip0.t-ipconnect.de> has quit IRC (Ping timeout: 264 seconds)
[18:48:15] *** rudycane <rudycane!~rudycane@hashbangs.com> has quit IRC (Ping timeout: 264 seconds)
[18:48:15] *** Sorcerer <Sorcerer!leentje@sorcerer.leentje.org> has quit IRC (Ping timeout: 264 seconds)
[18:48:16] *** soee <soee!~soee@user-46-112-93-152.play-internet.pl> has joined #angularjs
[18:48:16] *** Alina-malina_ <Alina-malina_!~Alina-mal@37.157.216.181> has joined #angularjs
[18:48:17] *** re1_ <re1_!~reiser@178.220.4.176> has quit IRC (Ping timeout: 264 seconds)
[18:48:19] *** HarryHallman <HarryHallman!~Ulysses@ec2-52-23-192-47.compute-1.amazonaws.com> has joined #angularjs
[18:48:21] *** ^Migs^ is now known as Migs
[18:48:31] *** busticated <busticated!~textual@c-24-21-207-146.hsd1.or.comcast.net> has joined #angularjs
[18:48:31] *** pimlu <pimlu!~pimlu@128.172.35.9> has joined #angularjs
[18:48:34] *** Leentje <Leentje!leentje@sorcerer.leentje.org> has joined #angularjs
[18:48:35] *** silverdust is now known as Guest59445
[18:48:36] *** shkipper <shkipper!~shkipper@85.234.63.125> has joined #angularjs
[18:48:37] *** vkareh <vkareh!~vkareh@12.231.104.138> has quit IRC (Quit: Leaving)
[18:48:38] *** Mr_Pancake <Mr_Pancake!~Pancake@2001:41d0:8:e386::1> has joined #angularjs
[18:48:46] *** daynaskully <daynaskully!~digifiv5e@unaffiliated/daynaskully> has joined #angularjs
[18:48:47] *** sagerdearia <sagerdearia!~necrodear@unaffiliated/necrodearia> has joined #angularjs
[18:48:48] *** star_pro_ <star_pro_!~sviatovig@188.25.28.123> has joined #angularjs
[18:48:51] *** percY- <percY-!~percY@138.68.7.139> has joined #angularjs
[18:48:57] *** RangerRick <RangerRick!~quassel@cpe-2606-A000-45C2-6901-82EE-73FF-FE9F-967E.dyn6.twc.com> has joined #angularjs
[18:48:58] *** strohalm <strohalm!~smoofi@212.37.175.238> has joined #angularjs
[18:48:58] *** strohalm <strohalm!~smoofi@212.37.175.238> has quit IRC (Changing host)
[18:48:58] *** strohalm <strohalm!~smoofi@unaffiliated/strohi> has joined #angularjs
[18:49:04] *** nausea <nausea!head@ticklemynausea.net> has joined #angularjs
[18:49:05] *** nausea <nausea!head@ticklemynausea.net> has quit IRC (Changing host)
[18:49:05] *** nausea <nausea!head@unaffiliated/neofreak> has joined #angularjs
[18:49:17] *** whatitdo <whatitdo!~howitdo@cpe-172-73-18-120.carolina.res.rr.com> has joined #angularjs
[18:49:28] *** punknroll <punknroll!~Thunderbi@p83-219-165-60.snwdip.snw.at> has quit IRC (Quit: punknroll)
[18:49:31] *** HalfEatenPie <HalfEatenPie!~HalfEaten@unaffiliated/halfeatenpie> has joined #angularjs
[18:49:32] *** star_prone <star_prone!~sviatovig@188.25.28.123> has quit IRC (Read error: Connection reset by peer)
[18:49:36] *** degva_ <degva_!~degva@190.232.18.40> has quit IRC (Quit: Leaving)
[18:49:41] *** jeppech <jeppech!~jeppech@178.62.191.174> has joined #angularjs
[18:49:41] *** orionstein <orionstein!~orionstei@ec2-54-84-28-44.compute-1.amazonaws.com> has joined #angularjs
[18:49:50] *** n|nsei <n|nsei!~IRCIdent@40.121.53.42> has joined #angularjs
[18:50:24] *** Wizek <Wizek!~Wizek@catv-89-132-132-110.catv.broadband.hu> has joined #angularjs
[18:50:27] *** asteele <asteele!~Cronoh@192.77.237.216> has joined #angularjs
[18:50:38] *** heartburn <heartburn!~heartburn@213.21.33.24> has joined #angularjs
[18:50:44] *** Poeticode <Poeticode!~Prophesi@host-68-169-169-183.VABOLT2.epbfi.com> has joined #angularjs
[18:50:45] *** kwmiebach__ <kwmiebach__!sid16855@gateway/web/irccloud.com/x-sjyzwsnephddufwt> has quit IRC (Ping timeout: 265 seconds)
[18:50:48] *** zol1 <zol1!~zolomon@31.208.76.60> has joined #angularjs
[18:50:48] *** TinkerTyper <TinkerTyper!~TinkerTyp@71.69.172.245> has joined #angularjs
[18:50:56] *** zeioth <zeioth!~zeioth@5.red-80-39-129.dynamicip.rima-tde.net> has joined #angularjs
[18:51:00] *** baweaver <baweaver!~baweaver@ruby/staff/baweaver> has joined #angularjs
[18:51:04] *** itamarjp <itamarjp!~itamar@fedora/itamarjp> has joined #angularjs
[18:51:05] *** TodPunk <TodPunk!~quassel@68.169.47.218> has joined #angularjs
[18:51:06] *** citizen-stig <citizen-stig!~citizen-s@89.221.207.219> has joined #angularjs
[18:51:09] *** blackwind_123 <blackwind_123!~IceChat9@61.1.134.146> has joined #angularjs
[18:51:16] *** ajk <ajk!~ajk@loris.speckledmonkey.com> has joined #angularjs
[18:51:20] *** sagerdearia <sagerdearia!~necrodear@unaffiliated/necrodearia> has quit IRC (Max SendQ exceeded)
[18:51:21] *** zivester <zivester!~zivester@38.104.66.138> has joined #angularjs
[18:51:33] *** Circlefusion <Circlefusion!~cf@cpe-74-132-161-93.kya.res.rr.com> has joined #angularjs
[18:51:33] *** _m8 <_m8!~m8@host114-180-dynamic.11-87-r.retail.telecomitalia.it> has quit IRC (Max SendQ exceeded)
[18:51:34] *** sfix <sfix!~gtierney@unaffiliated/sfix> has joined #angularjs
[18:51:44] *** idr0p <idr0p!~idr0p@idrjmp.pbugs.pw> has joined #angularjs
[18:51:53] *** sagerdearia <sagerdearia!~necrodear@unaffiliated/necrodearia> has joined #angularjs
[18:51:55] *** walden <walden!walden@nat/redhat/x-vjjbousvndidkqit> has joined #angularjs
[18:51:59] *** konradb <konradb!~konradb@46.101.163.118> has joined #angularjs
[18:51:59] *** konradb <konradb!~konradb@46.101.163.118> has quit IRC (Changing host)
[18:51:59] *** konradb <konradb!~konradb@unaffiliated/konradb> has joined #angularjs
[18:52:01] *** _m8 <_m8!~m8@host114-180-dynamic.11-87-r.retail.telecomitalia.it> has joined #angularjs
[18:52:06] *** AndrewIsh <AndrewIsh!~andrew@mrboom.plus.com> has joined #angularjs
[18:52:19] *** watersoul <watersoul!~ircuser@172.245.255.61> has joined #angularjs
[18:52:40] *** tabakhase <tabakhase!tabakhase@irc.s.bitase.net> has joined #angularjs
[18:52:41] *** tabakhase <tabakhase!tabakhase@irc.s.bitase.net> has quit IRC (Changing host)
[18:52:41] *** tabakhase <tabakhase!tabakhase@unaffiliated/tabakhase> has joined #angularjs
[18:52:46] *** GuiltyLemon <GuiltyLemon!~guiltylem@unaffiliated/guiltylemon> has joined #angularjs
[18:53:16] *** vpi <vpi!~vpi@195.66.82.9> has quit IRC (Remote host closed the connection)
[18:53:18] *** monokrome <monokrome!~monokrome@54.88.139.115> has joined #angularjs
[18:53:23] *** strohalm <strohalm!~smoofi@unaffiliated/strohi> has quit IRC (Ping timeout: 252 seconds)
[18:53:43] *** JmZ_ <JmZ_!~JmZ@69.65.44.146> has joined #angularjs
[18:53:43] *** JmZ_ <JmZ_!~JmZ@69.65.44.146> has quit IRC (Changing host)
[18:53:43] *** JmZ_ <JmZ_!~JmZ@unaffiliated/jmz> has joined #angularjs
[18:53:48] *** csk <csk!~csk@191.126.151.165> has joined #angularjs
[18:54:03] *** brollypop <brollypop!~brollypop@195.178.115.1> has joined #angularjs
[18:54:13] *** ah <ah!~ah@145.81-166-25.customer.lyse.net> has joined #angularjs
[18:54:18] *** gvanderest <gvanderest!~gvanderes@S01066c709fd71834.ok.shawcable.net> has joined #angularjs
[18:54:22] *** davidmichaelkarr <davidmichaelkarr!sid71216@gateway/web/irccloud.com/x-rlwmcynrdyxdiuhp> has joined #angularjs
[18:54:29] *** OtherAllan <OtherAllan!~OtherAlla@ip68-107-106-70.sd.sd.cox.net> has joined #angularjs
[18:54:36] *** vipul_ <vipul_!7aa28b34@gateway/web/freenode/ip.122.162.139.52> has joined #angularjs
[18:54:37] *** sagerdearia <sagerdearia!~necrodear@unaffiliated/necrodearia> has quit IRC (Max SendQ exceeded)
[18:54:38] *** fedenunez <fedenunez!~fede@r167-61-16-59.dialup.adsl.anteldata.net.uy> has joined #angularjs
[18:54:41] *** rudycane <rudycane!~rudycane@hashbangs.com> has joined #angularjs
[18:54:51] *** Alina-malina_ <Alina-malina_!~Alina-mal@37.157.216.181> has quit IRC (Changing host)
[18:54:51] *** Alina-malina_ <Alina-malina_!~Alina-mal@unaffiliated/alina-malina> has joined #angularjs
[18:54:59] *** tarnus_ is now known as tarnus
[18:55:07] *** sagerdearia <sagerdearia!~necrodear@unaffiliated/necrodearia> has joined #angularjs
[18:55:42] <vipul_> BreadCrumbs if loaded in child component are not loading on default child on first navigation. any clue?
[18:55:54] *** Rutix <Rutix!~rutix@4daece29.ftth.telfortglasvezel.nl> has joined #angularjs
[18:55:54] *** Rutix <Rutix!~rutix@4daece29.ftth.telfortglasvezel.nl> has quit IRC (Changing host)
[18:55:54] *** Rutix <Rutix!~rutix@april-fools/2013/runnerup/Rutix> has joined #angularjs
[18:56:01] *** kuadrosx_ is now known as kuadrosx
[18:56:15] *** Alina-malina_ is now known as Alina-malina
[18:56:42] *** mastokley <mastokley!~mastokley@71.35.179.178> has quit IRC (Ping timeout: 244 seconds)
[18:56:57] *** romerocesar <romerocesar!~cesar@c-67-183-219-247.hsd1.wa.comcast.net> has quit IRC (Ping timeout: 265 seconds)
[18:57:26] *** scorphus <scorphus!~scorphus@rocambole.minaslivre.org> has joined #angularjs
[18:57:27] *** scorphus <scorphus!~scorphus@rocambole.minaslivre.org> has quit IRC (Changing host)
[18:57:27] *** scorphus <scorphus!~scorphus@CAcert/User/scorphus> has joined #angularjs
[18:57:30] *** OtherAllan <OtherAllan!~OtherAlla@ip68-107-106-70.sd.sd.cox.net> has quit IRC (Remote host closed the connection)
[18:57:33] *** zac <zac!~zac@c-98-250-82-25.hsd1.mi.comcast.net> has joined #angularjs
[18:57:41] *** ngWalrus <ngWalrus!~lammis@95.85.58.114> has joined #angularjs
[18:57:47] *** sagerdearia <sagerdearia!~necrodear@unaffiliated/necrodearia> has quit IRC (Max SendQ exceeded)
[18:58:16] *** aendrew <aendrew!sid117843@gateway/web/irccloud.com/x-bkczqjagfolrhgsk> has joined #angularjs
[18:58:21] *** brollypop <brollypop!~brollypop@195.178.115.1> has quit IRC (Ping timeout: 240 seconds)
[18:58:21] *** jlyndon <jlyndon!sid10913@gateway/web/irccloud.com/x-hdggdomnznrpmodo> has joined #angularjs
[18:58:31] *** sagerdearia <sagerdearia!~necrodear@unaffiliated/necrodearia> has joined #angularjs
[18:58:43] *** oelewapperke <oelewapperke!~oelewappe@ks396983.ip-192-95-27.net> has joined #angularjs
[18:59:42] *** mdk <mdk!~mandark@163.172.212.90> has joined #angularjs
[19:00:12] *** erry <erry!~errietta@shadowcat/hyperactive-puppy/erry> has joined #angularjs
[19:00:28] *** pimlu <pimlu!~pimlu@128.172.35.9> has quit IRC (Ping timeout: 255 seconds)
[19:00:36] *** loZio <loZio!5d3fdd0e@gateway/web/freenode/ip.93.63.221.14> has joined #angularjs
[19:01:08] *** sagerdearia <sagerdearia!~necrodear@unaffiliated/necrodearia> has quit IRC (Max SendQ exceeded)
[19:01:15] <loZio> hello, I have a question...I'm using a interceptor and I want to exlude only two url from token....How can do it? Thanks
[19:03:13] *** hashrocket <hashrocket!uid27380@gateway/web/irccloud.com/x-bpdfncqlodcjnpii> has joined #angularjs
[19:03:15] *** gojira__ <gojira__!sid120399@gateway/web/irccloud.com/x-obzfsfrzlynzstwv> has joined #angularjs
[19:03:17] *** Ownix <Ownix!sid11917@gateway/web/irccloud.com/x-msomcxykwklrvkkz> has joined #angularjs
[19:04:01] *** Proditor <Proditor!~alex@93.115.92.142> has quit IRC (Remote host closed the connection)
[19:04:05] *** joepie91_ <joepie91_!~joepie91@199.241.31.225> has joined #angularjs
[19:04:19] *** zomg_ is now known as zomg
[19:05:11] *** mnaser <mnaser!~mnaser@unaffiliated/mnaser> has joined #angularjs
[19:05:25] *** clode_______ <clode_______!sid40776@gateway/web/irccloud.com/x-bqybrjeggvfzfywm> has joined #angularjs
[19:06:00] *** amatecha <amatecha!sid10006@gateway/web/irccloud.com/x-jayngffhxunxhxaw> has joined #angularjs
[19:06:50] *** d10n-work <d10n-work!uid37161@gateway/web/irccloud.com/x-kthvyljfrcjjsuzf> has joined #angularjs
[19:09:18] *** echelog-2` <echelog-2`!~echelog-2@108.61.103.42> has joined #angularjs
[19:09:18] *** echelog-2 <echelog-2!~echelog-2@108.61.103.42> has quit IRC (Disconnected by services)
[19:09:38] *** Garfield-fr_ <Garfield-fr_!~Garfield-@178.237.80.10> has joined #angularjs
[19:09:40] *** dopples <dopples!~Bryson@45.55.251.192> has joined #angularjs
[19:09:44] *** spriz_ <spriz_!~spriz@b29bd7a0.rev.stofanet.dk> has joined #angularjs
[19:10:49] *** echelog-2 <echelog-2!~echelog-2@108.61.103.42> has joined #angularjs
[19:10:52] *** spriz <spriz!~spriz@b29bd7a0.rev.stofanet.dk> has quit IRC (Ping timeout: 240 seconds)
[19:10:52] *** konradb <konradb!~konradb@unaffiliated/konradb> has quit IRC (Ping timeout: 240 seconds)
[19:10:52] *** rovox_ <rovox_!~rovox@13.67.181.197> has quit IRC (Ping timeout: 240 seconds)
[19:10:52] *** Quarryman <Quarryman!jensadne@graskaret.nlc.no> has quit IRC (Ping timeout: 240 seconds)
[19:10:53] *** TinkerTyper <TinkerTyper!~TinkerTyp@71.69.172.245> has quit IRC (Ping timeout: 240 seconds)
[19:10:53] *** __alex <__alex!~alex@wisdom.tricnet.de> has quit IRC (Ping timeout: 240 seconds)
[19:10:55] *** rovox <rovox!~rovox@13.67.181.197> has joined #angularjs
[19:11:05] *** Circlefusion <Circlefusion!~cf@cpe-74-132-161-93.kya.res.rr.com> has quit IRC (Ping timeout: 240 seconds)
[19:11:07] *** Migs <Migs!~migs@205.122.50.108> has quit IRC (Disconnected by services)
[19:11:09] *** ^Migs^ is now known as Migs
[19:11:09] *** doppio <doppio!~Bryson@45.55.251.192> has quit IRC (Ping timeout: 265 seconds)
[19:11:10] *** samu <samu!s@unaffiliated/samaelszafran> has quit IRC (Read error: Connection reset by peer)
[19:11:10] *** star_pro_ <star_pro_!~sviatovig@188.25.28.123> has quit IRC (Ping timeout: 265 seconds)
[19:11:10] *** busticated <busticated!~textual@c-24-21-207-146.hsd1.or.comcast.net> has quit IRC (Ping timeout: 265 seconds)
[19:11:10] *** AaronDreamcoin <AaronDreamcoin!AaronDream@debian.fewona.net> has quit IRC (Ping timeout: 265 seconds)
[19:11:10] *** iraj_ <iraj_!~iraj@91.107.244.101> has quit IRC (Remote host closed the connection)
[19:11:13] *** sfix <sfix!~gtierney@unaffiliated/sfix> has quit IRC (Ping timeout: 272 seconds)
[19:11:13] *** w0rp <w0rp!~w0rp@host31-53-133-102.range31-53.btcentralplus.com> has quit IRC (Ping timeout: 272 seconds)
[19:11:13] *** roachiepoopoo <roachiepoopoo!~roachiepo@50.168.15.227> has quit IRC (Ping timeout: 272 seconds)
[19:11:13] *** m_gol <m_gol!m_gol@gateway/shell/jquery.com/x-kkjcjrsqlwasaifg> has quit IRC (Ping timeout: 272 seconds)
[19:11:13] *** clode_______ <clode_______!sid40776@gateway/web/irccloud.com/x-bqybrjeggvfzfywm> has quit IRC (Ping timeout: 272 seconds)
[19:11:13] *** hashrocket <hashrocket!uid27380@gateway/web/irccloud.com/x-bpdfncqlodcjnpii> has quit IRC (Ping timeout: 272 seconds)
[19:11:13] *** Ownix <Ownix!sid11917@gateway/web/irccloud.com/x-msomcxykwklrvkkz> has quit IRC (Ping timeout: 272 seconds)
[19:11:13] *** gojira__ <gojira__!sid120399@gateway/web/irccloud.com/x-obzfsfrzlynzstwv> has quit IRC (Ping timeout: 272 seconds)
[19:11:13] *** GuiltyLemon <GuiltyLemon!~guiltylem@unaffiliated/guiltylemon> has quit IRC (Ping timeout: 272 seconds)
[19:11:13] *** marr <marr!~ccc@159-205-243-117.adsl.inetia.pl> has quit IRC (Ping timeout: 272 seconds)
[19:11:13] *** XSkinner- <XSkinner-!XSkinner@A.Land.Down.Under.PanicBNC.net> has joined #angularjs
[19:11:15] *** sagerdearia <sagerdearia!~necrodear@unaffiliated/necrodearia> has joined #angularjs
[19:11:15] *** marr <marr!~ccc@159-205-243-117.adsl.inetia.pl> has joined #angularjs
[19:11:15] *** RangerRick <RangerRick!~quassel@cpe-2606-A000-45C2-6901-82EE-73FF-FE9F-967E.dyn6.twc.com> has quit IRC (Quit: No Ping reply in 180 seconds.)
[19:11:16] *** ajk <ajk!~ajk@loris.speckledmonkey.com> has quit IRC (Ping timeout: 272 seconds)
[19:11:16] *** Klumben <Klumben!Nsaiswatch@elmo.stole-your.pw> has quit IRC (Ping timeout: 272 seconds)
[19:11:16] *** mven <mven!~textual@32.97.110.57> has quit IRC (Ping timeout: 272 seconds)
[19:11:16] *** joevandyk <joevandyk!~ubuntu@ec2-54-235-235-220.compute-1.amazonaws.com> has quit IRC (Ping timeout: 272 seconds)
[19:11:16] *** aboudreault <aboudreault!~aboudreau@osgeo/member/aboudreault> has quit IRC (Ping timeout: 272 seconds)
[19:11:16] *** roachiepoopoo <roachiepoopoo!~roachiepo@50.168.15.227> has joined #angularjs
[19:11:23] *** cydrobol- <cydrobol-!~cydrobolt@iota.cydrobolt.com> has joined #angularjs
[19:11:26] *** MJD_ <MJD_!~quassel@scadrial.mjdsystems.ca> has joined #angularjs
[19:11:26] *** LeBlaaan_ <LeBlaaan_!~LeBlaaanc@47.188.236.163> has quit IRC (Quit: My Mac has gone to sleep. ZZZzzz…)
[19:11:28] *** zol1 <zol1!~zolomon@31.208.76.60> has quit IRC (Ping timeout: 265 seconds)
[19:11:28] *** mnaser <mnaser!~mnaser@unaffiliated/mnaser> has quit IRC (Ping timeout: 265 seconds)
[19:11:28] *** xteknoid_ <xteknoid_!Elite16918@gateway/shell/elitebnc/x-ooywyyqmwmsjavuv> has quit IRC (Ping timeout: 265 seconds)
[19:11:28] *** iraj_ <iraj_!~iraj@91.107.244.101> has joined #angularjs
[19:11:28] *** monsti <monsti!~i@v3-1386.vxen.de> has quit IRC (Ping timeout: 265 seconds)
[19:11:28] *** kuadrosx <kuadrosx!~kuadrosx@190.240.80.94> has quit IRC (Ping timeout: 265 seconds)
[19:11:29] *** oelewapperke <oelewapperke!~oelewappe@ks396983.ip-192-95-27.net> has quit IRC (Ping timeout: 265 seconds)
[19:11:29] *** magellanicloud <magellanicloud!~magellani@2a02:810b:8340:3f18:b899:7011:6f92:f32b> has quit IRC (Ping timeout: 265 seconds)
[19:11:29] *** Vye <Vye!Vye@2600:3c00::f03c:91ff:fe73:1f53> has quit IRC (Ping timeout: 265 seconds)
[19:11:41] *** pyios_ <pyios_!~pyios@114.111.167.255> has joined #angularjs
[19:11:45] *** d10n-work <d10n-work!uid37161@gateway/web/irccloud.com/x-kthvyljfrcjjsuzf> has quit IRC (Ping timeout: 272 seconds)
[19:11:46] *** Poeticode <Poeticode!~Prophesi@host-68-169-169-183.VABOLT2.epbfi.com> has quit IRC (Ping timeout: 272 seconds)
[19:11:46] *** HalfEatenPie <HalfEatenPie!~HalfEaten@unaffiliated/halfeatenpie> has quit IRC (Ping timeout: 272 seconds)
[19:11:46] *** ajpiano_ <ajpiano_!~ajpiano@li98-57.members.linode.com> has quit IRC (Ping timeout: 272 seconds)
[19:11:53] *** n|nsei <n|nsei!~IRCIdent@40.121.53.42> has quit IRC (Ping timeout: 244 seconds)
[19:11:53] *** quakephil <quakephil!~smuxi@cpe-69-200-246-39.nyc.res.rr.com> has quit IRC (Ping timeout: 244 seconds)
[19:11:54] *** AndrewIsh <AndrewIsh!~andrew@mrboom.plus.com> has quit IRC (Ping timeout: 244 seconds)
[19:11:54] *** blackwind_123 <blackwind_123!~IceChat9@61.1.134.146> has quit IRC (Ping timeout: 244 seconds)
[19:11:54] *** whatitdo <whatitdo!~howitdo@cpe-172-73-18-120.carolina.res.rr.com> has quit IRC (Ping timeout: 244 seconds)
[19:11:54] *** cydrobolt_ <cydrobolt_!~cydrobolt@iota.cydrobolt.com> has quit IRC (Ping timeout: 244 seconds)
[19:11:54] *** Guest59445 <Guest59445!~silverdus@curve.sypherz.com> has quit IRC (Ping timeout: 244 seconds)
[19:11:54] *** Preuk_ <Preuk_!~prk@ns3369808.ip-37-187-91.eu> has quit IRC (Read error: Connection reset by peer)
[19:11:55] *** pyios <pyios!~pyios@114.111.167.255> has quit IRC (Ping timeout: 255 seconds)
[19:11:55] *** XSkinner <XSkinner!XSkinner@A.Land.Down.Under.PanicBNC.net> has quit IRC (Ping timeout: 255 seconds)
[19:11:56] *** sptq <sptq!sid152696@gateway/web/irccloud.com/x-prrzqjbluxpkrkmr> has quit IRC (Ping timeout: 255 seconds)
[19:11:56] *** maxikon <maxikon!maksim@bsd.ee> has quit IRC (Read error: Connection reset by peer)
[19:11:56] *** pyios_ is now known as pyios
[19:11:57] *** MJD <MJD!~quassel@scadrial.mjdsystems.ca> has quit IRC (Ping timeout: 255 seconds)
[19:11:59] *** sagerdearia <sagerdearia!~necrodear@unaffiliated/necrodearia> has quit IRC (Max SendQ exceeded)
[19:12:06] *** jeppech- <jeppech-!~jeppech@178.62.191.174> has joined #angularjs
[19:12:07] *** ajpiano <ajpiano!~ajpiano@li98-57.members.linode.com> has joined #angularjs
[19:12:07] *** RangerRick <RangerRick!~quassel@cpe-2606-A000-45C2-6901-82EE-73FF-FE9F-967E.dyn6.twc.com> has joined #angularjs
[19:12:09] *** Orion3k <Orion3k!~Orion3k@47-51-33-228.static.mtpk.ca.charter.com> has joined #angularjs
[19:12:12] *** zol1 <zol1!~zolomon@31.208.76.60> has joined #angularjs
[19:12:13] *** errietta <errietta!~errietta@shadowcat/hyperactive-puppy/erry> has joined #angularjs
[19:12:16] *** soee <soee!~soee@user-46-112-93-152.play-internet.pl> has quit IRC (Read error: Connection reset by peer)
[19:12:16] *** km4 <km4!~km4@grizon.pl> has joined #angularjs
[19:12:17] *** erry <erry!~errietta@shadowcat/hyperactive-puppy/erry> has quit IRC (Ping timeout: 264 seconds)
[19:12:17] *** jeppech <jeppech!~jeppech@178.62.191.174> has quit IRC (Ping timeout: 264 seconds)
[19:12:18] *** charper2 <charper2!~csharper@31.6.42.47> has quit IRC (Ping timeout: 264 seconds)
[19:12:18] *** tritian <tritian!~lazarus@meobets.com> has quit IRC (Ping timeout: 264 seconds)
[19:12:18] *** Triangular <Triangular!tri@46.7.141.237> has quit IRC (Ping timeout: 264 seconds)
[19:12:18] *** waldenraines <waldenraines!walden@nat/redhat/x-fnobfatpnkhjnzbn> has joined #angularjs
[19:12:19] *** eMBee <eMBee!~eMBee@static.199.240.4.46.clients.your-server.de> has joined #angularjs
[19:12:20] *** kuadrosx_ <kuadrosx_!~kuadrosx@190.240.80.94> has joined #angularjs
[19:12:20] *** mdk <mdk!~mandark@163.172.212.90> has quit IRC (Ping timeout: 264 seconds)
[19:12:21] *** walden <walden!walden@nat/redhat/x-vjjbousvndidkqit> has quit IRC (Ping timeout: 264 seconds)
[19:12:21] *** km4_ <km4_!~km4@grizon.pl> has quit IRC (Ping timeout: 264 seconds)
[19:12:21] *** Orion3000 <Orion3000!~Orion3k@47-51-33-228.static.mtpk.ca.charter.com> has quit IRC (Ping timeout: 264 seconds)
[19:12:22] *** csharper <csharper!~csharper@31.6.42.47> has joined #angularjs
[19:12:22] *** Circlefusion1 <Circlefusion1!~cf@cpe-74-132-161-93.kya.res.rr.com> has joined #angularjs
[19:12:23] *** jsightler__ <jsightler__!~jsightler@98.124.125.227> has quit IRC (Ping timeout: 264 seconds)
[19:12:25] *** ajk <ajk!~ajk@loris.speckledmonkey.com> has joined #angularjs
[19:12:26] *** silverdu1t <silverdu1t!~silverdus@curve.sypherz.com> has joined #angularjs
[19:12:26] *** eMBee <eMBee!~eMBee@static.199.240.4.46.clients.your-server.de> has quit IRC (Changing host)
[19:12:26] *** eMBee <eMBee!~eMBee@foresight/developer/pike/programmer> has joined #angularjs
[19:12:27] *** Garfield-fr <Garfield-fr!~Garfield-@unaffiliated/garfield-fr> has quit IRC (Ping timeout: 265 seconds)
[19:12:28] *** tarnus <tarnus!~tarnus@2602:306:ccaa:9790:9070:a840:870b:8a42> has quit IRC (Read error: Connection timed out)
[19:12:29] *** soee_ <soee_!~soee@user-46-112-93-152.play-internet.pl> has joined #angularjs
[19:12:30] *** Klumben <Klumben!Nsaiswatch@elmo.stole-your.pw> has joined #angularjs
[19:12:55] *** mdk <mdk!~mandark@163.172.212.90> has joined #angularjs
[19:12:55] *** hidwid <hidwid!~howitdo@cpe-172-73-18-120.carolina.res.rr.com> has joined #angularjs
[19:12:58] *** oelewapperke <oelewapperke!~oelewappe@ks396983.ip-192-95-27.net> has joined #angularjs
[19:12:58] *** blackwind_123 <blackwind_123!~IceChat9@61.1.134.146> has joined #angularjs
[19:13:06] *** quakephil <quakephil!~smuxi@cpe-69-200-246-39.nyc.res.rr.com> has joined #angularjs
[19:13:11] *** tarnus <tarnus!~tarnus@2602:306:ccaa:9790:9070:a840:870b:8a42> has joined #angularjs
[19:13:20] *** sagerdearia <sagerdearia!~necrodear@unaffiliated/necrodearia> has joined #angularjs
[19:13:21] *** xteknoid <xteknoid!Elite16918@gateway/shell/elitebnc/x-hjgdslpmttpbvbvn> has joined #angularjs
[19:13:24] *** AaronDreamcoin <AaronDreamcoin!AaronDream@debian.fewona.net> has joined #angularjs
[19:13:26] *** GuiltyLemon <GuiltyLemon!~guiltylem@unaffiliated/guiltylemon> has joined #angularjs
[19:13:31] *** AndrewIsh <AndrewIsh!~andrew@mrboom.plus.com> has joined #angularjs
[19:13:33] *** sagerdearia <sagerdearia!~necrodear@unaffiliated/necrodearia> has quit IRC (Max SendQ exceeded)
[19:13:36] *** busticated <busticated!~textual@c-24-21-207-146.hsd1.or.comcast.net> has joined #angularjs
[19:13:44] *** mbedcoder <mbedcoder!~mbedcoder@node-sqg.pool-125-25.dynamic.totbb.net> has quit IRC (Quit: Leaving)
[19:13:48] *** OtherAllan <OtherAllan!~OtherAlla@ip68-107-106-70.sd.sd.cox.net> has joined #angularjs
[19:14:12] *** alphonse23_ <alphonse23_!sid34238@gateway/web/irccloud.com/x-izdhxcgekzxcoliy> has joined #angularjs
[19:14:17] *** cmosguy <cmosguy!sid130111@gateway/web/irccloud.com/x-sfpxwyrsdeqntmbc> has quit IRC (Ping timeout: 252 seconds)
[19:14:29] *** m_gol <m_gol!m_gol@gateway/shell/jquery.com/x-dazaasuduwxhnaae> has joined #angularjs
[19:14:35] *** TinkerTyper <TinkerTyper!~TinkerTyp@71.69.172.245> has joined #angularjs
[19:15:11] *** sergey <sergey!~sergey@91.243.203.87> has joined #angularjs
[19:15:34] *** ninsei <ninsei!~IRCIdent@40.121.53.42> has joined #angularjs
[19:15:35] *** HalfEatenPie <HalfEatenPie!~HalfEaten@unaffiliated/halfeatenpie> has joined #angularjs
[19:15:45] *** maxikon <maxikon!maksim@bsd.ee> has joined #angularjs
[19:15:49] *** tritian <tritian!~lazarus@meobets.com> has joined #angularjs
[19:15:49] *** cspotcode <cspotcode!uid80131@gateway/web/irccloud.com/x-gghsyyldaxghcpto> has quit IRC (Ping timeout: 265 seconds)
[19:16:38] *** aarobc <aarobc!~aarobc@216.51.32.182> has joined #angularjs
[19:16:40] *** Vye <Vye!Vye@2600:3c00::f03c:91ff:fe73:1f53> has joined #angularjs
[19:16:55] *** LeBlaaanc <LeBlaaanc!~LeBlaaanc@47.188.236.163> has joined #angularjs
[19:17:26] *** devin__ <devin__!sid177405@gateway/web/irccloud.com/x-cnskjphtloywmxfz> has joined #angularjs
[19:17:55] <xinming> Just curious, How is object attribute change auto update to html implemented in angular? What docs should I read?
[19:17:59] *** aboudreault <aboudreault!~aboudreau@osgeo/member/aboudreault> has joined #angularjs
[19:19:44] *** __m8 <__m8!~m8@host114-180-dynamic.11-87-r.retail.telecomitalia.it> has joined #angularjs
[19:19:51] *** n3ssi3 <n3ssi3!uid5547@gateway/web/irccloud.com/x-yjmnvrlcixupprdu> has quit IRC (Quit: Connection closed for inactivity)
[19:20:18] *** LeBlaaan_ <LeBlaaan_!~LeBlaaanc@47.188.236.163> has joined #angularjs
[19:20:18] *** sergey_ <sergey_!~sergey@91.243.203.87> has joined #angularjs
[19:20:23] *** samu <samu!s@unaffiliated/samaelszafran> has joined #angularjs
[19:20:28] <xinming> Ignore me, I found the answer. :-)
[19:20:46] *** maxikon_ <maxikon_!maksim@bsd.ee> has joined #angularjs
[19:20:54] *** Preuk <Preuk!~prk@ns3369808.ip-37-187-91.eu> has joined #angularjs
[19:21:11] *** thomaspaulb <thomaspaulb!~Tom@217.21.193.235> has quit IRC (Remote host closed the connection)
[19:21:40] *** Vytautas <Vytautas!~svycka@79.98.31.66> has joined #angularjs
[19:21:45] *** TinkerTyper <TinkerTyper!~TinkerTyp@71.69.172.245> has quit IRC (Ping timeout: 272 seconds)
[19:21:45] *** GuiltyLemon <GuiltyLemon!~guiltylem@unaffiliated/guiltylemon> has quit IRC (Ping timeout: 272 seconds)
[19:21:45] *** Klumben <Klumben!Nsaiswatch@elmo.stole-your.pw> has quit IRC (Ping timeout: 272 seconds)
[19:21:45] *** XSkinner- <XSkinner-!XSkinner@A.Land.Down.Under.PanicBNC.net> has quit IRC (Ping timeout: 272 seconds)
[19:21:45] *** maxikon <maxikon!maksim@bsd.ee> has quit IRC (Read error: Connection reset by peer)
[19:21:46] *** mven <mven!~textual@32.97.110.57> has joined #angularjs
[19:21:46] *** roachiepoopoo <roachiepoopoo!~roachiepo@50.168.15.227> has quit IRC (Ping timeout: 272 seconds)
[19:21:46] *** marr <marr!~ccc@159-205-243-117.adsl.inetia.pl> has quit IRC (Ping timeout: 272 seconds)
[19:21:47] *** svycka <svycka!~svycka@79.98.31.66> has quit IRC (Ping timeout: 272 seconds)
[19:21:47] *** pulaski <pulaski!~pulaski@2604:180:2:e74::5a38> has quit IRC (Ping timeout: 272 seconds)
[19:21:47] *** XSkinner <XSkinner!XSkinner@A.Land.Down.Under.PanicBNC.net> has joined #angularjs
[19:21:48] *** marr <marr!~ccc@159-205-243-117.adsl.inetia.pl> has joined #angularjs
[19:21:48] *** fcanela <fcanela!~fcanela@unaffiliated/fcanela> has quit IRC (Remote host closed the connection)
[19:21:48] *** roachiepoopoo <roachiepoopoo!~roachiepo@50.168.15.227> has joined #angularjs
[19:21:48] *** MerlinDMC <MerlinDMC!~merlin@irc.l0cal.net> has joined #angularjs
[19:21:52] *** GuiltyLemon <GuiltyLemon!~guiltylem@unaffiliated/guiltylemon> has joined #angularjs
[19:21:54] *** alphonse23_ <alphonse23_!sid34238@gateway/web/irccloud.com/x-izdhxcgekzxcoliy> has quit IRC (Ping timeout: 272 seconds)
[19:21:54] *** quakephil <quakephil!~smuxi@cpe-69-200-246-39.nyc.res.rr.com> has quit IRC (Ping timeout: 272 seconds)
[19:21:54] *** errietta <errietta!~errietta@shadowcat/hyperactive-puppy/erry> has quit IRC (Ping timeout: 272 seconds)
[19:21:54] *** hidwid <hidwid!~howitdo@cpe-172-73-18-120.carolina.res.rr.com> has quit IRC (Ping timeout: 272 seconds)
[19:21:55] *** Vytautas is now known as svycka
[19:21:56] *** amatecha <amatecha!sid10006@gateway/web/irccloud.com/x-jayngffhxunxhxaw> has quit IRC (Ping timeout: 272 seconds)
[19:21:56] *** aendrew <aendrew!sid117843@gateway/web/irccloud.com/x-bkczqjagfolrhgsk> has quit IRC (Ping timeout: 272 seconds)
[19:21:56] *** Mr_Pancake <Mr_Pancake!~Pancake@2001:41d0:8:e386::1> has quit IRC (Ping timeout: 272 seconds)
[19:21:56] *** techntoke_ <techntoke_!sid124863@gateway/web/irccloud.com/x-ayihppesoytuuynq> has quit IRC (Ping timeout: 272 seconds)
[19:21:56] *** plutoniix <plutoniix!~q@node-rg4.pool-180-180.dynamic.totbb.net> has quit IRC (Ping timeout: 272 seconds)
[19:21:56] *** atomi <atomi!~atomi@71-83-179-177.dhcp.lnbh.ca.charter.com> has quit IRC (Ping timeout: 272 seconds)
[19:21:56] *** Helheim <Helheim!~helheim@static-ip-69-64-50-156.inaddr.ip-pool.com> has quit IRC (Ping timeout: 272 seconds)
[19:21:57] *** HalfEatenPie <HalfEatenPie!~HalfEaten@unaffiliated/halfeatenpie> has quit IRC (Excess Flood)
[19:21:57] *** woohoo- <woohoo-!~bjoo@trippin.online> has joined #angularjs
[19:22:13] *** errietta <errietta!~errietta@shadowcat/hyperactive-puppy/erry> has joined #angularjs
[19:22:23] *** plutoniix <plutoniix!~q@node-rg4.pool-180-180.dynamic.totbb.net> has joined #angularjs
[19:22:29] *** StanMars1 <StanMars1!~StanMarsh@109.201.138.232> has quit IRC (Ping timeout: 244 seconds)
[19:22:30] *** blackwind_123 <blackwind_123!~IceChat9@61.1.134.146> has quit IRC (Ping timeout: 255 seconds)
[19:22:30] *** daynaskully <daynaskully!~digifiv5e@unaffiliated/daynaskully> has quit IRC (Ping timeout: 244 seconds)
[19:22:31] *** itaipu <itaipu!~Marco@168.121.96.22> has quit IRC (Ping timeout: 244 seconds)
[19:22:31] *** devin__ <devin__!sid177405@gateway/web/irccloud.com/x-cnskjphtloywmxfz> has quit IRC (Ping timeout: 272 seconds)
[19:22:31] *** LeBlaaanc <LeBlaaanc!~LeBlaaanc@47.188.236.163> has quit IRC (Ping timeout: 272 seconds)
[19:22:32] *** RangerRick <RangerRick!~quassel@cpe-2606-A000-45C2-6901-82EE-73FF-FE9F-967E.dyn6.twc.com> has quit IRC (Ping timeout: 272 seconds)
[19:22:32] *** ajpiano <ajpiano!~ajpiano@li98-57.members.linode.com> has quit IRC (Ping timeout: 272 seconds)
[19:22:32] *** MJD_ <MJD_!~quassel@scadrial.mjdsystems.ca> has quit IRC (Ping timeout: 272 seconds)
[19:22:32] *** dextertzu <dextertzu!~dexter@S0106bcd1656573c8.vs.shawcable.net> has quit IRC (Ping timeout: 272 seconds)
[19:22:39] *** MJD <MJD!~quassel@scadrial.mjdsystems.ca> has joined #angularjs
[19:22:43] *** pulaski <pulaski!~pulaski@2604:180:2:e74::5a38> has joined #angularjs
[19:22:48] *** AaronDreamcoin <AaronDreamcoin!AaronDream@debian.fewona.net> has quit IRC (Ping timeout: 264 seconds)
[19:22:48] *** csharper <csharper!~csharper@31.6.42.47> has quit IRC (Ping timeout: 264 seconds)
[19:22:49] *** amitev <amitev!~amitev@212.25.36.115> has joined #angularjs
[19:22:49] *** csharper <csharper!~csharper@31.6.42.47> has joined #angularjs
[19:22:50] *** quakephil_ <quakephil_!~smuxi@cpe-69-200-246-39.nyc.res.rr.com> has joined #angularjs
[19:22:50] *** guyz <guyz!~digifiv5e@unaffiliated/daynaskully> has joined #angularjs
[19:22:50] *** silverdu1t <silverdu1t!~silverdus@curve.sypherz.com> has quit IRC (Ping timeout: 264 seconds)
[19:22:50] *** blindbox <blindbox!~blindbox@60.54.66.69> has quit IRC (Ping timeout: 264 seconds)
[19:22:50] *** amitev__ <amitev__!~amitev@212.25.36.115> has quit IRC (Ping timeout: 264 seconds)
[19:22:52] *** busticated <busticated!~textual@c-24-21-207-146.hsd1.or.comcast.net> has quit IRC (Ping timeout: 264 seconds)
[19:22:52] *** AndrewIsh <AndrewIsh!~andrew@mrboom.plus.com> has quit IRC (Ping timeout: 264 seconds)
[19:22:52] *** xteknoid <xteknoid!Elite16918@gateway/shell/elitebnc/x-hjgdslpmttpbvbvn> has quit IRC (Ping timeout: 264 seconds)
[19:22:53] *** kuadrosx_ <kuadrosx_!~kuadrosx@190.240.80.94> has quit IRC (Ping timeout: 264 seconds)
[19:22:53] *** _m8 <_m8!~m8@host114-180-dynamic.11-87-r.retail.telecomitalia.it> has quit IRC (Ping timeout: 264 seconds)
[19:22:53] *** monokrome <monokrome!~monokrome@54.88.139.115> has quit IRC (Ping timeout: 264 seconds)
[19:22:53] *** atomi_ <atomi_!~atomi@71-83-179-177.dhcp.lnbh.ca.charter.com> has joined #angularjs
[19:22:53] *** itaipu_ <itaipu_!~Marco@168.121.96.22> has joined #angularjs
[19:22:56] *** Mr_Pancake <Mr_Pancake!~Pancake@2001:41d0:8:e386::1> has joined #angularjs
[19:22:57] *** dextertzu <dextertzu!~dexter@S0106bcd1656573c8.vs.shawcable.net> has joined #angularjs
[19:23:09] *** sergey <sergey!~sergey@91.243.203.87> has quit IRC (Ping timeout: 272 seconds)
[19:23:12] *** fcanela_ <fcanela_!~fcanela@unaffiliated/fcanela> has joined #angularjs
[19:23:25] *** AaronDreamcoin <AaronDreamcoin!AaronDream@debian.fewona.net> has joined #angularjs
[19:23:25] *** VaticanCameos <VaticanCameos!~VaticanCa@182.68.109.83> has joined #angularjs
[19:23:26] *** Ziberius <Ziberius!~IceChat78@190-82-83-94.static.tie.cl> has joined #angularjs
[19:23:34] *** Elisha <Elisha!~elisha@tm.213.143.68.74.nm.telemach.net> has joined #angularjs
[19:23:40] *** StephenS is now known as xinfo
[19:23:43] *** xinfo is now known as StephenS
[19:23:45] *** Klumben <Klumben!Nsaiswatch@elmo.stole-your.pw> has joined #angularjs
[19:23:48] *** RangerRick <RangerRick!~quassel@cpe-2606-A000-45C2-6901-82EE-73FF-FE9F-967E.dyn6.twc.com> has joined #angularjs
[19:23:49] *** blackwind_123 <blackwind_123!~IceChat9@61.1.134.146> has joined #angularjs
[19:23:50] *** VaticanCameos <VaticanCameos!~VaticanCa@182.68.109.83> has quit IRC (Client Quit)
[19:23:53] *** krusty_ar_ <krusty_ar_!~quassel@190.192.59.178> has joined #angularjs
[19:23:59] *** guyz is now known as daynaskully
[19:24:09] *** StanMarsh <StanMarsh!~StanMarsh@46.166.190.161> has joined #angularjs
[19:24:15] *** hidwid <hidwid!~howitdo@cpe-172-73-18-120.carolina.res.rr.com> has joined #angularjs
[19:24:18] *** GreenJello___ <GreenJello___!~GreenJell@ip68-106-249-139.ph.ph.cox.net> has joined #angularjs
[19:24:33] *** Helheim <Helheim!~helheim@static-ip-69-64-50-156.inaddr.ip-pool.com> has joined #angularjs
[19:24:37] *** AndrewIsh <AndrewIsh!~andrew@mrboom.plus.com> has joined #angularjs
[19:24:39] *** ajpiano <ajpiano!~ajpiano@li98-57.members.linode.com> has joined #angularjs
[19:24:42] *** Immutef <Immutef!sid17978@gateway/web/irccloud.com/x-cuzibutmqagvvkds> has joined #angularjs
[19:24:44] *** TinkerTyper <TinkerTyper!~TinkerTyp@71.69.172.245> has joined #angularjs
[19:25:48] *** TodPunk_ <TodPunk_!~quassel@68.169.47.218> has joined #angularjs
[19:25:50] *** LeBlaaan_ <LeBlaaan_!~LeBlaaanc@47.188.236.163> has quit IRC (Quit: My Mac has gone to sleep. ZZZzzz…)
[19:25:57] *** monsti <monsti!~i@v3-1386.vxen.de> has joined #angularjs
[19:26:03] *** monokrome <monokrome!~monokrome@54.88.139.115> has joined #angularjs
[19:26:17] *** anjumkaiser <anjumkaiser!~anjumkais@39.50.233.136> has joined #angularjs
[19:26:27] *** cory___ <cory___!sid180108@gateway/web/irccloud.com/x-bbdiaidjbqmlrysu> has quit IRC (Ping timeout: 265 seconds)
[19:26:40] *** kwmiebach__ <kwmiebach__!sid16855@gateway/web/irccloud.com/x-ljjtiykapwiumoow> has joined #angularjs
[19:26:49] *** dboskovic <dboskovic!sid12178@gateway/web/irccloud.com/x-naxdnxbittzfazhp> has joined #angularjs
[19:26:58] *** wrkrcoop <wrkrcoop!~martee@adsk-nat-ip5.autodesk.com> has joined #angularjs
[19:27:06] *** __alex <__alex!~alex@wisdom.tricnet.de> has joined #angularjs
[19:27:29] *** mnaser <mnaser!~mnaser@unaffiliated/mnaser> has joined #angularjs
[19:27:32] *** Lowell <Lowell!sid43163@gateway/web/irccloud.com/x-gqwxcprjhqlijxum> has joined #angularjs
[19:27:37] *** HalfEatenPie_ <HalfEatenPie_!~HalfEaten@37.247.49.127> has joined #angularjs
[19:27:39] *** fedenunez1 <fedenunez1!~fede@r167-61-16-59.dialup.adsl.anteldata.net.uy> has joined #angularjs
[19:27:43] *** sfix <sfix!~gtierney@unaffiliated/sfix> has joined #angularjs
[19:27:43] *** tabakhase__ <tabakhase__!tabakhase@irc.s.bitase.net> has joined #angularjs
[19:27:52] *** loZio <loZio!5d3fdd0e@gateway/web/freenode/ip.93.63.221.14> has quit IRC (Quit: Page closed)
[19:28:02] *** WillMoogle <WillMoogle!sid38138@gateway/web/irccloud.com/x-mhxezwxmtbmqoicl> has joined #angularjs
[19:28:02] *** tabakhase <tabakhase!tabakhase@unaffiliated/tabakhase> has quit IRC (*.net *.split)
[19:28:02] *** TodPunk <TodPunk!~quassel@68.169.47.218> has quit IRC (*.net *.split)
[19:28:02] *** GreenJello__ <GreenJello__!~GreenJell@ip68-106-249-139.ph.ph.cox.net> has quit IRC (*.net *.split)
[19:28:02] *** krusty_ar <krusty_ar!~quassel@190.192.59.178> has quit IRC (*.net *.split)
[19:28:03] *** Mer|inDMC <Mer|inDMC!~merlin@irc.l0cal.net> has quit IRC (*.net *.split)
[19:28:03] *** bjoops <bjoops!~bjoo@trippin.online> has quit IRC (*.net *.split)
[19:28:03] *** Shrooms <Shrooms!~Shrooms@192.187.121.98> has quit IRC (*.net *.split)
[19:28:03] *** grug <grug!~grug@45.62.228.154> has quit IRC (*.net *.split)
[19:28:03] *** Armen <Armen!~Armen138@i.am.armen138.com> has quit IRC (*.net *.split)
[19:28:03] *** AciD- <AciD-!~fu@crediz.io> has quit IRC (*.net *.split)
[19:28:03] *** cruxeternus <cruxeternus!~cruxetern@secspeed.com> has quit IRC (*.net *.split)
[19:28:03] *** davlefou <davlefou!~davlefou@unaffiliated/davlefou> has quit IRC (*.net *.split)
[19:28:03] *** felowe <felowe!sid180109@gateway/web/irccloud.com/x-htxchvzzzypgrwgj> has quit IRC (*.net *.split)
[19:28:07] *** thomas1_ <thomas1_!~thomas@freenode/staff/thomas> has joined #angularjs
[19:28:16] *** blindbox <blindbox!~blindbox@115.135.221.238> has joined #angularjs
[19:28:37] *** busticated <busticated!~textual@c-24-21-207-146.hsd1.or.comcast.net> has joined #angularjs
[19:30:36] *** GreenJello____ <GreenJello____!~GreenJell@ip68-106-249-139.ph.ph.cox.net> has joined #angularjs
[19:32:07] *** deeb <deeb!~dee@a85-139-8-162.cpe.netcabo.pt> has joined #angularjs
[19:32:24] <wrkrcoop> im trying to set up AB testing … im not sure how to set up the dev environment … should i have two apps and just build both? if so i have to worry about having inconsistent code
[19:32:37] *** fedenunez <fedenunez!~fede@r167-61-16-59.dialup.adsl.anteldata.net.uy> has quit IRC (*.net *.split)
[19:32:37] *** thomas1 <thomas1!~thomas@freenode/staff/thomas> has quit IRC (*.net *.split)
[19:32:38] *** jrodicus_ <jrodicus_!~jrodicus@shell.jcjones.me> has quit IRC (*.net *.split)
[19:32:52] *** silverdu1t <silverdu1t!~silverdus@curve.sypherz.com> has joined #angularjs
[19:32:52] *** anjumkaiser <anjumkaiser!~anjumkais@39.50.233.136> has quit IRC (Ping timeout: 272 seconds)
[19:32:52] *** kwmiebach__ <kwmiebach__!sid16855@gateway/web/irccloud.com/x-ljjtiykapwiumoow> has quit IRC (Ping timeout: 272 seconds)
[19:32:52] *** XSkinner <XSkinner!XSkinner@A.Land.Down.Under.PanicBNC.net> has quit IRC (Ping timeout: 272 seconds)
[19:32:52] *** m_gol <m_gol!m_gol@gateway/shell/jquery.com/x-dazaasuduwxhnaae> has quit IRC (Ping timeout: 272 seconds)
[19:32:52] *** ikevin_ <ikevin_!sid16762@gateway/web/irccloud.com/x-xztxfahjoqxmmnau> has quit IRC (Ping timeout: 272 seconds)
[19:32:52] *** dboskovic <dboskovic!sid12178@gateway/web/irccloud.com/x-naxdnxbittzfazhp> has quit IRC (Ping timeout: 272 seconds)
[19:32:53] *** ajpiano <ajpiano!~ajpiano@li98-57.members.linode.com> has quit IRC (Ping timeout: 272 seconds)
[19:32:53] *** Immutef <Immutef!sid17978@gateway/web/irccloud.com/x-cuzibutmqagvvkds> has quit IRC (Ping timeout: 272 seconds)
[19:32:53] *** roachiepoopoo <roachiepoopoo!~roachiepo@50.168.15.227> has quit IRC (Ping timeout: 272 seconds)
[19:32:53] *** marr <marr!~ccc@159-205-243-117.adsl.inetia.pl> has quit IRC (Ping timeout: 272 seconds)
[19:32:53] *** MerlinDMC <MerlinDMC!~merlin@irc.l0cal.net> has quit IRC (Ping timeout: 272 seconds)
[19:32:53] *** RangerRick <RangerRick!~quassel@cpe-2606-A000-45C2-6901-82EE-73FF-FE9F-967E.dyn6.twc.com> has quit IRC (Quit: No Ping reply in 180 seconds.)
[19:32:53] *** MJD <MJD!~quassel@scadrial.mjdsystems.ca> has quit IRC (Read error: Connection reset by peer)
[19:32:53] *** cyan__ <cyan__!~cyan@217.170.162.68> has joined #angularjs
[19:32:54] *** WillMoogle <WillMoogle!sid38138@gateway/web/irccloud.com/x-mhxezwxmtbmqoicl> has quit IRC (Ping timeout: 272 seconds)
[19:32:54] *** StanMarsh <StanMarsh!~StanMarsh@46.166.190.161> has quit IRC (Ping timeout: 272 seconds)
[19:32:54] *** Klumben <Klumben!Nsaiswatch@elmo.stole-your.pw> has quit IRC (Ping timeout: 272 seconds)
[19:32:55] *** pulaski <pulaski!~pulaski@2604:180:2:e74::5a38> has quit IRC (Ping timeout: 272 seconds)
[19:32:55] *** ajk <ajk!~ajk@loris.speckledmonkey.com> has quit IRC (Ping timeout: 272 seconds)
[19:32:55] *** ngWalrus <ngWalrus!~lammis@95.85.58.114> has quit IRC (Ping timeout: 272 seconds)
[19:32:55] *** marr <marr!~ccc@159-205-243-117.adsl.inetia.pl> has joined #angularjs
[19:32:56] *** ajpiano <ajpiano!~ajpiano@li98-57.members.linode.com> has joined #angularjs
[19:33:10] *** roachiep- <roachiep-!~roachiepo@50.168.15.227> has joined #angularjs
[19:33:17] *** busticated <busticated!~textual@c-24-21-207-146.hsd1.or.comcast.net> has quit IRC (Ping timeout: 272 seconds)
[19:33:18] *** monokrome <monokrome!~monokrome@54.88.139.115> has quit IRC (Ping timeout: 272 seconds)
[19:33:18] *** hidwid <hidwid!~howitdo@cpe-172-73-18-120.carolina.res.rr.com> has quit IRC (Ping timeout: 272 seconds)
[19:33:18] *** AaronDreamcoin <AaronDreamcoin!AaronDream@debian.fewona.net> has quit IRC (Ping timeout: 272 seconds)
[19:33:18] *** plutoniix <plutoniix!~q@node-rg4.pool-180-180.dynamic.totbb.net> has quit IRC (Ping timeout: 272 seconds)
[19:33:18] *** Ziberius <Ziberius!~IceChat78@190-82-83-94.static.tie.cl> has quit IRC (Ping timeout: 272 seconds)
[19:33:19] *** itamarjp <itamarjp!~itamar@fedora/itamarjp> has quit IRC (Ping timeout: 272 seconds)
[19:33:19] *** Danielss89 <Danielss89!~danielss8@server1.dasprids.de> has quit IRC (Ping timeout: 272 seconds)
[19:33:22] *** fuchstronaut <fuchstronaut!~fuchstron@unaffiliated/fuchstronaut> has joined #angularjs
[19:33:28] *** RangerRick <RangerRick!~quassel@cpe-2606-A000-45C2-6901-82EE-73FF-FE9F-967E.dyn6.twc.com> has joined #angularjs
[19:33:36] *** ggherdov <ggherdov!sid11402@gateway/web/irccloud.com/x-hjpqzpwxevvpwpra> has joined #angularjs
[19:33:37] *** Danielss89 <Danielss89!~danielss8@server1.dasprids.de> has joined #angularjs
[19:33:55] *** csharper <csharper!~csharper@31.6.42.47> has quit IRC (Ping timeout: 264 seconds)
[19:33:56] *** quakephil_ <quakephil_!~smuxi@cpe-69-200-246-39.nyc.res.rr.com> has quit IRC (Ping timeout: 264 seconds)
[19:33:56] *** amitev <amitev!~amitev@212.25.36.115> has quit IRC (Read error: Connection reset by peer)
[19:33:56] *** AciD` <AciD`!~fu@crediz.io> has joined #angularjs
[19:33:57] *** csharper <csharper!~csharper@31.6.42.47> has joined #angularjs
[19:33:57] *** quakephil <quakephil!~smuxi@cpe-69-200-246-39.nyc.res.rr.com> has joined #angularjs
[19:33:57] *** amitev <amitev!~amitev@212.25.36.115> has joined #angularjs
[19:33:58] *** TodPunk_ is now known as TodPunk
[19:33:58] *** GreenJello___ <GreenJello___!~GreenJell@ip68-106-249-139.ph.ph.cox.net> has quit IRC (Ping timeout: 264 seconds)
[19:33:59] *** atomi_ <atomi_!~atomi@71-83-179-177.dhcp.lnbh.ca.charter.com> has quit IRC (Ping timeout: 264 seconds)
[19:33:59] *** Alina-malina <Alina-malina!~Alina-mal@unaffiliated/alina-malina> has quit IRC (Ping timeout: 264 seconds)
[19:34:00] *** HalfEatenPie_ <HalfEatenPie_!~HalfEaten@37.247.49.127> has quit IRC (Ping timeout: 264 seconds)
[19:34:07] *** skullcrasher <skullcrasher!~skullcras@v22015112742129272.yourvserver.net> has joined #angularjs
[19:34:10] *** AciD` <AciD`!~fu@crediz.io> has quit IRC (Changing host)
[19:34:10] *** AciD` <AciD`!~fu@unaffiliated/acid/x-7368316> has joined #angularjs
[19:34:13] *** MerlinDMC <MerlinDMC!~merlin@irc.l0cal.net> has joined #angularjs
[19:34:14] *** pulaski <pulaski!~pulaski@2604:180:2:e74::5a38> has joined #angularjs
[19:34:20] *** MJD <MJD!~quassel@scadrial.mjdsystems.ca> has joined #angularjs
[19:34:25] *** ajk <ajk!~ajk@loris.speckledmonkey.com> has joined #angularjs
[19:35:00] *** m_gol <m_gol!m_gol@gateway/shell/jquery.com/x-jkhtwtkpsvhtmmxx> has joined #angularjs
[19:35:13] *** cruxeternus <cruxeternus!~cruxetern@secspeed.com> has joined #angularjs
[19:35:24] *** Klumben <Klumben!Nsaiswatch@elmo.stole-your.pw> has joined #angularjs
[19:35:30] <jpcercal> Hi guys..
[19:35:31] *** joevandyk <joevandyk!~ubuntu@ec2-54-235-235-220.compute-1.amazonaws.com> has joined #angularjs
[19:35:53] *** plutoniix <plutoniix!~q@node-rg4.pool-180-180.dynamic.totbb.net> has joined #angularjs
[19:35:56] *** Alina-malina <Alina-malina!~Alina-mal@37.157.216.181> has joined #angularjs
[19:35:59] *** StanMars1 <StanMars1!~StanMarsh@gateway/vpn/privateinternetaccess/stanmarsh> has joined #angularjs
[19:36:22] *** itamarjp <itamarjp!~itamar@fedora/itamarjp> has joined #angularjs
[19:36:26] *** AaronDreamcoin <AaronDreamcoin!AaronDream@debian.fewona.net> has joined #angularjs
[19:36:47] *** anjumkaiser <anjumkaiser!~anjumkais@39.50.233.136> has joined #angularjs
[19:37:05] <jpcercal> I'm working with AngularJS, but I don't know what are happens.. I create a module and three controllers that replies to routes (using ng-route), "/", "/login" and "/logout".
[19:37:15] *** monokrome <monokrome!~monokrome@54.88.139.115> has joined #angularjs
[19:37:18] *** LeBlaaanc <LeBlaaanc!~LeBlaaanc@47.188.236.163> has joined #angularjs
[19:37:21] *** Armen <Armen!~Armen138@i.am.armen138.com> has joined #angularjs
[19:37:45] <jpcercal> And I put to these controllers just a console.log("Name of controller")
[19:37:52] *** Alina-malina <Alina-malina!~Alina-mal@37.157.216.181> has quit IRC (Changing host)
[19:37:52] *** Alina-malina <Alina-malina!~Alina-mal@unaffiliated/alina-malina> has joined #angularjs
[19:38:05] *** busticated <busticated!~textual@c-24-21-207-146.hsd1.or.comcast.net> has joined #angularjs
[19:38:20] *** Kamuela <Kamuela!sid111576@gateway/web/irccloud.com/x-ibemarlzoogthtxk> has joined #angularjs
[19:38:36] *** BigBangUDR <BigBangUDR!~Thunderbi@2405:205:1182:b01b:5c3e:300e:cf03:689e> has joined #angularjs
[19:38:39] <jpcercal> So, when I try to see this logs on console of browser I can't see nothing.. Could you help me?
[19:38:40] *** csk <csk!~csk@191.126.151.165> has quit IRC (Quit: ZZZzzz…)
[19:38:49] *** clode_______ <clode_______!sid40776@gateway/web/irccloud.com/x-xkdkeuwfjxbbsaem> has joined #angularjs
[19:39:07] *** atomi <atomi!~atomi@71-83-179-177.dhcp.lnbh.ca.charter.com> has joined #angularjs
[19:39:12] *** ngWalrus <ngWalrus!~lammis@95.85.58.114> has joined #angularjs
[19:39:40] <wrkrcoop> jpcercal: show us the code
[19:39:51] <wrkrcoop> you have to add the controller to the HTML
[19:39:54] <wrkrcoop> with ng-controller
[19:39:58] <wrkrcoop> did u do that?
[19:40:01] *** uru|away is now known as uru
[19:40:02] *** drowngodx <drowngodx!sid162816@gateway/web/irccloud.com/x-wrsuegwheeimchll> has joined #angularjs
[19:40:03] <wrkrcoop> then specify the controller in the route
[19:40:10] *** kutenai <kutenai!sid80151@gateway/web/irccloud.com/x-tsavneesxwcjhluo> has joined #angularjs
[19:40:10] *** cmosguy <cmosguy!sid130111@gateway/web/irccloud.com/x-coscsnxizcpecxut> has joined #angularjs
[19:40:21] *** phtes_ <phtes_!sid43321@gateway/web/irccloud.com/x-plxekzbczgbrrbsv> has joined #angularjs
[19:40:22] <wrkrcoop> HURRY
[19:40:26] *** joshtau <joshtau!sid17334@gateway/web/irccloud.com/x-vsothwqxfycwphox> has joined #angularjs
[19:40:55] *** elijah <elijah!sid21431@gateway/web/irccloud.com/x-oqchhuoeorfwahjp> has joined #angularjs
[19:41:00] *** skullcrasher <skullcrasher!~skullcras@v22015112742129272.yourvserver.net> has quit IRC (Ping timeout: 260 seconds)
[19:41:05] *** ish <ish!sid1441@gateway/web/irccloud.com/x-mbxuxosvuiwibvmw> has joined #angularjs
[19:41:07] *** BigBangUDR <BigBangUDR!~Thunderbi@2405:205:1182:b01b:5c3e:300e:cf03:689e> has quit IRC (Client Quit)
[19:41:41] *** HalfEatenPie <HalfEatenPie!~HalfEaten@unaffiliated/halfeatenpie> has joined #angularjs
[19:41:53] <jpcercal> wrkrcoop: I put the controller using controller key as the second paremeter to the $routeProvider
[19:42:09] <wrkrcoop> its hard to help without the code
[19:42:13] *** Garfield-fr_ is now known as Garfield-fr
[19:42:13] *** Garfield-fr <Garfield-fr!~Garfield-@178.237.80.10> has quit IRC (Changing host)
[19:42:13] *** Garfield-fr <Garfield-fr!~Garfield-@unaffiliated/garfield-fr> has joined #angularjs
[19:42:22] <jpcercal> just a minute I will put this code on fiddle
[19:42:26] <wrkrcoop> k
[19:42:40] *** fuchstronaut <fuchstronaut!~fuchstron@unaffiliated/fuchstronaut> has quit IRC (Remote host closed the connection)
[19:42:47] *** fuchstronaut <fuchstronaut!~fuchstron@unaffiliated/fuchstronaut> has joined #angularjs
[19:43:34] *** LeBlaaanc <LeBlaaanc!~LeBlaaanc@47.188.236.163> has quit IRC (Quit: My Mac has gone to sleep. ZZZzzz…)
[19:43:44] *** moogumbo <moogumbo!sid31999@gateway/web/irccloud.com/x-safbcybplbmxemfp> has joined #angularjs
[19:44:30] *** aendrew <aendrew!sid117843@gateway/web/irccloud.com/x-jwfuuzgacxftozhb> has joined #angularjs
[19:44:52] *** beckyconning_ <beckyconning_!sid31604@gateway/web/irccloud.com/x-mdwrpdkhgxwufuds> has joined #angularjs
[19:44:54] *** itaipu_ <itaipu_!~Marco@168.121.96.22> has quit IRC (Ping timeout: 264 seconds)
[19:45:09] *** ulkesh <ulkesh!sid140298@gateway/web/irccloud.com/x-okznlehtfzmpodgl> has joined #angularjs
[19:45:24] *** JackMc <JackMc!sid85402@gateway/web/irccloud.com/x-vtkximqpdbgoxboa> has joined #angularjs
[19:45:44] <wrkrcoop> cmon faster
[19:45:48] *** DannyFritz <DannyFritz!sid182043@gateway/web/irccloud.com/x-mejsmipnxufxuwyj> has joined #angularjs
[19:46:58] <magellanicloud_> chill, maybe he will find a solution on his own by creating the fiddle
[19:47:20] *** d10n-work <d10n-work!uid37161@gateway/web/irccloud.com/x-htmqoaucokyhdkyr> has joined #angularjs
[19:47:22] *** klobucar <klobucar!sid1012@gateway/web/irccloud.com/x-atttkqmyjtyyctuu> has joined #angularjs
[19:47:23] *** andersh <andersh!sid106643@gateway/web/irccloud.com/x-kicotrxqlqhynhvv> has joined #angularjs
[19:47:36] *** snkcld <snkcld!sid54536@gateway/web/irccloud.com/x-hjjzmamfpjpobwxi> has joined #angularjs
[19:47:53] *** ikevin_ <ikevin_!sid16762@gateway/web/irccloud.com/x-dlhuesaqbfqefqgp> has joined #angularjs
[19:48:34] *** prettymuchbryce <prettymuchbryce!sid52793@gateway/web/irccloud.com/x-ycrfixacfhdpycts> has joined #angularjs
[19:49:10] *** mischat <mischat!~mischat@62.252.235.234> has quit IRC (Remote host closed the connection)
[19:49:10] *** cliluw <cliluw!~cliluw@unaffiliated/cliluw> has joined #angularjs
[19:49:28] *** jhadvig <jhadvig!~jhadvig@78-141-120-86.dynamic.orange.sk> has joined #angularjs
[19:50:09] *** anjumkaiser <anjumkaiser!~anjumkais@39.50.233.136> has quit IRC (Quit: Leaving.)
[19:50:58] <wrkrcoop> i h8 chilling
[19:51:34] *** cory___ <cory___!sid180108@gateway/web/irccloud.com/x-yffcalzwdrxuhdlj> has joined #angularjs
[19:52:35] <vipul_> BreadCrumbs if loaded in child component are not loading on default child on first navigation. any clue?
[19:52:39] *** techntoke_ <techntoke_!sid124863@gateway/web/irccloud.com/x-llccsulgljgvdbyg> has joined #angularjs
[19:52:46] *** sptq <sptq!sid152696@gateway/web/irccloud.com/x-fdagwnzbqbmefjku> has joined #angularjs
[19:52:51] *** al-damiri <al-damiri!uid142631@gateway/web/irccloud.com/x-osnwsyxeldulnyex> has joined #angularjs
[19:53:18] *** solexious <solexious!sid331@gateway/web/irccloud.com/x-kqxnfoafmbcpzxah> has joined #angularjs
[19:53:24] *** Immutef <Immutef!sid17978@gateway/web/irccloud.com/x-nroclnijnbhmwnlx> has joined #angularjs
[19:53:41] *** kwmiebach__ <kwmiebach__!sid16855@gateway/web/irccloud.com/x-diqdktgdvxlszynu> has joined #angularjs
[19:53:49] *** Ownix <Ownix!sid11917@gateway/web/irccloud.com/x-mntlmvktjrocymgq> has joined #angularjs
[19:53:53] *** gojira__ <gojira__!sid120399@gateway/web/irccloud.com/x-qxnwdctsiprzytvv> has joined #angularjs
[19:54:28] *** xtreamwayz <xtreamwayz!sid141190@gateway/web/irccloud.com/x-yfqqifeamwxkhkid> has joined #angularjs
[19:54:44] *** Harlan44 <Harlan44!~james@2601:1c0:6b01:74f0:7891:2ad1:fb7c:3485> has joined #angularjs
[19:55:03] *** zero7 <zero7!sid10708@gateway/web/irccloud.com/x-rbmlxxjlkmeyirdp> has joined #angularjs
[19:55:23] *** jimmyff <jimmyff!sid11140@gateway/web/irccloud.com/x-yyfmtkopqfrympdc> has joined #angularjs
[19:55:28] *** jnap_ <jnap_!sid41868@gateway/web/irccloud.com/x-qvptsngefqydqxed> has joined #angularjs
[19:58:20] *** fuchstronaut <fuchstronaut!~fuchstron@unaffiliated/fuchstronaut> has quit IRC (Remote host closed the connection)
[19:58:21] *** harlan_44 <harlan_44!~james@2601:1c0:6b01:74f0:7891:2ad1:fb7c:3485> has quit IRC (Ping timeout: 265 seconds)
[19:59:45] *** edrocks <edrocks!~edrocks@66-194-206-178.static.twtelecom.net> has joined #angularjs
[20:01:47] *** hashrocket <hashrocket!uid27380@gateway/web/irccloud.com/x-ehduffhisjldsdho> has joined #angularjs
[20:01:47] *** NTrash_ <NTrash_!~user@108.61.123.71> has left #angularjs ("Konversation terminated!")
[20:02:08] *** akkonrad <akkonrad!~akkonrad3@gae109.internetdsl.tpnet.pl> has quit IRC (Ping timeout: 252 seconds)
[20:03:52] *** edrocks <edrocks!~edrocks@66-194-206-178.static.twtelecom.net> has quit IRC (Ping timeout: 244 seconds)
[20:04:30] *** vrockai <vrockai!~vrockai@ip-89-102-10-111.net.upcbroadband.cz> has quit IRC (Remote host closed the connection)
[20:05:13] *** itaipu <itaipu!~Marco@168.121.96.22> has joined #angularjs
[20:05:28] *** cspotcode <cspotcode!uid80131@gateway/web/irccloud.com/x-crebbfktpyiruabc> has joined #angularjs
[20:05:40] *** wizonesolutions <wizonesolutions!sid27627@drupal.org/user/739994/view> has joined #angularjs
[20:06:58] *** littlebearz__ <littlebearz__!littlebear@2607:fea8:a220:7e3:43c:8cea:d765:ba61> has quit IRC (Read error: Connection reset by peer)
[20:07:22] <jpcercal> wrkrcoop: pardon my delay in responding.. here is the fiddle: https://jsfiddle.net/hkf7wvj6/15/
[20:07:37] *** busticat_ <busticat_!~textual@c-24-21-207-146.hsd1.or.comcast.net> has joined #angularjs
[20:07:43] *** littlebearz__ <littlebearz__!littlebear@2607:fea8:a220:7e3:43c:8cea:d765:ba61> has joined #angularjs
[20:07:46] *** whitebook <whitebook!~whitebook@ool-182e2e18.dyn.optonline.net> has joined #angularjs
[20:08:17] *** amundj <amundj!~textual@185.13.92.20> has joined #angularjs
[20:08:20] <wrkrcoop> that took forever
[20:09:09] *** felowe <felowe!sid180109@gateway/web/irccloud.com/x-bwshbqllaizclfcn> has joined #angularjs
[20:09:44] <wrkrcoop> well first you can chain things together
[20:09:52] *** blackwind_123 <blackwind_123!~IceChat9@61.1.134.146> has quit IRC (Ping timeout: 255 seconds)
[20:09:52] *** forrestv <forrestv!forrestv@unaffiliated/forrestv> has quit IRC (Ping timeout: 255 seconds)
[20:09:52] *** whiteboo_ <whiteboo_!~whitebook@ool-182e2e18.dyn.optonline.net> has quit IRC (Ping timeout: 255 seconds)
[20:10:04] <wrkrcoop> i bet it is due to how your are importing your code
[20:10:11] <wrkrcoop> and how you are exporting it
[20:10:16] <wrkrcoop> show how you are importing and exporting your code
[20:10:17] *** dboskovic <dboskovic!sid12178@gateway/web/irccloud.com/x-pebjtyvdjeejdfmi> has joined #angularjs
[20:10:18] *** tabakhase <tabakhase!tabakhase@unaffiliated/tabakhase> has joined #angularjs
[20:10:26] *** hashrocket <hashrocket!uid27380@gateway/web/irccloud.com/x-ehduffhisjldsdho> has quit IRC (Ping timeout: 272 seconds)
[20:10:26] *** xtreamwayz <xtreamwayz!sid141190@gateway/web/irccloud.com/x-yfqqifeamwxkhkid> has quit IRC (Ping timeout: 272 seconds)
[20:10:26] *** aendrew <aendrew!sid117843@gateway/web/irccloud.com/x-jwfuuzgacxftozhb> has quit IRC (Ping timeout: 272 seconds)
[20:10:26] *** clode_______ <clode_______!sid40776@gateway/web/irccloud.com/x-xkdkeuwfjxbbsaem> has quit IRC (Ping timeout: 272 seconds)
[20:10:26] *** Klumben <Klumben!Nsaiswatch@elmo.stole-your.pw> has quit IRC (Ping timeout: 272 seconds)
[20:10:26] *** pulaski <pulaski!~pulaski@2604:180:2:e74::5a38> has quit IRC (Ping timeout: 272 seconds)
[20:10:26] *** ggherdov <ggherdov!sid11402@gateway/web/irccloud.com/x-hjpqzpwxevvpwpra> has quit IRC (Ping timeout: 272 seconds)
[20:10:27] *** pulaski <pulaski!~pulaski@2604:180:2:e74::5a38> has joined #angularjs
[20:10:27] *** alphonse23_ <alphonse23_!sid34238@gateway/web/irccloud.com/x-lcpfdvzyhfuvqujv> has joined #angularjs
[20:10:27] *** amatecha <amatecha!sid10006@gateway/web/irccloud.com/x-rrziefnkbmgxxrtq> has joined #angularjs
[20:10:27] *** sptq <sptq!sid152696@gateway/web/irccloud.com/x-fdagwnzbqbmefjku> has quit IRC (Ping timeout: 272 seconds)
[20:10:28] *** klobucar <klobucar!sid1012@gateway/web/irccloud.com/x-atttkqmyjtyyctuu> has quit IRC (Ping timeout: 272 seconds)
[20:10:28] *** drowngodx <drowngodx!sid162816@gateway/web/irccloud.com/x-wrsuegwheeimchll> has quit IRC (Ping timeout: 272 seconds)
[20:10:29] *** MerlinDMC <MerlinDMC!~merlin@irc.l0cal.net> has quit IRC (Ping timeout: 272 seconds)
[20:10:30] *** hashrocket <hashrocket!uid27380@gateway/web/irccloud.com/session> has joined #angularjs
[20:10:30] *** Ownix <Ownix!sid11917@gateway/web/irccloud.com/x-mntlmvktjrocymgq> has quit IRC (Ping timeout: 265 seconds)
[20:10:31] *** hashrocket <hashrocket!uid27380@gateway/web/irccloud.com/session> has quit IRC (Changing host)
[20:10:31] *** hashrocket <hashrocket!uid27380@gateway/web/irccloud.com/x-ogpriwoueqjycgcd> has joined #angularjs
[20:10:39] *** cspotcode <cspotcode!uid80131@gateway/web/irccloud.com/x-crebbfktpyiruabc> has quit IRC (Ping timeout: 272 seconds)
[20:10:40] *** ulkesh <ulkesh!sid140298@gateway/web/irccloud.com/x-okznlehtfzmpodgl> has quit IRC (Ping timeout: 272 seconds)
[20:10:40] *** JackMc <JackMc!sid85402@gateway/web/irccloud.com/x-vtkximqpdbgoxboa> has quit IRC (Ping timeout: 272 seconds)
[20:10:40] *** amundj_ <amundj_!~textual@185.13.92.20> has quit IRC (Ping timeout: 255 seconds)
[20:10:41] *** cyan__ <cyan__!~cyan@217.170.162.68> has quit IRC (Ping timeout: 272 seconds)
[20:10:41] *** ajpiano <ajpiano!~ajpiano@li98-57.members.linode.com> has quit IRC (Ping timeout: 272 seconds)
[20:10:41] *** silverdu1t <silverdu1t!~silverdus@curve.sypherz.com> has quit IRC (Ping timeout: 272 seconds)
[20:10:42] *** Mr_Pancake <Mr_Pancake!~Pancake@2001:41d0:8:e386::1> has quit IRC (Ping timeout: 272 seconds)
[20:10:43] *** ajk27 <ajk27!~ajk@loris.speckledmonkey.com> has joined #angularjs
[20:10:46] *** DieguezZ <DieguezZ!~textual@82.159.21.250.dyn.user.ono.com> has joined #angularjs
[20:10:46] *** silverdust <silverdust!~silverdus@curve.sypherz.com> has joined #angularjs
[20:10:47] *** ajpiano <ajpiano!~ajpiano@li98-57.members.linode.com> has joined #angularjs
[20:10:48] *** MerlinDMC <MerlinDMC!~merlin@irc.l0cal.net> has joined #angularjs
[20:10:50] *** Klumben <Klumben!Nsaiswatch@elmo.stole-your.pw> has joined #angularjs
[20:10:55] *** wizonesolutions <wizonesolutions!sid27627@drupal.org/user/739994/view> has quit IRC (Ping timeout: 265 seconds)
[20:11:08] *** quakephil_ <quakephil_!~smuxi@cpe-69-200-246-39.nyc.res.rr.com> has joined #angularjs
[20:11:11] *** silverdust is now known as Guest74338
[20:11:12] <wrkrcoop> if you export default then you can import without {}
[20:11:16] *** cyan__ <cyan__!~cyan@217.170.162.68> has joined #angularjs
[20:11:16] *** WillMoogle <WillMoogle!sid38138@gateway/web/irccloud.com/x-ijhcecmnfbpdnqkr> has joined #angularjs
[20:11:18] *** RangerRick <RangerRick!~quassel@cpe-2606-A000-45C2-6901-82EE-73FF-FE9F-967E.dyn6.twc.com> has quit IRC (Ping timeout: 272 seconds)
[20:11:18] *** mven <mven!~textual@32.97.110.57> has quit IRC (Ping timeout: 272 seconds)
[20:11:20] <wrkrcoop> if you dont export default you have to import with {}
[20:11:22] *** AciD- <AciD-!~fu@crediz.io> has joined #angularjs
[20:11:26] *** tabakhase__ <tabakhase__!tabakhase@irc.s.bitase.net> has quit IRC (Ping timeout: 264 seconds)
[20:11:28] *** AaronDreamcoin <AaronDreamcoin!AaronDream@debian.fewona.net> has quit IRC (Ping timeout: 264 seconds)
[20:11:28] *** ajk <ajk!~ajk@loris.speckledmonkey.com> has quit IRC (Ping timeout: 264 seconds)
[20:11:29] *** sfix <sfix!~gtierney@unaffiliated/sfix> has quit IRC (Ping timeout: 264 seconds)
[20:11:29] *** blackwind_123 <blackwind_123!~IceChat9@61.1.134.146> has joined #angularjs
[20:11:30] *** gojira__ <gojira__!sid120399@gateway/web/irccloud.com/x-qxnwdctsiprzytvv> has quit IRC (Ping timeout: 264 seconds)
[20:11:30] *** kwmiebach__ <kwmiebach__!sid16855@gateway/web/irccloud.com/x-diqdktgdvxlszynu> has quit IRC (Ping timeout: 264 seconds)
[20:11:30] *** busticated <busticated!~textual@c-24-21-207-146.hsd1.or.comcast.net> has quit IRC (Ping timeout: 264 seconds)
[20:11:31] *** quakephil <quakephil!~smuxi@cpe-69-200-246-39.nyc.res.rr.com> has quit IRC (Ping timeout: 264 seconds)
[20:11:31] *** AciD` <AciD`!~fu@unaffiliated/acid/x-7368316> has quit IRC (Ping timeout: 264 seconds)
[20:11:31] *** Elisha <Elisha!~elisha@tm.213.143.68.74.nm.telemach.net> has quit IRC (Ping timeout: 264 seconds)
[20:11:31] *** fcanela_ <fcanela_!~fcanela@unaffiliated/fcanela> has quit IRC (Ping timeout: 264 seconds)
[20:11:31] *** eMBee <eMBee!~eMBee@foresight/developer/pike/programmer> has quit IRC (Ping timeout: 264 seconds)
[20:11:40] *** XSkinner <XSkinner!XSkinner@A.Land.Down.Under.PanicBNC.net> has joined #angularjs
[20:11:55] *** xtreamwayz <xtreamwayz!sid141190@gateway/web/irccloud.com/x-tvbnqkqjkofufcvt> has joined #angularjs
[20:12:26] *** sfix <sfix!~gtierney@unaffiliated/sfix> has joined #angularjs
[20:12:29] *** Mr_Pancake <Mr_Pancake!~Pancake@2001:41d0:8:e386::1> has joined #angularjs
[20:12:33] *** RangerRick <RangerRick!~quassel@cpe-2606-A000-45C2-6901-82EE-73FF-FE9F-967E.dyn6.twc.com> has joined #angularjs
[20:12:53] *** fcanela <fcanela!~fcanela@unaffiliated/fcanela> has joined #angularjs
[20:12:54] *** mven <mven!~textual@32.97.110.57> has joined #angularjs
[20:12:56] *** mven <mven!~textual@32.97.110.57> has quit IRC (Excess Flood)
[20:13:06] *** beckyconning_ <beckyconning_!sid31604@gateway/web/irccloud.com/x-mdwrpdkhgxwufuds> has quit IRC (Ping timeout: 269 seconds)
[20:13:07] *** Elisha <Elisha!~elisha@tm.213.143.68.74.nm.telemach.net> has joined #angularjs
[20:13:32] *** star_prone <star_prone!~sviatovig@188.25.28.123> has quit IRC (Remote host closed the connection)
[20:14:37] *** errietta is now known as erry
[20:15:21] *** Harlan44 <Harlan44!~james@2601:1c0:6b01:74f0:7891:2ad1:fb7c:3485> has quit IRC (Read error: Connection reset by peer)
[20:15:39] *** harlan_44 <harlan_44!~james@2601:1c0:6b01:74f0:7891:2ad1:fb7c:3485> has joined #angularjs
[20:15:39] *** clode_______ <clode_______!sid40776@gateway/web/irccloud.com/x-rjpmipgstdeiaxlr> has joined #angularjs
[20:16:12] *** Prophesi <Prophesi!~Prophesi@host-68-169-169-183.VABOLT2.epbfi.com> has quit IRC (Quit: Leaving)
[20:16:23] *** ggherdov <ggherdov!sid11402@gateway/web/irccloud.com/x-wcyxgmwwtijmhrqx> has joined #angularjs
[20:18:27] *** roek <roek!sid15176@gateway/web/irccloud.com/x-qnxpepukdyhpwivn> has joined #angularjs
[20:18:53] *** klobucar <klobucar!sid1012@gateway/web/irccloud.com/x-dqgxjzggqdtebcbk> has joined #angularjs
[20:18:58] <Snugglebash> Anyone here used systemjs? I keep getting catch find variable: SystemJS
[20:19:10] *** Ownix <Ownix!sid11917@gateway/web/irccloud.com/x-cogqhddvmkraxavf> has joined #angularjs
[20:19:12] *** Z3R0 <Z3R0!~mischief@24.27.227.128> has quit IRC (Quit: Z3R0)
[20:20:17] *** ajpiano_ <ajpiano_!~ajpiano@li98-57.members.linode.com> has joined #angularjs
[20:20:56] *** AndrewIsh <AndrewIsh!~andrew@mrboom.plus.com> has quit IRC (Ping timeout: 272 seconds)
[20:20:56] *** kwmiebach__ <kwmiebach__!sid16855@gateway/web/irccloud.com/session> has joined #angularjs
[20:20:57] *** gojira__ <gojira__!sid120399@gateway/web/irccloud.com/session> has joined #angularjs
[20:20:57] *** sptq <sptq!sid152696@gateway/web/irccloud.com/session> has joined #angularjs
[20:20:57] *** quakephil_ <quakephil_!~smuxi@cpe-69-200-246-39.nyc.res.rr.com> has quit IRC (Ping timeout: 272 seconds)
[20:20:57] *** beckyconning_ <beckyconning_!sid31604@gateway/web/irccloud.com/session> has joined #angularjs
[20:20:57] *** ajpiano <ajpiano!~ajpiano@li98-57.members.linode.com> has quit IRC (Excess Flood)
[20:20:58] *** ulkesh <ulkesh!sid140298@gateway/web/irccloud.com/session> has joined #angularjs
[20:20:58] *** drowngodx <drowngodx!sid162816@gateway/web/irccloud.com/session> has joined #angularjs
[20:20:58] *** forrestv <forrestv!forrestv@unaffiliated/forrestv> has joined #angularjs
[20:20:58] *** aendrew <aendrew!sid117843@gateway/web/irccloud.com/session> has joined #angularjs
[20:20:59] *** itaipu <itaipu!~Marco@168.121.96.22> has quit IRC (Ping timeout: 272 seconds)
[20:20:59] *** ggherdov <ggherdov!sid11402@gateway/web/irccloud.com/x-wcyxgmwwtijmhrqx> has quit IRC (Excess Flood)
[20:21:00] *** kwmiebach__ <kwmiebach__!sid16855@gateway/web/irccloud.com/session> has quit IRC (Changing host)
[20:21:00] *** kwmiebach__ <kwmiebach__!sid16855@gateway/web/irccloud.com/x-ykpsekjocalcjbjz> has joined #angularjs
[20:21:00] *** gojira__ <gojira__!sid120399@gateway/web/irccloud.com/session> has quit IRC (Changing host)
[20:21:00] *** gojira__ <gojira__!sid120399@gateway/web/irccloud.com/x-mcqaynyevnaeslcn> has joined #angularjs
[20:21:00] *** sptq <sptq!sid152696@gateway/web/irccloud.com/session> has quit IRC (Changing host)
[20:21:00] *** sptq <sptq!sid152696@gateway/web/irccloud.com/x-ponqypdqzegrtczo> has joined #angularjs
[20:21:00] *** ulkesh <ulkesh!sid140298@gateway/web/irccloud.com/session> has quit IRC (Changing host)
[20:21:00] *** ulkesh <ulkesh!sid140298@gateway/web/irccloud.com/x-dsgmabykgasxbgoo> has joined #angularjs
[20:21:00] *** beckyconning_ <beckyconning_!sid31604@gateway/web/irccloud.com/session> has quit IRC (Changing host)
[20:21:00] *** beckyconning_ <beckyconning_!sid31604@gateway/web/irccloud.com/x-elisjgosqrgsrwnu> has joined #angularjs
[20:21:00] *** aendrew <aendrew!sid117843@gateway/web/irccloud.com/session> has quit IRC (Changing host)
[20:21:00] *** aendrew <aendrew!sid117843@gateway/web/irccloud.com/x-fxplkryxpcmyaghp> has joined #angularjs
[20:21:00] *** drowngodx <drowngodx!sid162816@gateway/web/irccloud.com/session> has quit IRC (Changing host)
[20:21:00] *** drowngodx <drowngodx!sid162816@gateway/web/irccloud.com/x-mvaynbvefjcfpjui> has joined #angularjs
[20:21:25] *** c17r <c17r!~c17r@c-76-111-82-24.hsd1.va.comcast.net> has joined #angularjs
[20:21:25] *** cory___ <cory___!sid180108@gateway/web/irccloud.com/x-yffcalzwdrxuhdlj> has quit IRC (Ping timeout: 272 seconds)
[20:21:33] *** thomaspaulb <thomaspaulb!~Tom@D4B2706A.static.ziggozakelijk.nl> has joined #angularjs
[20:21:41] *** JackMc <JackMc!sid85402@gateway/web/irccloud.com/x-qxliclrgyowekstk> has joined #angularjs
[20:21:53] *** csharper <csharper!~csharper@31.6.42.47> has quit IRC (Ping timeout: 264 seconds)
[20:21:53] *** amitev_ <amitev_!~amitev@212.25.36.115> has joined #angularjs
[20:21:54] *** amitev <amitev!~amitev@212.25.36.115> has quit IRC (Ping timeout: 264 seconds)
[20:21:54] *** quakephil <quakephil!~smuxi@cpe-69-200-246-39.nyc.res.rr.com> has joined #angularjs
[20:21:54] *** TodPunk <TodPunk!~quassel@68.169.47.218> has quit IRC (Read error: Connection reset by peer)
[20:21:54] *** csharper <csharper!~csharper@31.6.42.47> has joined #angularjs
[20:21:56] *** itaipu_ <itaipu_!~Marco@168.121.96.22> has joined #angularjs
[20:22:01] *** TodPunk <TodPunk!~quassel@68.169.47.218> has joined #angularjs
[20:23:18] *** ggherdov <ggherdov!sid11402@gateway/web/irccloud.com/x-fidhacshzykrsied> has joined #angularjs
[20:23:51] *** cory___ <cory___!sid180108@gateway/web/irccloud.com/x-thaaklhrjchdaboo> has joined #angularjs
[20:23:56] *** cyan__ <cyan__!~cyan@217.170.162.68> has quit IRC (Remote host closed the connection)
[20:23:59] *** mastokley <mastokley!~mastokley@71.35.179.178> has joined #angularjs
[20:24:00] *** mastokley <mastokley!~mastokley@71.35.179.178> has quit IRC (Max SendQ exceeded)
[20:24:05] *** cspotcode <cspotcode!uid80131@gateway/web/irccloud.com/x-wzmcjgyahcioyepc> has joined #angularjs
[20:24:25] *** fcanela <fcanela!~fcanela@unaffiliated/fcanela> has quit IRC (Quit: No Ping reply in 180 seconds.)
[20:26:07] *** fcanela <fcanela!~fcanela@unaffiliated/fcanela> has joined #angularjs
[20:29:01] *** AaronDreamcoin <AaronDreamcoin!AaronDream@debian.fewona.net> has joined #angularjs
[20:29:25] *** NTrash <NTrash!~user@108.61.123.71> has joined #angularjs
[20:29:40] *** woohoo- <woohoo-!~bjoo@trippin.online> has quit IRC (Ping timeout: 272 seconds)
[20:30:17] *** ajk27 <ajk27!~ajk@loris.speckledmonkey.com> has quit IRC (Ping timeout: 272 seconds)
[20:30:31] *** quakephil <quakephil!~smuxi@cpe-69-200-246-39.nyc.res.rr.com> has quit IRC (Ping timeout: 264 seconds)
[20:30:32] *** prophesi <prophesi!~Adium@host-68-169-169-183.VABOLT2.epbfi.com> has joined #angularjs
[20:30:46] *** itaipu_ <itaipu_!~Marco@168.121.96.22> has quit IRC (Read error: Connection reset by peer)
[20:30:51] *** ajk <ajk!~ajk@loris.speckledmonkey.com> has joined #angularjs
[20:31:03] *** bjoops <bjoops!~bjoo@trippin.online> has joined #angularjs
[20:31:06] <magellanicloud_> jpcercal : ngView and template/templateUrl are missing in your fiddle
[20:31:17] *** quakephil <quakephil!~smuxi@cpe-69-200-246-39.nyc.res.rr.com> has joined #angularjs
[20:31:18] *** jsightler__ <jsightler__!~jsightler@98.124.125.227> has joined #angularjs
[20:31:47] *** _m8 <_m8!~m8@host114-180-dynamic.11-87-r.retail.telecomitalia.it> has joined #angularjs
[20:32:21] *** itamarjp <itamarjp!~itamar@fedora/itamarjp> has quit IRC (Ping timeout: 240 seconds)
[20:32:21] *** leolrrj <leolrrj!~leolrrj@rrcs-24-73-238-194.se.biz.rr.com> has joined #angularjs
[20:32:45] *** devin__ <devin__!sid177405@gateway/web/irccloud.com/x-noegsyltekonjqkq> has joined #angularjs
[20:32:57] *** Shrooms <Shrooms!~Shrooms@192.187.121.98> has joined #angularjs
[20:32:57] *** grug <grug!~grug@45.62.228.154> has joined #angularjs
[20:32:57] *** davlefou <davlefou!~davlefou@unaffiliated/davlefou> has joined #angularjs
[20:33:21] *** skullcrasher <skullcrasher!~skullcras@v22015112742129272.yourvserver.net> has joined #angularjs
[20:33:54] *** fcanela <fcanela!~fcanela@unaffiliated/fcanela> has quit IRC (Ping timeout: 276 seconds)
[20:33:59] *** harlan_44 <harlan_44!~james@2601:1c0:6b01:74f0:7891:2ad1:fb7c:3485> has quit IRC (Read error: Connection timed out)
[20:34:52] *** __m8 <__m8!~m8@host114-180-dynamic.11-87-r.retail.telecomitalia.it> has quit IRC (Ping timeout: 244 seconds)
[20:35:13] *** fcanela <fcanela!~fcanela@unaffiliated/fcanela> has joined #angularjs
[20:35:22] *** wizonesolutions <wizonesolutions!sid27627@drupal.org/user/739994/view> has joined #angularjs
[20:36:21] *** Aliks <Aliks!~aliks@c-50-161-64-217.hsd1.ca.comcast.net> has joined #angularjs
[20:37:01] <magellanicloud_> jpcercal : https://jsfiddle.net/v20n3Lu0/
[20:37:11] *** __m8 <__m8!~m8@host114-180-dynamic.11-87-r.retail.telecomitalia.it> has joined #angularjs
[20:37:15] *** harlan_44 <harlan_44!~james@2601:1c0:6b01:74f0:7891:2ad1:fb7c:3485> has joined #angularjs
[20:37:17] *** leolrrj <leolrrj!~leolrrj@rrcs-24-73-238-194.se.biz.rr.com> has quit IRC (Ping timeout: 272 seconds)
[20:39:23] *** AaronDreamcoin <AaronDreamcoin!AaronDream@debian.fewona.net> has quit IRC (Ping timeout: 272 seconds)
[20:39:24] *** fedenunez1 <fedenunez1!~fede@r167-61-16-59.dialup.adsl.anteldata.net.uy> has quit IRC (Read error: Connection reset by peer)
[20:39:37] *** amitev__ <amitev__!~amitev@212.25.36.115> has joined #angularjs
[20:39:47] *** ngWalrus <ngWalrus!~lammis@95.85.58.114> has quit IRC (Ping timeout: 272 seconds)
[20:40:00] *** fedenunez <fedenunez!~fede@r167-61-112-67.dialup.adsl.anteldata.net.uy> has joined #angularjs
[20:40:04] *** ngWalrus <ngWalrus!~lammis@95.85.58.114> has joined #angularjs
[20:40:06] *** amitev_ <amitev_!~amitev@212.25.36.115> has quit IRC (Ping timeout: 264 seconds)
[20:40:20] *** star_prone <star_prone!~sviatovig@188.25.28.123> has joined #angularjs
[20:40:25] *** Guest74338 <Guest74338!~silverdus@curve.sypherz.com> has quit IRC (Ping timeout: 272 seconds)
[20:40:25] *** Rodya_ <Rodya_!~Rodya_@2601:46:4001:e0b4:b05e:b05c:7321:3881> has joined #angularjs
[20:40:32] *** silverdu1t <silverdu1t!~silverdus@curve.sypherz.com> has joined #angularjs
[20:40:41] *** Aliks <Aliks!~aliks@c-50-161-64-217.hsd1.ca.comcast.net> has quit IRC (Ping timeout: 240 seconds)
[20:40:42] *** _m8 <_m8!~m8@host114-180-dynamic.11-87-r.retail.telecomitalia.it> has quit IRC (Ping timeout: 264 seconds)
[20:41:32] *** AaronDreamcoin <AaronDreamcoin!AaronDream@debian.fewona.net> has joined #angularjs
[20:41:54] *** prophesi <prophesi!~Adium@host-68-169-169-183.VABOLT2.epbfi.com> has quit IRC (Ping timeout: 264 seconds)
[20:42:00] <wrkrcoop> anyone know why my model isnt getting updated when they change in my view? the strange thing is vm.submit() is working https://gist.github.com/ellismarte/8bd865c495b5aac105c3cda8c610990f
[20:42:35] *** shinnya <shinnya!~shinnya@245.144.137.133.dy.bbexcite.jp> has joined #angularjs
[20:42:43] *** eMBee <eMBee!~eMBee@foresight/developer/pike/programmer> has joined #angularjs
[20:43:11] <jpcercal> wrkrcoop: ng-controller="SignupController as vm"?
[20:43:14] *** junovo <junovo!~junovo@cpc76294-cosh16-2-0-cust926.6-1.cable.virginm.net> has joined #angularjs
[20:43:15] *** davi-lima <davi-lima!~Davi@177.206.196.199.dynamic.adsl.gvt.net.br> has joined #angularjs
[20:43:25] <wrkrcoop> let me double check
[20:43:33] <jpcercal> magellanicloud_: it's working!
[20:44:00] <wrkrcoop> yeah in my routes i have controllerAs: ‘vm’
[20:44:21] <jpcercal> thanks a lot! I just needed put the template: '' in the $routeProvider..
[20:45:04] *** gigo1980 <gigo1980!~gigo1980@p4FD0DDC8.dip0.t-ipconnect.de> has joined #angularjs
[20:46:26] <gigo1980> hi, can i use protractor also for angular2, and are there any tutorials out? or does i have to use in the same way as for angular js
[20:46:55] *** skullcrasher <skullcrasher!~skullcras@v22015112742129272.yourvserver.net> has quit IRC (Ping timeout: 260 seconds)
[20:47:24] *** w2r5 <w2r5!~textual@c-69-242-232-38.hsd1.az.comcast.net> has joined #angularjs
[20:47:37] *** Netramcod <Netramcod!~Docmarten@173.65.211.233> has quit IRC ()
[20:48:28] <wrkrcoop> gigo1980: egghead probably has a good tutorial
[20:50:21] *** rand0m <rand0m!~rand0m@host86-139-27-149.range86-139.btcentralplus.com> has joined #angularjs
[20:50:44] <rand0m> hmm, can anyone help me out with this
[20:50:45] <rand0m> http://plnkr.co/edit/9rjRem8UaeRz6IciNGhJ?p=preview
[20:50:56] <rand0m> the script refuses to run :/
[20:51:27] *** eshlox <eshlox!uid44222@gateway/web/irccloud.com/x-qehrmofsydcpfqwu> has joined #angularjs
[20:52:00] *** sixr420 <sixr420!~sixr420@205.185.209.241> has joined #angularjs
[20:52:45] *** prophesi <prophesi!~Adium@host-68-169-169-183.VABOLT2.epbfi.com> has joined #angularjs
[20:52:57] *** GuiltyLemon <GuiltyLemon!~guiltylem@unaffiliated/guiltylemon> has quit IRC (Ping timeout: 244 seconds)
[20:53:52] *** ks <ks!7dd14452@gateway/web/freenode/ip.125.209.68.82> has joined #angularjs
[20:54:02] *** ks <ks!7dd14452@gateway/web/freenode/ip.125.209.68.82> has left #angularjs
[20:54:18] *** djboz <djboz!~djboz@216.1.23.10> has joined #angularjs
[20:55:05] *** jimklo_ <jimklo_!~jimklo@192.12.16.110> has quit IRC (Remote host closed the connection)
[20:55:19] <rand0m> this is strange
[20:55:25] *** brollypop <brollypop!~brollypop@195.178.115.1> has joined #angularjs
[20:55:32] <rand0m> I changed the angular version and it started working :D
[20:55:40] *** jimklo <jimklo!~jimklo@192.12.16.110> has joined #angularjs
[20:56:58] *** bayousoft <bayousoft!~textual@130.70.12.3> has joined #angularjs
[20:57:21] *** Aliks <Aliks!~aliks@165.sub-70-213-21.myvzw.com> has joined #angularjs
[20:57:37] *** Shrooms <Shrooms!~Shrooms@192.187.121.98> has quit IRC (*.net *.split)
[20:57:37] *** grug <grug!~grug@45.62.228.154> has quit IRC (*.net *.split)
[20:57:37] *** davlefou <davlefou!~davlefou@unaffiliated/davlefou> has quit IRC (*.net *.split)
[20:58:47] *** fuchstronaut <fuchstronaut!~fuchstron@unaffiliated/fuchstronaut> has joined #angularjs
[20:59:08] *** eyi <eyi!~eyi@triopw.us.to> has quit IRC (Ping timeout: 250 seconds)
[21:00:05] *** GuiltyLemon <GuiltyLemon!~guiltylem@unaffiliated/guiltylemon> has joined #angularjs
[21:00:24] *** jimklo_ <jimklo_!~jimklo@192.12.16.110> has joined #angularjs
[21:00:34] *** AaronDre- <AaronDre-!AaronDream@debian.fewona.net> has joined #angularjs
[21:00:45] *** AaronDreamcoin <AaronDreamcoin!AaronDream@debian.fewona.net> has quit IRC (Ping timeout: 264 seconds)
[21:00:46] *** csharper <csharper!~csharper@31.6.42.47> has quit IRC (Ping timeout: 264 seconds)
[21:00:46] *** csharper <csharper!~csharper@31.6.42.47> has joined #angularjs
[21:00:47] *** jimklo <jimklo!~jimklo@192.12.16.110> has quit IRC (Remote host closed the connection)
[21:00:47] *** gigo1980 <gigo1980!~gigo1980@p4FD0DDC8.dip0.t-ipconnect.de> has quit IRC (Ping timeout: 264 seconds)
[21:01:11] *** brollypop <brollypop!~brollypop@195.178.115.1> has quit IRC (Ping timeout: 265 seconds)
[21:01:13] *** Danielss89 <Danielss89!~danielss8@server1.dasprids.de> has quit IRC (Ping timeout: 244 seconds)
[21:01:25] *** edrocks <edrocks!~edrocks@66-194-206-178.static.twtelecom.net> has joined #angularjs
[21:01:26] *** Danielss89 <Danielss89!~danielss8@server1.dasprids.de> has joined #angularjs
[21:03:09] *** bsrd <bsrd!~ukk@0x3e2c8761.mobile.telia.dk> has joined #angularjs
[21:03:52] *** LeBlaaanc <LeBlaaanc!~LeBlaaanc@47.188.236.163> has joined #angularjs
[21:04:25] *** AciD- is now known as AciD`
[21:04:25] *** AciD` <AciD`!~fu@crediz.io> has quit IRC (Changing host)
[21:04:25] *** AciD` <AciD`!~fu@unaffiliated/acid/x-7368316> has joined #angularjs
[21:04:29] *** fuchstronaut <fuchstronaut!~fuchstron@unaffiliated/fuchstronaut> has quit IRC (Ping timeout: 272 seconds)
[21:05:52] *** edrocks <edrocks!~edrocks@66-194-206-178.static.twtelecom.net> has quit IRC (Ping timeout: 244 seconds)
[21:06:03] *** eyi <eyi!~eyi@triopw.us.to> has joined #angularjs
[21:06:25] <wrkrcoop> so my controller’s methods work … but not the model ….
[21:06:27] *** bsrd <bsrd!~ukk@0x3e2c8761.mobile.telia.dk> has quit IRC (Client Quit)
[21:06:29] <wrkrcoop> why would this be?
[21:07:19] *** itaipu <itaipu!~Marco@168.121.96.22> has joined #angularjs
[21:07:49] *** dagda1 <dagda1!~dagda1@bcde521d.skybroadband.com> has joined #angularjs
[21:07:58] *** arizzo <arizzo!~arizzo@pool-100-34-253-181.phlapa.fios.verizon.net> has joined #angularjs
[21:09:10] *** star_pro_ <star_pro_!~sviatovig@188.25.28.123> has joined #angularjs
[21:10:38] *** jimklo <jimklo!~jimklo@192.12.16.110> has joined #angularjs
[21:11:01] *** JmZ_ <JmZ_!~JmZ@unaffiliated/jmz> has quit IRC (Ping timeout: 240 seconds)
[21:11:17] *** m0ltar <m0ltar!~moltar@159.203.35.170> has quit IRC (Ping timeout: 250 seconds)
[21:11:21] *** aendrew_ <aendrew_!sid117843@gateway/web/irccloud.com/x-pyvibwhqnbexsjzn> has joined #angularjs
[21:11:25] *** aendrew <aendrew!sid117843@gateway/web/irccloud.com/x-fxplkryxpcmyaghp> has quit IRC (Ping timeout: 272 seconds)
[21:11:25] *** beckyconning_ <beckyconning_!sid31604@gateway/web/irccloud.com/x-elisjgosqrgsrwnu> has quit IRC (Ping timeout: 272 seconds)
[21:11:25] *** fcanela <fcanela!~fcanela@unaffiliated/fcanela> has quit IRC (Quit: No Ping reply in 180 seconds.)
[21:11:28] *** AciD` <AciD`!~fu@unaffiliated/acid/x-7368316> has quit IRC (Ping timeout: 272 seconds)
[21:11:28] *** OtherAllan <OtherAllan!~OtherAlla@ip68-107-106-70.sd.sd.cox.net> has quit IRC (Ping timeout: 272 seconds)
[21:11:37] *** aendrew_ is now known as aendrew
[21:12:04] *** ajk27 <ajk27!~ajk@loris.speckledmonkey.com> has joined #angularjs
[21:12:16] *** OtherAllan <OtherAllan!~OtherAlla@ip68-107-106-70.sd.sd.cox.net> has joined #angularjs
[21:12:34] *** csharper <csharper!~csharper@31.6.42.47> has quit IRC (Ping timeout: 264 seconds)
[21:12:34] *** star_prone <star_prone!~sviatovig@188.25.28.123> has quit IRC (Ping timeout: 264 seconds)
[21:12:34] *** ajk <ajk!~ajk@loris.speckledmonkey.com> has quit IRC (Ping timeout: 264 seconds)
[21:12:34] *** trave <trave!sid38181@gateway/web/irccloud.com/x-djgkgeokqpppppqa> has quit IRC (Ping timeout: 250 seconds)
[21:12:35] *** csharper <csharper!~csharper@31.6.42.47> has joined #angularjs
[21:12:35] *** LeBlaaanc <LeBlaaanc!~LeBlaaanc@47.188.236.163> has quit IRC (Ping timeout: 264 seconds)
[21:12:36] *** iraj_ <iraj_!~iraj@91.107.244.101> has quit IRC (Ping timeout: 244 seconds)
[21:12:36] *** iraj <iraj!~iraj@unaffiliated/iraj> has joined #angularjs
[21:12:48] *** LeBlaaanc <LeBlaaanc!~LeBlaaanc@47.188.236.163> has joined #angularjs
[21:13:06] *** bayousoft <bayousoft!~textual@130.70.12.3> has quit IRC ()
[21:13:21] *** jimklo_ <jimklo_!~jimklo@192.12.16.110> has quit IRC (Ping timeout: 272 seconds)
[21:13:25] *** trave <trave!sid38181@gateway/web/irccloud.com/x-fcapzipbseioshvl> has joined #angularjs
[21:13:26] *** JmZ_ <JmZ_!~JmZ@unaffiliated/jmz> has joined #angularjs
[21:13:48] *** m0ltar <m0ltar!~moltar@159.203.35.170> has joined #angularjs
[21:13:51] *** wonder95 <wonder95!~wonder95@50-39-193-168.bvtn.or.frontiernet.net> has joined #angularjs
[21:14:01] *** Immutef <Immutef!sid17978@gateway/web/irccloud.com/x-nroclnijnbhmwnlx> has quit IRC (Ping timeout: 240 seconds)
[21:14:03] *** beckyconning_ <beckyconning_!sid31604@gateway/web/irccloud.com/x-omcvuuafpthettpw> has joined #angularjs
[21:14:12] *** fcanela <fcanela!~fcanela@unaffiliated/fcanela> has joined #angularjs
[21:14:16] *** AciD` <AciD`!~fu@crediz.io> has joined #angularjs
[21:14:16] *** AciD` <AciD`!~fu@crediz.io> has quit IRC (Changing host)
[21:14:16] *** AciD` <AciD`!~fu@unaffiliated/acid/x-7368316> has joined #angularjs
[21:15:32] *** StanMars1 is now known as StanMarsh
[21:15:33] *** Immutef <Immutef!sid17978@gateway/web/irccloud.com/x-bqioxfaraxckkodv> has joined #angularjs
[21:16:21] *** jhadvig <jhadvig!~jhadvig@78-141-120-86.dynamic.orange.sk> has quit IRC (Ping timeout: 240 seconds)
[21:16:53] *** csk <csk!~csk@200-28-115-207.baf.movistar.cl> has joined #angularjs
[21:17:07] *** fdev <fdev!~fdev@xd9bad026.dyn.telefonica.de> has joined #angularjs
[21:18:33] *** strohalm <strohalm!~smoofi@212.37.175.238> has joined #angularjs
[21:18:33] *** strohalm <strohalm!~smoofi@212.37.175.238> has quit IRC (Changing host)
[21:18:33] *** strohalm <strohalm!~smoofi@unaffiliated/strohi> has joined #angularjs
[21:19:43] *** dgo <dgo!b2276f7b@gateway/web/cgi-irc/kiwiirc.com/ip.178.39.111.123> has joined #angularjs
[21:19:44] *** jpcercal <jpcercal!b1435b82@gateway/web/freenode/ip.177.67.91.130> has quit IRC (Quit: Page closed)
[21:21:00] *** eyi <eyi!~eyi@triopw.us.to> has quit IRC (Ping timeout: 265 seconds)
[21:21:10] *** jpcercal <jpcercal!b1435b82@gateway/web/freenode/ip.177.67.91.130> has joined #angularjs
[21:21:43] <dgo> hi there. Using angularjs 1.5.8, I configure a global http error interceptor. It works, I got correctly the responseError triggerd. The response.statusText is correct. But the response.data is a arraybuffer type. I don't understand why I don't get an object. Can you explain me why ? Using the chrome console, the network tab show me the response dat
[21:21:43] <dgo> a correctly.
[21:22:11] *** eyi <eyi!jonah@triopw.us.to> has joined #angularjs
[21:22:29] *** akkonrad <akkonrad!~akkonrad3@gae109.internetdsl.tpnet.pl> has joined #angularjs
[21:22:49] <wrkrcoop> dgo: maybe the backend is sending it
[21:23:51] <dgo> wrkrcoop: the backend send a application/json
[21:24:52] *** davi-lima_ <davi-lima_!~Davi@177.206.196.199.dynamic.adsl.gvt.net.br> has joined #angularjs
[21:24:59] *** dopples <dopples!~Bryson@45.55.251.192> has quit IRC (Ping timeout: 244 seconds)
[21:25:05] *** Harlan44 <Harlan44!~james@c-76-115-10-170.hsd1.or.comcast.net> has joined #angularjs
[21:25:19] *** prophesi1 <prophesi1!~Adium@host-68-169-169-183.VABOLT2.epbfi.com> has joined #angularjs
[21:25:22] *** strohalm <strohalm!~smoofi@unaffiliated/strohi> has quit IRC (Ping timeout: 265 seconds)
[21:25:31] *** junovo_ <junovo_!~junovo@cpc76294-cosh16-2-0-cust926.6-1.cable.virginm.net> has joined #angularjs
[21:25:48] *** Harlan44 <Harlan44!~james@c-76-115-10-170.hsd1.or.comcast.net> has quit IRC (Client Quit)
[21:25:51] *** sixr420 <sixr420!~sixr420@205.185.209.241> has quit IRC (Ping timeout: 265 seconds)
[21:25:55] <wrkrcoop> dgo: are they sending a huge amount of data?
[21:25:59] *** sixr420 <sixr420!~sixr420@205.185.209.241> has joined #angularjs
[21:26:20] <wrkrcoop> hm yeah idk. sorry
[21:26:32] *** plutoniix <plutoniix!~q@node-rg4.pool-180-180.dynamic.totbb.net> has quit IRC (Ping timeout: 244 seconds)
[21:26:36] *** Immutef_ <Immutef_!sid17978@gateway/web/irccloud.com/x-ksevskcgidrmevyq> has joined #angularjs
[21:26:41] *** littlebearz__ <littlebearz__!littlebear@2607:fea8:a220:7e3:43c:8cea:d765:ba61> has quit IRC (Read error: Connection reset by peer)
[21:26:48] *** eyi <eyi!jonah@triopw.us.to> has quit IRC (Ping timeout: 265 seconds)
[21:26:49] *** junovo <junovo!~junovo@cpc76294-cosh16-2-0-cust926.6-1.cable.virginm.net> has quit IRC (Ping timeout: 265 seconds)
[21:26:56] *** Immutef <Immutef!sid17978@gateway/web/irccloud.com/x-bqioxfaraxckkodv> has quit IRC (Ping timeout: 272 seconds)
[21:26:56] *** sptq <sptq!sid152696@gateway/web/irccloud.com/x-ponqypdqzegrtczo> has quit IRC (Ping timeout: 272 seconds)
[21:26:56] *** xtreamwayz <xtreamwayz!sid141190@gateway/web/irccloud.com/x-tvbnqkqjkofufcvt> has quit IRC (Ping timeout: 272 seconds)
[21:26:57] *** DieguezZ <DieguezZ!~textual@82.159.21.250.dyn.user.ono.com> has quit IRC (Ping timeout: 272 seconds)
[21:26:57] *** jimmyff <jimmyff!sid11140@gateway/web/irccloud.com/x-yyfmtkopqfrympdc> has quit IRC (Ping timeout: 272 seconds)
[21:26:57] *** ikevin_ <ikevin_!sid16762@gateway/web/irccloud.com/x-dlhuesaqbfqefqgp> has quit IRC (Ping timeout: 272 seconds)
[21:26:57] *** moogumbo <moogumbo!sid31999@gateway/web/irccloud.com/x-safbcybplbmxemfp> has quit IRC (Ping timeout: 272 seconds)
[21:26:57] *** wycats <wycats!sid79@gateway/web/irccloud.com/x-txndkfimhtbdrpra> has quit IRC (Ping timeout: 272 seconds)
[21:26:57] *** devin__ <devin__!sid177405@gateway/web/irccloud.com/x-noegsyltekonjqkq> has quit IRC (Ping timeout: 272 seconds)
[21:26:57] *** quakephil <quakephil!~smuxi@cpe-69-200-246-39.nyc.res.rr.com> has quit IRC (Ping timeout: 272 seconds)
[21:26:58] *** ggherdov <ggherdov!sid11402@gateway/web/irccloud.com/x-fidhacshzykrsied> has quit IRC (Ping timeout: 272 seconds)
[21:26:58] *** drowngodx <drowngodx!sid162816@gateway/web/irccloud.com/x-mvaynbvefjcfpjui> has quit IRC (Ping timeout: 272 seconds)
[21:26:58] *** ulkesh <ulkesh!sid140298@gateway/web/irccloud.com/x-dsgmabykgasxbgoo> has quit IRC (Ping timeout: 272 seconds)
[21:26:58] *** forrestv <forrestv!forrestv@unaffiliated/forrestv> has quit IRC (Ping timeout: 272 seconds)
[21:26:58] *** clode_______ <clode_______!sid40776@gateway/web/irccloud.com/x-rjpmipgstdeiaxlr> has quit IRC (Ping timeout: 272 seconds)
[21:26:58] *** Mr_Pancake <Mr_Pancake!~Pancake@2001:41d0:8:e386::1> has quit IRC (Ping timeout: 272 seconds)
[21:26:58] *** alphonse23_ <alphonse23_!sid34238@gateway/web/irccloud.com/x-lcpfdvzyhfuvqujv> has quit IRC (Ping timeout: 272 seconds)
[21:26:58] *** jnap_ <jnap_!sid41868@gateway/web/irccloud.com/x-qvptsngefqydqxed> has quit IRC (Ping timeout: 272 seconds)
[21:26:58] *** solexious <solexious!sid331@gateway/web/irccloud.com/x-kqxnfoafmbcpzxah> has quit IRC (Ping timeout: 272 seconds)
[21:26:58] *** al-damiri <al-damiri!uid142631@gateway/web/irccloud.com/x-osnwsyxeldulnyex> has quit IRC (Ping timeout: 272 seconds)
[21:26:58] *** techntoke_ <techntoke_!sid124863@gateway/web/irccloud.com/x-llccsulgljgvdbyg> has quit IRC (Ping timeout: 272 seconds)
[21:26:59] *** ish <ish!sid1441@gateway/web/irccloud.com/x-mbxuxosvuiwibvmw> has quit IRC (Ping timeout: 272 seconds)
[21:27:00] *** trave <trave!sid38181@gateway/web/irccloud.com/x-fcapzipbseioshvl> has quit IRC (Ping timeout: 272 seconds)
[21:27:00] *** ajk27 <ajk27!~ajk@loris.speckledmonkey.com> has quit IRC (Ping timeout: 272 seconds)
[21:27:01] *** Klumben <Klumben!Nsaiswatch@elmo.stole-your.pw> has quit IRC (Ping timeout: 272 seconds)
[21:27:01] *** MerlinDMC <MerlinDMC!~merlin@irc.l0cal.net> has quit IRC (Ping timeout: 272 seconds)
[21:27:01] *** hashrocket <hashrocket!uid27380@gateway/web/irccloud.com/x-ogpriwoueqjycgcd> has quit IRC (Ping timeout: 272 seconds)
[21:27:01] *** pulaski <pulaski!~pulaski@2604:180:2:e74::5a38> has quit IRC (Ping timeout: 272 seconds)
[21:27:02] *** atomi <atomi!~atomi@71-83-179-177.dhcp.lnbh.ca.charter.com> has quit IRC (Ping timeout: 272 seconds)
[21:27:02] *** marr <marr!~ccc@159-205-243-117.adsl.inetia.pl> has quit IRC (Ping timeout: 272 seconds)
[21:27:02] *** Lowell <Lowell!sid43163@gateway/web/irccloud.com/x-gqwxcprjhqlijxum> has quit IRC (Ping timeout: 272 seconds)
[21:27:03] *** littlebear <littlebear!littlebear@2607:fea8:a220:7e3:43c:8cea:d765:ba61> has joined #angularjs
[21:27:03] *** marr <marr!~ccc@159-205-243-117.adsl.inetia.pl> has joined #angularjs
[21:27:03] *** MerlinDMC <MerlinDMC!~merlin@irc.l0cal.net> has joined #angularjs
[21:27:04] *** krusty_ar_ <krusty_ar_!~quassel@190.192.59.178> has quit IRC (Ping timeout: 244 seconds)
[21:27:04] *** quakephil_ <quakephil_!~smuxi@cpe-69-200-246-39.nyc.res.rr.com> has joined #angularjs
[21:27:11] *** ajk27 <ajk27!~ajk@loris.speckledmonkey.com> has joined #angularjs
[21:27:14] *** sptq <sptq!sid152696@gateway/web/irccloud.com/x-dnecnpendibtoisj> has joined #angularjs
[21:27:18] *** harlan_44 <harlan_44!~james@2601:1c0:6b01:74f0:7891:2ad1:fb7c:3485> has quit IRC (Ping timeout: 272 seconds)
[21:27:18] *** iraj <iraj!~iraj@unaffiliated/iraj> has quit IRC (Ping timeout: 265 seconds)
[21:27:18] *** RangerRick <RangerRick!~quassel@cpe-2606-A000-45C2-6901-82EE-73FF-FE9F-967E.dyn6.twc.com> has quit IRC (Ping timeout: 272 seconds)
[21:27:19] *** MJD <MJD!~quassel@scadrial.mjdsystems.ca> has quit IRC (Ping timeout: 272 seconds)
[21:27:19] *** rand0m <rand0m!~rand0m@host86-139-27-149.range86-139.btcentralplus.com> has quit IRC (Ping timeout: 265 seconds)
[21:27:19] *** silverdu1t <silverdu1t!~silverdus@curve.sypherz.com> has quit IRC (Ping timeout: 265 seconds)
[21:27:19] *** ngWalrus <ngWalrus!~lammis@95.85.58.114> has quit IRC (Ping timeout: 265 seconds)
[21:27:19] *** __m8 <__m8!~m8@host114-180-dynamic.11-87-r.retail.telecomitalia.it> has quit IRC (Ping timeout: 265 seconds)
[21:27:19] *** dextertzu <dextertzu!~dexter@S0106bcd1656573c8.vs.shawcable.net> has quit IRC (Ping timeout: 272 seconds)
[21:27:26] *** pulaski <pulaski!~pulaski@2604:180:2:e74::5a38> has joined #angularjs
[21:27:27] *** MJD <MJD!~quassel@scadrial.mjdsystems.ca> has joined #angularjs
[21:27:34] *** Nighthawk`` <Nighthawk``!~Nighthawk@168.235.68.173> has quit IRC (Ping timeout: 244 seconds)
[21:27:47] *** davi-lima <davi-lima!~Davi@177.206.196.199.dynamic.adsl.gvt.net.br> has quit IRC (Ping timeout: 265 seconds)
[21:27:47] *** wizonesolutions <wizonesolutions!sid27627@drupal.org/user/739994/view> has quit IRC (Ping timeout: 265 seconds)
[21:27:49] *** star_pro_ <star_pro_!~sviatovig@188.25.28.123> has quit IRC (Remote host closed the connection)
[21:27:56] *** csharper <csharper!~csharper@31.6.42.47> has quit IRC (Ping timeout: 264 seconds)
[21:27:57] *** prophesi <prophesi!~Adium@host-68-169-169-183.VABOLT2.epbfi.com> has quit IRC (Ping timeout: 264 seconds)
[21:27:57] *** Alina-malina <Alina-malina!~Alina-mal@unaffiliated/alina-malina> has quit IRC (Ping timeout: 264 seconds)
[21:27:57] *** TyrfingMjolnir <TyrfingMjolnir!~Tyrfing@62.92.82.250> has quit IRC (Ping timeout: 264 seconds)
[21:27:57] *** amitev__ <amitev__!~amitev@212.25.36.115> has quit IRC (Read error: Connection reset by peer)
[21:27:58] *** amitev__ <amitev__!~amitev@212.25.36.115> has joined #angularjs
[21:27:59] *** beckyconning_ <beckyconning_!sid31604@gateway/web/irccloud.com/x-omcvuuafpthettpw> has quit IRC (Ping timeout: 264 seconds)
[21:27:59] *** LeBlaaanc <LeBlaaanc!~LeBlaaanc@47.188.236.163> has quit IRC (Ping timeout: 264 seconds)
[21:27:59] *** monokrome <monokrome!~monokrome@54.88.139.115> has quit IRC (Ping timeout: 264 seconds)
[21:27:59] *** csharper <csharper!~csharper@31.6.42.47> has joined #angularjs
[21:28:00] *** eyi_ <eyi_!jonah@triopw.us.to> has joined #angularjs
[21:28:00] *** doppio <doppio!~Bryson@45.55.251.192> has joined #angularjs
[21:28:05] *** dextertzu <dextertzu!~dexter@S0106bcd1656573c8.vs.shawcable.net> has joined #angularjs
[21:28:16] *** Immutef_ is now known as Immutef
[21:28:27] *** wycats <wycats!sid79@gateway/web/irccloud.com/x-dpeoyemmongfodjp> has joined #angularjs
[21:28:33] *** RangerRick <RangerRick!~quassel@cpe-2606-A000-45C2-6901-82EE-73FF-FE9F-967E.dyn6.twc.com> has joined #angularjs
[21:28:45] *** LeBlaaanc <LeBlaaanc!~LeBlaaanc@47.188.236.163> has joined #angularjs
[21:28:49] *** silverdust <silverdust!~silverdus@curve.sypherz.com> has joined #angularjs
[21:28:56] *** forrestv <forrestv!forrestv@unaffiliated/forrestv> has joined #angularjs
[21:29:06] *** Klumben <Klumben!Nsaiswatch@elmo.stole-your.pw> has joined #angularjs
[21:29:12] *** silverdust is now known as Guest53639
[21:29:21] *** roek <roek!sid15176@gateway/web/irccloud.com/x-qnxpepukdyhpwivn> has quit IRC (Ping timeout: 257 seconds)
[21:29:22] *** drej <drej!~jedimind@unaffiliated/jedimind> has joined #angularjs
[21:29:26] *** iraj <iraj!~iraj@unaffiliated/iraj> has joined #angularjs
[21:29:33] *** Nighthawk`` <Nighthawk``!~Nighthawk@168.235.68.173> has joined #angularjs
[21:29:53] *** krusty_ar <krusty_ar!~quassel@190.192.59.178> has joined #angularjs
[21:30:03] *** Mr_Pancake <Mr_Pancake!~Pancake@ns336688.ip-5-135-160.eu> has joined #angularjs
[21:30:13] *** Alina-malina <Alina-malina!~Alina-mal@37.157.216.181> has joined #angularjs
[21:30:24] *** fcanela_ <fcanela_!~fcanela@unaffiliated/fcanela> has joined #angularjs
[21:30:29] *** ikevin_ <ikevin_!sid16762@gateway/web/irccloud.com/x-nufcfodrpzprdjad> has joined #angularjs
[21:30:42] *** csk <csk!~csk@200-28-115-207.baf.movistar.cl> has quit IRC (Quit: ZZZzzz…)
[21:30:44] *** strohalm <strohalm!~smoofi@212.37.175.238> has joined #angularjs
[21:30:44] *** strohalm <strohalm!~smoofi@212.37.175.238> has quit IRC (Changing host)
[21:30:44] *** strohalm <strohalm!~smoofi@unaffiliated/strohi> has joined #angularjs
[21:31:05] *** JackMc <JackMc!sid85402@gateway/web/irccloud.com/x-qxliclrgyowekstk> has quit IRC (Ping timeout: 272 seconds)
[21:31:05] *** elijah <elijah!sid21431@gateway/web/irccloud.com/x-oqchhuoeorfwahjp> has quit IRC (Ping timeout: 272 seconds)
[21:31:06] *** fcanela <fcanela!~fcanela@unaffiliated/fcanela> has quit IRC (Ping timeout: 276 seconds)
[21:31:45] *** klobucar <klobucar!sid1012@gateway/web/irccloud.com/x-dqgxjzggqdtebcbk> has quit IRC (Ping timeout: 276 seconds)
[21:32:08] *** TyrfingMjolnir <TyrfingMjolnir!~Tyrfing@62.92.82.250> has joined #angularjs
[21:32:28] *** bayousoft <bayousoft!~textual@130.70.12.3> has joined #angularjs
[21:32:37] *** boxmein is now known as boxWoW64
[21:32:44] *** zol1 <zol1!~zolomon@31.208.76.60> has quit IRC (Ping timeout: 244 seconds)
[21:33:40] *** asteele <asteele!~Cronoh@192.77.237.216> has quit IRC (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
[21:33:48] *** PalTale <PalTale!kiwi@paltale.com> has quit IRC (Ping timeout: 250 seconds)
[21:33:49] *** IShaDoWl <IShaDoWl!uid155795@gateway/web/irccloud.com/x-euokekkocqhjhaff> has quit IRC (Ping timeout: 250 seconds)
[21:33:49] *** joshfinnie <joshfinnie!~joshfinni@192.241.179.87> has quit IRC (Ping timeout: 250 seconds)
[21:33:49] *** bloodbare <bloodbare!~bloodbare@ec2-79-125-12-87.eu-west-1.compute.amazonaws.com> has quit IRC (Ping timeout: 250 seconds)
[21:34:14] *** nausea <nausea!head@unaffiliated/neofreak> has quit IRC (Ping timeout: 250 seconds)
[21:34:15] *** cdmsn <cdmsn!cdmsn@dr0gen.com> has quit IRC (Ping timeout: 250 seconds)
[21:34:15] *** ries <ries!~ries@D979C7EF.cm-3-2d.dynamic.ziggo.nl> has quit IRC (Ping timeout: 250 seconds)
[21:34:15] *** jscarmona <jscarmona!~jscarmona@162.243.60.115> has quit IRC (Ping timeout: 250 seconds)
[21:34:15] *** joeytwiddle <joeytwiddle!~joeytwidd@162.243.115.31> has quit IRC (Ping timeout: 250 seconds)
[21:34:15] *** gvhoecke <gvhoecke!~gvhoecke@106.195-242-81.adsl-dyn.isp.belgacom.be> has quit IRC (Ping timeout: 250 seconds)
[21:34:15] *** tr_h <tr_h!~tr_h@li1204-10.members.linode.com> has quit IRC (Ping timeout: 250 seconds)
[21:34:19] *** M-ou-se_ <M-ou-se_!~m-ou.se@m-ou.se> has joined #angularjs
[21:34:28] *** atomi <atomi!~atomi@71-83-179-177.dhcp.lnbh.ca.charter.com> has joined #angularjs
[21:34:40] *** Ashe <Ashe!~ashe@ashe.pcx.one> has quit IRC (Ping timeout: 250 seconds)
[21:34:41] *** Eleeleth <Eleeleth!sid43850@gateway/web/irccloud.com/x-avrmjygblhdcgkzu> has quit IRC (Ping timeout: 250 seconds)
[21:34:41] *** Somatt <Somatt!famic@snoozebutton.net> has quit IRC (Ping timeout: 250 seconds)
[21:34:41] *** Villae <Villae!~Villae_@run.bombsquad.org> has quit IRC (Ping timeout: 250 seconds)
[21:34:41] *** jcstewart <jcstewart!~jake@104.236.53.75> has quit IRC (Ping timeout: 250 seconds)
[21:34:41] *** idwbpirate <idwbpirate!~idwbpirat@66-215-238-134.dhcp.rvsd.ca.charter.com> has quit IRC (Ping timeout: 250 seconds)
[21:34:41] *** clamstar <clamstar!~rx-ident@162.243.230.189> has quit IRC (Ping timeout: 250 seconds)
[21:34:45] *** thrasibule <thrasibule!~quassel@198.27.82.145> has quit IRC (Remote host closed the connection)
[21:34:45] *** AciD` is now known as AciD
[21:34:45] *** drowngodx <drowngodx!sid162816@gateway/web/irccloud.com/x-piodqiqlawdbgwxx> has joined #angularjs
[21:34:54] *** Ashe <Ashe!~ashe@ashe.pcx.one> has joined #angularjs
[21:35:05] *** Pagan <Pagan!~Pagan@unaffiliated/pagan> has quit IRC (Ping timeout: 248 seconds)
[21:35:06] *** m13 <m13!~quassel@188.116.38.80> has quit IRC (Read error: Connection reset by peer)
[21:35:07] *** Akufen <Akufen!~Akufen@d5152EAF0.static.telenet.be> has quit IRC (Ping timeout: 250 seconds)
[21:35:07] *** toin0u|away <toin0u|away!~toin0u@185.14.186.176> has quit IRC (Ping timeout: 250 seconds)
[21:35:07] *** Stummi <Stummi!~Stummi@stummi.org> has quit IRC (Ping timeout: 250 seconds)
[21:35:08] *** derrzzaa <derrzzaa!~derrzzaa@znc.mcp.io> has quit IRC (Ping timeout: 250 seconds)
[21:35:08] *** boonkerz <boonkerz!~Thomas@static.130.78.9.5.clients.your-server.de> has quit IRC (Ping timeout: 250 seconds)
[21:35:08] *** kblin <kblin!~kai@samba/team/kai> has quit IRC (Ping timeout: 250 seconds)
[21:35:08] *** cosmo1t <cosmo1t!~cosmo1t@64-83-206-90.static.stcd.mn.charter.com> has quit IRC (Ping timeout: 250 seconds)
[21:35:08] *** Liam` <Liam`!~Liam@znc.liam.sh> has quit IRC (Ping timeout: 250 seconds)
[21:35:09] *** kc3 <kc3!~kclark@svr1.autoverify.net> has quit IRC (Ping timeout: 250 seconds)
[21:35:09] *** xamanu_ <xamanu_!~xamanu@mail.consciente.de> has quit IRC (Ping timeout: 250 seconds)
[21:35:09] *** christo_m <christo_m!~christo@64.137.230.125> has quit IRC (Ping timeout: 250 seconds)
[21:35:15] *** AciD is now known as Guest39952
[21:35:22] *** iraj_ <iraj_!~iraj@91.107.149.82> has joined #angularjs
[21:35:33] *** nivag <nivag!~gavin@121.99.202.67> has quit IRC (Ping timeout: 250 seconds)
[21:35:33] *** gcommer <gcommer!~gcommer@gcommer.com> has quit IRC (Ping timeout: 250 seconds)
[21:35:34] *** mrkake <mrkake!~kake@209-6-195-29.c3-0.smr-ubr2.sbo-smr.ma.cable.rcn.com> has quit IRC (Ping timeout: 250 seconds)
[21:35:34] *** Guest50368 <Guest50368!ruurd@gateway/shell/layerbnc/x-anjvhhbaihyfsock> has quit IRC (Ping timeout: 250 seconds)
[21:35:34] *** iamayam <iamayam!~yamiam@192.3.160.145> has quit IRC (Ping timeout: 250 seconds)
[21:35:34] *** barraponto <barraponto!~barrapont@192.241.165.172> has quit IRC (Ping timeout: 250 seconds)
[21:35:35] *** jbondhus <jbondhus!~quassel@www.jbondhus.com> has quit IRC (Ping timeout: 250 seconds)
[21:35:35] *** ekarlso- <ekarlso-!~ekarlso@85.17.207.6> has quit IRC (Ping timeout: 250 seconds)
[21:35:36] *** hendricius <hendricius!~hendriciu@37.59.199.74> has quit IRC (Ping timeout: 250 seconds)
[21:35:36] *** boubbin <boubbin!boubbin@tclhelp.net> has quit IRC (Ping timeout: 250 seconds)
[21:35:38] *** Pagan <Pagan!~Pagan@bytemob.net> has joined #angularjs
[21:35:38] *** Pagan <Pagan!~Pagan@bytemob.net> has quit IRC (Changing host)
[21:35:38] *** Pagan <Pagan!~Pagan@unaffiliated/pagan> has joined #angularjs
[21:35:38] *** NomadJim__ <NomadJim__!~NomadJim@72.168.161.212> has joined #angularjs
[21:35:47] *** Kamuela <Kamuela!sid111576@gateway/web/irccloud.com/x-ibemarlzoogthtxk> has quit IRC (Ping timeout: 272 seconds)
[21:35:47] *** Mr_Pancake <Mr_Pancake!~Pancake@ns336688.ip-5-135-160.eu> has quit IRC (Ping timeout: 272 seconds)
[21:35:47] *** pulaski <pulaski!~pulaski@2604:180:2:e74::5a38> has quit IRC (Ping timeout: 272 seconds)
[21:35:47] *** marr <marr!~ccc@159-205-243-117.adsl.inetia.pl> has quit IRC (Ping timeout: 272 seconds)
[21:35:47] *** eshlox <eshlox!uid44222@gateway/web/irccloud.com/x-qehrmofsydcpfqwu> has quit IRC (Ping timeout: 272 seconds)
[21:35:47] *** gojira__ <gojira__!sid120399@gateway/web/irccloud.com/x-mcqaynyevnaeslcn> has quit IRC (Ping timeout: 272 seconds)
[21:35:47] *** kwmiebach__ <kwmiebach__!sid16855@gateway/web/irccloud.com/x-ykpsekjocalcjbjz> has quit IRC (Ping timeout: 272 seconds)
[21:35:52] *** Klumben <Klumben!Nsaiswatch@elmo.stole-your.pw> has quit IRC (Ping timeout: 272 seconds)
[21:35:53] *** littlebear <littlebear!littlebear@2607:fea8:a220:7e3:43c:8cea:d765:ba61> has quit IRC (Ping timeout: 272 seconds)
[21:35:53] *** forrestv <forrestv!forrestv@unaffiliated/forrestv> has quit IRC (Ping timeout: 272 seconds)
[21:35:53] *** cory___ <cory___!sid180108@gateway/web/irccloud.com/x-thaaklhrjchdaboo> has quit IRC (Ping timeout: 272 seconds)
[21:35:53] *** amatecha <amatecha!sid10006@gateway/web/irccloud.com/x-rrziefnkbmgxxrtq> has quit IRC (Ping timeout: 272 seconds)
[21:35:53] *** HalfEatenPie <HalfEatenPie!~HalfEaten@unaffiliated/halfeatenpie> has quit IRC (Ping timeout: 272 seconds)
[21:35:54] *** marr <marr!~ccc@159-205-243-117.adsl.inetia.pl> has joined #angularjs
[21:35:55] *** boubbin_ <boubbin_!boubbin@lib.so> has joined #angularjs
[21:35:55] *** ries_ <ries_!~ries@D979C7EF.cm-3-2d.dynamic.ziggo.nl> has joined #angularjs
[21:35:55] *** xamanu__ <xamanu__!~xamanu@mail.consciente.de> has joined #angularjs
[21:35:56] *** toin0u|away <toin0u|away!~toin0u@185.14.186.176> has joined #angularjs
[21:35:59] *** jj- <jj-!~juutiju@hilla.kapsi.fi> has quit IRC (Ping timeout: 250 seconds)
[21:35:59] *** M-ou-se <M-ou-se!~m-ou.se@m-ou.se> has quit IRC (Ping timeout: 250 seconds)
[21:35:59] *** kinabalu <kinabalu!~kinabalu@unaffiliated/kinabalu> has quit IRC (Ping timeout: 250 seconds)
[21:35:59] *** termleech <termleech!~termleech@195-154-86-162.rev.poneytelecom.eu> has quit IRC (Ping timeout: 250 seconds)
[21:36:00] *** nivag_ <nivag_!~gavin@121.99.202.67> has joined #angularjs
[21:36:04] *** TodPunk_ <TodPunk_!~quassel@68.169.47.218> has joined #angularjs
[21:36:06] *** jj- <jj-!juutiju@hilla.kapsi.fi> has joined #angularjs
[21:36:07] *** ries_ is now known as ries
[21:36:10] *** RangerRick <RangerRick!~quassel@cpe-2606-A000-45C2-6901-82EE-73FF-FE9F-967E.dyn6.twc.com> has quit IRC (Ping timeout: 272 seconds)
[21:36:10] *** wycats <wycats!sid79@gateway/web/irccloud.com/x-dpeoyemmongfodjp> has quit IRC (Ping timeout: 272 seconds)
[21:36:10] *** MJD <MJD!~quassel@scadrial.mjdsystems.ca> has quit IRC (Ping timeout: 272 seconds)
[21:36:11] *** Rodya_ <Rodya_!~Rodya_@2601:46:4001:e0b4:b05e:b05c:7321:3881> has quit IRC (Ping timeout: 272 seconds)
[21:36:11] *** cspotcode <cspotcode!uid80131@gateway/web/irccloud.com/x-wzmcjgyahcioyepc> has quit IRC (Ping timeout: 272 seconds)
[21:36:11] *** XSkinner <XSkinner!XSkinner@A.Land.Down.Under.PanicBNC.net> has quit IRC (Ping timeout: 272 seconds)
[21:36:12] *** joshtau <joshtau!sid17334@gateway/web/irccloud.com/x-vsothwqxfycwphox> has quit IRC (Ping timeout: 272 seconds)
[21:36:12] *** Orion3k <Orion3k!~Orion3k@47-51-33-228.static.mtpk.ca.charter.com> has quit IRC (Ping timeout: 272 seconds)
[21:36:12] *** rudycane <rudycane!~rudycane@hashbangs.com> has quit IRC (Ping timeout: 272 seconds)
[21:36:13] *** maxy <maxy!~maxy@217-162-144-46.dynamic.hispeed.ch> has quit IRC (Ping timeout: 272 seconds)
[21:36:17] *** malps13 <malps13!~quassel@188.116.38.80> has joined #angularjs
[21:36:19] *** PalTale <PalTale!kiwi@paltale.com> has joined #angularjs
[21:36:24] *** w2r5 <w2r5!~textual@c-69-242-232-38.hsd1.az.comcast.net> has quit IRC (Changing host)
[21:36:24] *** w2r5 <w2r5!~textual@unaffiliated/w2r5> has joined #angularjs
[21:36:24] *** fdev <fdev!~fdev@xd9bad026.dyn.telefonica.de> has quit IRC (Ping timeout: 264 seconds)
[21:36:24] *** csharper <csharper!~csharper@31.6.42.47> has quit IRC (Ping timeout: 264 seconds)
[21:36:24] *** doppio <doppio!~Bryson@45.55.251.192> has quit IRC (Ping timeout: 264 seconds)
[21:36:25] *** LeBlaaanc <LeBlaaanc!~LeBlaaanc@47.188.236.163> has quit IRC (Ping timeout: 264 seconds)
[21:36:25] *** jscarmon- <jscarmon-!~jscarmona@162.243.60.115> has joined #angularjs
[21:36:26] *** edrocks <edrocks!~edrocks@209.133.213.131> has joined #angularjs
[21:36:26] *** iraj <iraj!~iraj@unaffiliated/iraj> has quit IRC (Read error: Connection reset by peer)
[21:36:28] *** eyi_ <eyi_!jonah@triopw.us.to> has quit IRC (Ping timeout: 264 seconds)
[21:36:28] *** amitev__ <amitev__!~amitev@212.25.36.115> has quit IRC (Ping timeout: 264 seconds)
[21:36:28] *** shinnya <shinnya!~shinnya@245.144.137.133.dy.bbexcite.jp> has quit IRC (Ping timeout: 264 seconds)
[21:36:28] *** fedenunez <fedenunez!~fede@r167-61-112-67.dialup.adsl.anteldata.net.uy> has quit IRC (Ping timeout: 264 seconds)
[21:36:28] *** TodPunk <TodPunk!~quassel@68.169.47.218> has quit IRC (Ping timeout: 264 seconds)
[21:36:28] *** Circlefusion1 <Circlefusion1!~cf@cpe-74-132-161-93.kya.res.rr.com> has quit IRC (Ping timeout: 264 seconds)
[21:36:30] *** tr_h <tr_h!~tr_h@li1204-10.members.linode.com> has joined #angularjs
[21:36:31] *** thomas1_ <thomas1_!~thomas@freenode/staff/thomas> has quit IRC (Read error: Connection reset by peer)
[21:36:32] *** eyi <eyi!jonah@triopw.us.to> has joined #angularjs
[21:36:32] *** csharper <csharper!~csharper@31.6.42.47> has joined #angularjs
[21:36:36] *** cdmsn <cdmsn!cdmsn@82.96.72.46> has joined #angularjs
[21:36:36] *** thomas1 <thomas1!~thomas@freenode/staff/thomas> has joined #angularjs
[21:36:37] *** joeytwiddle_ <joeytwiddle_!~joeytwidd@162.243.115.31> has joined #angularjs
[21:36:37] *** ekarlso_ <ekarlso_!~ekarlso@85.17.207.6> has joined #angularjs
[21:36:40] *** dopples <dopples!~Bryson@45.55.251.192> has joined #angularjs
[21:36:40] *** amitev <amitev!~amitev@212.25.36.115> has joined #angularjs
[21:36:43] *** mayamai <mayamai!~yamiam@192.3.160.145> has joined #angularjs
[21:36:50] *** jimmyff <jimmyff!sid11140@gateway/web/irccloud.com/x-rkvbielayivscnps> has joined #angularjs
[21:36:52] *** LeBlaaanc <LeBlaaanc!~LeBlaaanc@47.188.236.163> has joined #angularjs
[21:36:57] *** pulaski <pulaski!~pulaski@2604:180:2:e74::5a38> has joined #angularjs
[21:36:59] *** ggherdov <ggherdov!sid11402@gateway/web/irccloud.com/x-sblttwcxgzwgseoh> has joined #angularjs
[21:37:00] *** jcstewart <jcstewart!~jake@104.236.53.75> has joined #angularjs
[21:37:02] *** Somatt <Somatt!famic@snoozebutton.net> has joined #angularjs
[21:37:04] *** mrkake <mrkake!~kake@209-6-195-29.c3-0.smr-ubr2.sbo-smr.ma.cable.rcn.com> has joined #angularjs
[21:37:09] *** shinnya <shinnya!~shinnya@245.144.137.133.dy.bbexcite.jp> has joined #angularjs
[21:37:11] *** boonkerz <boonkerz!~Thomas@static.130.78.9.5.clients.your-server.de> has joined #angularjs
[21:37:13] *** bayousoft <bayousoft!~textual@130.70.12.3> has quit IRC (Read error: Connection reset by peer)
[21:37:14] *** RangerRick <RangerRick!~quassel@cpe-2606-A000-45C2-6901-82EE-73FF-FE9F-967E.dyn6.twc.com> has joined #angularjs
[21:37:14] *** MJD <MJD!~quassel@scadrial.mjdsystems.ca> has joined #angularjs
[21:37:15] *** XSkinner <XSkinner!XSkinner@A.Land.Down.Under.PanicBNC.net> has joined #angularjs
[21:37:20] *** bloodbare <bloodbare!~bloodbare@ec2-79-125-12-87.eu-west-1.compute.amazonaws.com> has joined #angularjs
[21:37:20] *** Rodya_ <Rodya_!~Rodya_@c-71-224-101-129.hsd1.pa.comcast.net> has joined #angularjs
[21:37:20] *** Stummi <Stummi!~Stummi@stummi.org> has joined #angularjs
[21:37:21] *** thrasibule <thrasibule!~quassel@2607:5300:60:2391::1> has joined #angularjs
[21:37:27] *** Liam` <Liam`!~Liam@znc.liam.sh> has joined #angularjs
[21:37:31] *** clamstar <clamstar!~rx-ident@162.243.230.189> has joined #angularjs
[21:37:31] *** Klumben <Klumben!Nsaiswatch@elmo.stole-your.pw> has joined #angularjs
[21:37:39] *** archon- <archon-!archon@104-14-158-187.lightspeed.austtx.sbcglobal.net> has joined #angularjs
[21:37:41] *** strohalm <strohalm!~smoofi@unaffiliated/strohi> has quit IRC (Ping timeout: 240 seconds)
[21:37:49] *** Orion3k <Orion3k!~Orion3k@47-51-33-228.static.mtpk.ca.charter.com> has joined #angularjs
[21:37:56] *** forrestv <forrestv!forrestv@unaffiliated/forrestv> has joined #angularjs
[21:37:59] *** kinabalu <kinabalu!~kinabalu@unaffiliated/kinabalu> has joined #angularjs
[21:38:10] *** php_ <php_!~php@149.202.250.22> has quit IRC (Changing host)
[21:38:10] *** php_ <php_!~php@unaffiliated/php> has joined #angularjs
[21:38:10] *** M-ou-se_ is now known as M-ou-se
[21:38:14] *** php_ is now known as php
[21:38:15] *** jbondhus <jbondhus!~quassel@www.jbondhus.com> has joined #angularjs
[21:38:16] *** dgo <dgo!b2276f7b@gateway/web/cgi-irc/kiwiirc.com/ip.178.39.111.123> has quit IRC (Quit: http://www.kiwiirc.com/ - A hand crafted IRC client)
[21:38:35] *** ruurd <ruurd!ruurd@gateway/shell/layerbnc/x-fbkgquaftsafursr> has joined #angularjs
[21:38:38] *** Lowell <Lowell!sid43163@gateway/web/irccloud.com/x-tmtktsornetzvxoe> has joined #angularjs
[21:38:38] *** Akufen <Akufen!~Akufen@unaffiliated/akufen> has joined #angularjs
[21:38:41] *** Alina-malina <Alina-malina!~Alina-mal@37.157.216.181> has quit IRC (Ping timeout: 240 seconds)
[21:38:42] *** cosmo1t <cosmo1t!montenis@64-83-206-90.static.stcd.mn.charter.com> has joined #angularjs
[21:38:48] *** Circlefusion <Circlefusion!~cf@cpe-74-132-161-93.kya.res.rr.com> has joined #angularjs
[21:38:54] *** NomadJim_ <NomadJim_!~NomadJim@pdpc/supporter/active/nomadjim> has quit IRC (Ping timeout: 275 seconds)
[21:38:58] *** ruurd is now known as Guest77356
[21:39:05] *** bayousoft <bayousoft!~textual@130.70.12.3> has joined #angularjs
[21:39:17] *** HalfEatenPie <HalfEatenPie!~HalfEaten@unaffiliated/halfeatenpie> has joined #angularjs
[21:39:19] *** plutoniix <plutoniix!~q@node-rg4.pool-180-180.dynamic.totbb.net> has joined #angularjs
[21:39:26] *** joseph_arnstein_ <joseph_arnstein_!sid180110@gateway/web/irccloud.com/x-kxesskxvnllqphmb> has quit IRC (Ping timeout: 265 seconds)
[21:39:26] *** ulkesh <ulkesh!sid140298@gateway/web/irccloud.com/x-boshnqjjfhpzlxhx> has joined #angularjs
[21:39:30] *** termleech <termleech!~termleech@195-154-86-162.rev.poneytelecom.eu> has joined #angularjs
[21:39:36] *** rand0m <rand0m!~rand0m@host86-139-27-149.range86-139.btcentralplus.com> has joined #angularjs
[21:39:47] *** fedenunez <fedenunez!~fede@r167-61-112-67.dialup.adsl.anteldata.net.uy> has joined #angularjs
[21:39:47] *** Villae <Villae!villae@run.bombsquad.org> has joined #angularjs
[21:40:01] *** ish <ish!sid1441@gateway/web/irccloud.com/x-glnoqsspufriwrtk> has joined #angularjs
[21:40:02] *** TodPunk_ is now known as TodPunk
[21:40:16] *** kblin <kblin!~kai@h2176968.stratoserver.net> has joined #angularjs
[21:40:16] *** kblin <kblin!~kai@h2176968.stratoserver.net> has quit IRC (Changing host)
[21:40:16] *** kblin <kblin!~kai@samba/team/kai> has joined #angularjs
[21:40:20] *** zero7 <zero7!sid10708@gateway/web/irccloud.com/x-rbmlxxjlkmeyirdp> has quit IRC (Ping timeout: 265 seconds)
[21:40:22] *** Garfield-fr <Garfield-fr!~Garfield-@unaffiliated/garfield-fr> has quit IRC (Quit: Linkinus - http://linkinus.com)
[21:40:26] *** maxy <maxy!~maxy@217-162-144-46.dynamic.hispeed.ch> has joined #angularjs
[21:40:31] *** derrzzaa <derrzzaa!~derrzzaa@znc.mcp.io> has joined #angularjs
[21:40:31] *** devin__ <devin__!sid177405@gateway/web/irccloud.com/x-sxxmwcieedilzbdr> has joined #angularjs
[21:40:33] *** klobucar <klobucar!sid1012@gateway/web/irccloud.com/x-vzkrcvviyfwzgbru> has joined #angularjs
[21:40:46] *** hendricius <hendricius!~hendriciu@37.59.199.74> has joined #angularjs
[21:42:15] *** edrocks_ <edrocks_!~edrocks@209-133-213-131.static.hvvc.us> has joined #angularjs
[21:42:40] *** prophesi1 <prophesi1!~Adium@host-68-169-169-183.VABOLT2.epbfi.com> has left #angularjs
[21:42:46] *** dodobrain <dodobrain!~dodobrain@14-202-40-12.tpgi.com.au> has joined #angularjs
[21:43:21] *** bayousoft <bayousoft!~textual@130.70.12.3> has quit IRC (Ping timeout: 240 seconds)
[21:43:22] *** Rodya__ <Rodya__!~Rodya_@c-71-224-101-129.hsd1.pa.comcast.net> has joined #angularjs
[21:44:00] *** anth0ny <anth0ny!~quassel@unaffiliated/anth0ny> has quit IRC (Read error: Connection reset by peer)
[21:44:13] *** PalTale <PalTale!kiwi@paltale.com> has quit IRC (Ping timeout: 250 seconds)
[21:44:13] *** AlexejK <AlexejK!~AlexejK@unaffiliated/alexejk> has quit IRC (Ping timeout: 250 seconds)
[21:44:13] *** uru <uru!~uru@bonegnawer.fourwindspack.net> has quit IRC (Ping timeout: 250 seconds)
[21:44:13] *** vitaly__ <vitaly__!~vitaly@ip-58-28-215-134.wxnz.net> has quit IRC (Ping timeout: 250 seconds)
[21:44:15] *** vitaly <vitaly!~vitaly@ip-58-28-215-134.wxnz.net> has joined #angularjs
[21:44:32] *** barraponto <barraponto!~barrapont@192.241.165.172> has joined #angularjs
[21:44:39] *** Jello_Raptor <Jello_Raptor!~Jello_Rap@li641-12.members.linode.com> has quit IRC (Ping timeout: 250 seconds)
[21:44:45] *** gcommer <gcommer!~gcommer@gcommer.com> has joined #angularjs
[21:44:45] *** ggherdov <ggherdov!sid11402@gateway/web/irccloud.com/x-sblttwcxgzwgseoh> has quit IRC (Ping timeout: 272 seconds)
[21:44:46] *** Lowell <Lowell!sid43163@gateway/web/irccloud.com/x-tmtktsornetzvxoe> has quit IRC (Ping timeout: 272 seconds)
[21:44:46] *** Klumben <Klumben!Nsaiswatch@elmo.stole-your.pw> has quit IRC (Ping timeout: 272 seconds)
[21:44:46] *** tr_h <tr_h!~tr_h@li1204-10.members.linode.com> has quit IRC (Ping timeout: 272 seconds)
[21:44:47] *** marr <marr!~ccc@159-205-243-117.adsl.inetia.pl> has quit IRC (Ping timeout: 272 seconds)
[21:44:47] *** RangerRick <RangerRick!~quassel@cpe-2606-A000-45C2-6901-82EE-73FF-FE9F-967E.dyn6.twc.com> has quit IRC (Quit: No Ping reply in 180 seconds.)
[21:44:47] *** tr_h <tr_h!tr_h@2600:3c01::f03c:91ff:fe0a:12e> has joined #angularjs
[21:44:47] *** uru|away <uru|away!~uru@bonegnawer.fourwindspack.net> has joined #angularjs
[21:44:48] *** ulkesh <ulkesh!sid140298@gateway/web/irccloud.com/x-boshnqjjfhpzlxhx> has quit IRC (Ping timeout: 272 seconds)
[21:44:48] *** XSkinner <XSkinner!XSkinner@A.Land.Down.Under.PanicBNC.net> has quit IRC (Ping timeout: 272 seconds)
[21:44:48] *** jimmyff <jimmyff!sid11140@gateway/web/irccloud.com/x-rkvbielayivscnps> has quit IRC (Ping timeout: 272 seconds)
[21:44:49] *** jcstewart <jcstewart!~jake@104.236.53.75> has quit IRC (Ping timeout: 272 seconds)
[21:44:49] *** pulaski <pulaski!~pulaski@2604:180:2:e74::5a38> has quit IRC (Ping timeout: 272 seconds)
[21:44:49] *** jscarmon- <jscarmon-!~jscarmona@162.243.60.115> has quit IRC (Ping timeout: 272 seconds)
[21:44:49] *** ries <ries!~ries@D979C7EF.cm-3-2d.dynamic.ziggo.nl> has quit IRC (Ping timeout: 272 seconds)
[21:44:49] *** boubbin_ <boubbin_!boubbin@lib.so> has quit IRC (Ping timeout: 272 seconds)
[21:44:50] *** marr <marr!~ccc@159-205-243-117.adsl.inetia.pl> has joined #angularjs
[21:44:51] *** jnap_ <jnap_!sid41868@gateway/web/irccloud.com/session> has joined #angularjs
[21:44:52] *** Mr_Pancake <Mr_Pancake!~Pancake@2001:41d0:8:e386::1> has joined #angularjs
[21:44:52] *** Mr_Pancake <Mr_Pancake!~Pancake@2001:41d0:8:e386::1> has quit IRC (Excess Flood)
[21:44:52] *** jnap_ <jnap_!sid41868@gateway/web/irccloud.com/session> has quit IRC (Changing host)
[21:44:52] *** jnap_ <jnap_!sid41868@gateway/web/irccloud.com/x-feyvwjzntaavvpuh> has joined #angularjs
[21:45:00] *** eyi_ <eyi_!jonah@triopw.us.to> has joined #angularjs
[21:45:01] *** ish <ish!sid1441@gateway/web/irccloud.com/x-glnoqsspufriwrtk> has quit IRC (Ping timeout: 272 seconds)
[21:45:01] *** fedenunez <fedenunez!~fede@r167-61-112-67.dialup.adsl.anteldata.net.uy> has quit IRC (Ping timeout: 272 seconds)
[21:45:02] *** Circlefusion <Circlefusion!~cf@cpe-74-132-161-93.kya.res.rr.com> has quit IRC (Ping timeout: 272 seconds)
[21:45:02] *** HalfEatenPie <HalfEatenPie!~HalfEaten@unaffiliated/halfeatenpie> has quit IRC (Ping timeout: 272 seconds)
[21:45:02] *** Rodya_ <Rodya_!~Rodya_@c-71-224-101-129.hsd1.pa.comcast.net> has quit IRC (Ping timeout: 272 seconds)
[21:45:03] *** forrestv <forrestv!forrestv@unaffiliated/forrestv> has quit IRC (Ping timeout: 272 seconds)
[21:45:03] *** ekarlso_ <ekarlso_!~ekarlso@85.17.207.6> has quit IRC (Ping timeout: 272 seconds)
[21:45:04] *** xamanu__ <xamanu__!~xamanu@mail.consciente.de> has quit IRC (Ping timeout: 272 seconds)
[21:45:08] *** Aliks <Aliks!~aliks@165.sub-70-213-21.myvzw.com> has quit IRC (Remote host closed the connection)
[21:45:08] *** thrasibule_ <thrasibule_!~quassel@2607:5300:60:2391::1> has joined #angularjs
[21:45:13] *** prophesi <prophesi!~Adium@host-68-169-169-183.VABOLT2.epbfi.com> has joined #angularjs
[21:45:15] *** uru|away is now known as Guest34897
[21:45:20] *** jbondhus <jbondhus!~quassel@www.jbondhus.com> has quit IRC (Read error: Connection reset by peer)
[21:45:24] *** joshfinnie <joshfinnie!~joshfinni@192.241.179.87> has joined #angularjs
[21:45:24] *** boubbin <boubbin!boubbin@lib.so> has joined #angularjs
[21:45:28] *** RangerRick <RangerRick!~quassel@cpe-2606-A000-45C2-6901-82EE-73FF-FE9F-967E.dyn6.twc.com> has joined #angularjs
[21:45:30] *** thrasibule <thrasibule!~quassel@2607:5300:60:2391::1> has quit IRC (Read error: Connection reset by peer)
[21:45:30] *** MJD <MJD!~quassel@scadrial.mjdsystems.ca> has quit IRC (Read error: Connection reset by peer)
[21:45:39] *** klobucar <klobucar!sid1012@gateway/web/irccloud.com/x-vzkrcvviyfwzgbru> has quit IRC (Ping timeout: 272 seconds)
[21:45:39] *** Guest77356 <Guest77356!ruurd@gateway/shell/layerbnc/x-fbkgquaftsafursr> has quit IRC (Ping timeout: 272 seconds)
[21:45:40] *** mrkake <mrkake!~kake@209-6-195-29.c3-0.smr-ubr2.sbo-smr.ma.cable.rcn.com> has quit IRC (Ping timeout: 272 seconds)
[21:45:44] *** mven <mven!~textual@32.97.110.57> has joined #angularjs
[21:45:45] *** csharper <csharper!~csharper@31.6.42.47> has quit IRC (Ping timeout: 264 seconds)
[21:45:47] *** csharper <csharper!~csharper@31.6.42.47> has joined #angularjs
[21:45:47] *** LeBlaaanc <LeBlaaanc!~LeBlaaanc@47.188.236.163> has quit IRC (Max SendQ exceeded)
[21:45:48] *** rudycane <rudycane!~rudycane@hashbangs.com> has joined #angularjs
[21:45:49] *** cosmo1t <cosmo1t!montenis@64-83-206-90.static.stcd.mn.charter.com> has quit IRC (Ping timeout: 264 seconds)
[21:45:50] *** joeytwiddle_ <joeytwiddle_!~joeytwidd@162.243.115.31> has quit IRC (Ping timeout: 264 seconds)
[21:45:50] *** eyi <eyi!jonah@triopw.us.to> has quit IRC (Ping timeout: 264 seconds)
[21:45:51] *** edrocks <edrocks!~edrocks@209.133.213.131> has quit IRC (Ping timeout: 264 seconds)
[21:45:52] *** rand0m <rand0m!~rand0m@host86-139-27-149.range86-139.btcentralplus.com> has quit IRC (Ping timeout: 264 seconds)
[21:45:55] *** AlexejK <AlexejK!~AlexejK@unaffiliated/alexejk> has joined #angularjs
[21:45:55] *** jscarmona <jscarmona!~jscarmona@162.243.60.115> has joined #angularjs
[21:45:57] *** mven <mven!~textual@32.97.110.57> has quit IRC (Excess Flood)
[21:45:59] *** pulaski <pulaski!~pulaski@2604:180:2:e74::5a38> has joined #angularjs
[21:46:01] *** jcstewart <jcstewart!~jake@104.236.53.75> has joined #angularjs
[21:46:04] *** jbondhus <jbondhus!~quassel@www.jbondhus.com> has joined #angularjs
[21:46:06] *** Alina-malina <Alina-malina!~Alina-mal@37.157.216.181> has joined #angularjs
[21:46:10] *** MJD <MJD!~quassel@scadrial.mjdsystems.ca> has joined #angularjs
[21:46:17] *** LeBlaaanc <LeBlaaanc!~LeBlaaanc@47.188.236.163> has joined #angularjs
[21:46:17] *** rand0m <rand0m!~rand0m@host86-139-27-149.range86-139.btcentralplus.com> has joined #angularjs
[21:46:22] *** fedenunez <fedenunez!~fede@167.61.112.67> has joined #angularjs
[21:46:27] *** joeytwiddle <joeytwiddle!~joeytwidd@162.243.115.31> has joined #angularjs
[21:46:27] *** PalTale <PalTale!~PalTale@paltale.com> has joined #angularjs
[21:46:35] *** ries <ries!~ries@D979C7EF.cm-3-2d.dynamic.ziggo.nl> has joined #angularjs
[21:46:43] *** gvhoecke <gvhoecke!~gvhoecke@106.195-242-81.adsl-dyn.isp.belgacom.be> has joined #angularjs
[21:47:09] *** ekarlso_ <ekarlso_!~ekarlso@85.17.207.6> has joined #angularjs
[21:47:09] *** Klumben <Klumben!Nsaiswatch@elmo.stole-your.pw> has joined #angularjs
[21:47:13] *** Mr_Pancake <Mr_Pancake!~Pancake@ns336688.ip-5-135-160.eu> has joined #angularjs
[21:47:26] *** forrestv <forrestv!forrestv@unaffiliated/forrestv> has joined #angularjs
[21:48:04] *** Jello_Raptor <Jello_Raptor!~Jello_Rap@li641-12.members.linode.com> has joined #angularjs
[21:48:28] *** idwbpirate <idwbpirate!~idwbpirat@66-215-238-134.dhcp.rvsd.ca.charter.com> has joined #angularjs
[21:48:35] *** cosmo1t <cosmo1t!montenis@64-83-206-90.static.stcd.mn.charter.com> has joined #angularjs
[21:48:39] *** SaltyCat1ish is now known as SaltyCatFish
[21:48:39] *** anth0ny <anth0ny!~quassel@unaffiliated/anth0ny> has joined #angularjs
[21:48:52] *** christo_m <christo_m!~christo@64.137.230.125> has joined #angularjs
[21:49:26] *** nausea <nausea!~head@ticklemynausea.net> has joined #angularjs
[21:49:26] *** nausea <nausea!~head@ticklemynausea.net> has quit IRC (Changing host)
[21:49:26] *** nausea <nausea!~head@unaffiliated/neofreak> has joined #angularjs
[21:49:33] *** moogumbo <moogumbo!sid31999@gateway/web/irccloud.com/x-ekjvveeqsicslczj> has joined #angularjs
[21:49:54] *** roek <roek!sid15176@gateway/web/irccloud.com/x-ykpwjbekauamzzww> has joined #angularjs
[21:50:02] *** ruurd- <ruurd-!ruurd@gateway/shell/layerbnc/x-tiigzhgzktrsqaxy> has joined #angularjs
[21:50:04] *** mven <mven!~textual@32.97.110.57> has joined #angularjs
[21:50:04] <SaltyCatFish> Any mongo users out there see what wrong with this statment? db.logs.find({}, "level":1)
[21:50:10] *** HalfEatenPie <HalfEatenPie!~HalfEaten@unaffiliated/halfeatenpie> has joined #angularjs
[21:50:22] <SaltyCatFish> keep getting "Syntax error: unexpected token"
[21:50:25] *** monokrome <monokrome!~monokrome@54.88.139.115> has joined #angularjs
[21:50:49] *** bjoops <bjoops!~bjoo@trippin.online> has quit IRC (Ping timeout: 244 seconds)
[21:51:04] *** Circlefusion <Circlefusion!~cf@cpe-74-132-161-93.kya.res.rr.com> has joined #angularjs
[21:51:55] *** dodobrain <dodobrain!~dodobrain@14-202-40-12.tpgi.com.au> has quit IRC (Quit: Leaving)
[21:51:55] *** Aliks <Aliks!~aliks@2600:1010:b048:60eb:8c9a:4735:91f3:9904> has joined #angularjs
[21:52:03] *** Eleeleth <Eleeleth!sid43850@gateway/web/irccloud.com/x-xqicgqacryinpcel> has joined #angularjs
[21:52:12] *** ngWalrus <ngWalrus!~lammis@95.85.58.114> has joined #angularjs
[21:52:21] *** kc3 <kc3!~kclark@svr1.autoverify.net> has joined #angularjs
[21:52:39] *** fuchstronaut <fuchstronaut!~fuchstron@p2003005BED2C0E008820FF12EE3A017A.dip0.t-ipconnect.de> has joined #angularjs
[21:52:40] *** fuchstronaut <fuchstronaut!~fuchstron@p2003005BED2C0E008820FF12EE3A017A.dip0.t-ipconnect.de> has quit IRC (Changing host)
[21:52:40] *** fuchstronaut <fuchstronaut!~fuchstron@unaffiliated/fuchstronaut> has joined #angularjs
[21:52:41] *** bjoops <bjoops!~bjoo@trippin.online> has joined #angularjs
[21:53:06] *** fcanela_ is now known as fcanela
[21:53:07] *** Kamuela <Kamuela!sid111576@gateway/web/irccloud.com/x-douyraymbyqaestl> has joined #angularjs
[21:53:08] *** solexious <solexious!sid331@gateway/web/irccloud.com/x-xuaxlcycwazjzisr> has joined #angularjs
[21:53:23] *** trave <trave!sid38181@gateway/web/irccloud.com/x-xxsjgjudsnayxqdw> has joined #angularjs
[21:53:40] *** eshlox <eshlox!uid44222@gateway/web/irccloud.com/x-gfzistjifkcrqthm> has joined #angularjs
[21:54:06] *** asteele <asteele!~Cronoh@4.16.207.5> has joined #angularjs
[21:54:19] *** beckyconning_ <beckyconning_!sid31604@gateway/web/irccloud.com/x-biidvmkjbwmbdrbi> has joined #angularjs
[21:54:29] *** techntoke_ <techntoke_!sid124863@gateway/web/irccloud.com/x-npjlisfzyesyyskx> has joined #angularjs
[21:54:34] *** cory___ <cory___!sid180108@gateway/web/irccloud.com/x-xprfiyydbhuypgzu> has joined #angularjs
[21:54:53] *** deeb <deeb!~dee@a85-139-8-162.cpe.netcabo.pt> has quit IRC (Quit: deeb)
[21:55:07] *** jimklo <jimklo!~jimklo@192.12.16.110> has quit IRC (Remote host closed the connection)
[21:55:17] *** klobucar <klobucar!sid1012@gateway/web/irccloud.com/x-kukuifatjbwtwgdq> has joined #angularjs
[21:55:41] *** jimklo <jimklo!~jimklo@192.12.16.110> has joined #angularjs
[21:56:16] *** gojira__ <gojira__!sid120399@gateway/web/irccloud.com/x-ewtcletrhkswlkcs> has joined #angularjs
[21:56:20] *** wycats <wycats!sid79@gateway/web/irccloud.com/x-gpeutxlbjdzvpbpj> has joined #angularjs
[21:56:26] *** fees <fees!~fees_@d54C22E1C.access.telenet.be> has joined #angularjs
[21:56:34] *** cspotcode <cspotcode!uid80131@gateway/web/irccloud.com/x-fjxubrkvbcfcfraj> has joined #angularjs
[21:56:55] *** bayousoft <bayousoft!~textual@130.70.12.3> has joined #angularjs
[21:57:23] *** Aliks <Aliks!~aliks@2600:1010:b048:60eb:8c9a:4735:91f3:9904> has quit IRC (Remote host closed the connection)
[21:57:41] *** fuchstronaut <fuchstronaut!~fuchstron@unaffiliated/fuchstronaut> has quit IRC (Ping timeout: 272 seconds)
[21:57:41] *** mven <mven!~textual@32.97.110.57> has quit IRC (Ping timeout: 272 seconds)
[21:57:43] *** ish <ish!sid1441@gateway/web/irccloud.com/x-dpxmgkpmfdxkdfwb> has joined #angularjs
[21:57:46] *** alphonse23_ <alphonse23_!sid34238@gateway/web/irccloud.com/x-bffjjaxiytctjibz> has joined #angularjs
[21:57:53] *** jimklo <jimklo!~jimklo@192.12.16.110> has quit IRC (Remote host closed the connection)
[21:58:00] *** Aliks <Aliks!~aliks@2600:1010:b048:60eb:8c9a:4735:91f3:9904> has joined #angularjs
[21:58:01] *** joseph_arnstein_ <joseph_arnstein_!sid180110@gateway/web/irccloud.com/x-ddxcuthzehndgyjh> has joined #angularjs
[21:58:08] *** jimklo <jimklo!~jimklo@192.12.16.110> has joined #angularjs
[21:58:24] *** Lowell <Lowell!sid43163@gateway/web/irccloud.com/x-tpljsgchtgspyvxa> has joined #angularjs
[21:58:24] *** wizonesolutions <wizonesolutions!sid27627@drupal.org/user/739994/view> has joined #angularjs
[21:58:28] *** archon- <archon-!archon@104-14-158-187.lightspeed.austtx.sbcglobal.net> has left #angularjs
[21:58:30] *** mrkake <mrkake!~kake@209-6-195-29.c3-0.smr-ubr2.sbo-smr.ma.cable.rcn.com> has joined #angularjs
[21:58:45] *** Guest34897 is now known as uru
[21:59:02] *** Guest39952 is now known as AciD`
[21:59:10] *** ulkesh <ulkesh!sid140298@gateway/web/irccloud.com/x-plcsxademrwcbqkb> has joined #angularjs
[21:59:21] *** Aliks_ <Aliks_!~aliks@2600:1010:b048:60eb:94be:b77d:9336:d879> has joined #angularjs
[21:59:23] *** xamanu_ <xamanu_!~xamanu@mail.consciente.de> has joined #angularjs
[21:59:47] *** clode_______ <clode_______!sid40776@gateway/web/irccloud.com/x-fckhdnhylnvnycmr> has joined #angularjs
[21:59:48] *** zol1 <zol1!~zolomon@31.208.76.60> has joined #angularjs
[21:59:52] *** arashb <arashb!~arashb@135-23-132-76.cpe.pppoe.ca> has joined #angularjs
[22:00:29] *** ggherdov <ggherdov!sid11402@gateway/web/irccloud.com/x-hzxmpwvemxmeiegq> has joined #angularjs
[22:01:03] *** junovo_ <junovo_!~junovo@cpc76294-cosh16-2-0-cust926.6-1.cable.virginm.net> has quit IRC ()
[22:01:16] *** Aliks_ <Aliks_!~aliks@2600:1010:b048:60eb:94be:b77d:9336:d879> has quit IRC (Remote host closed the connection)
[22:01:27] *** joshtau <joshtau!sid17334@gateway/web/irccloud.com/x-mlxqzrarrezwyrch> has joined #angularjs
[22:01:52] *** Aliks_ <Aliks_!~aliks@165.sub-70-213-21.myvzw.com> has joined #angularjs
[22:02:14] *** zero7 <zero7!sid10708@gateway/web/irccloud.com/x-zmoqwxhsrrksuzpi> has joined #angularjs
[22:02:45] *** Aliks <Aliks!~aliks@2600:1010:b048:60eb:8c9a:4735:91f3:9904> has quit IRC (Ping timeout: 272 seconds)
[22:02:53] *** kwmiebach__ <kwmiebach__!sid16855@gateway/web/irccloud.com/x-hidgsbeymivmjbix> has joined #angularjs
[22:03:10] *** al-damiri <al-damiri!uid142631@gateway/web/irccloud.com/x-nlgmpyvormajzpzg> has joined #angularjs
[22:04:54] *** iraj_ <iraj_!~iraj@91.107.149.82> has quit IRC (Ping timeout: 276 seconds)
[22:05:06] *** IShaDoWl <IShaDoWl!uid155795@gateway/web/irccloud.com/x-zlknmerhosmuyxlg> has joined #angularjs
[22:06:00] *** xtreamwayz <xtreamwayz!sid141190@gateway/web/irccloud.com/x-cblgmtwbqzfmwfqt> has joined #angularjs
[22:06:01] *** Aliks_ <Aliks_!~aliks@165.sub-70-213-21.myvzw.com> has quit IRC (Ping timeout: 240 seconds)
[22:06:04] *** amatecha <amatecha!sid10006@gateway/web/irccloud.com/x-quzpwmwplwhqeald> has joined #angularjs
[22:06:25] *** elijah <elijah!sid21431@gateway/web/irccloud.com/x-fdmuruuchdrfnmkc> has joined #angularjs
[22:06:28] *** heartburn <heartburn!~heartburn@213.21.33.24> has quit IRC (Read error: Connection reset by peer)
[22:07:11] *** bayousoft <bayousoft!~textual@130.70.12.3> has quit IRC (Ping timeout: 272 seconds)
[22:07:25] *** Aliks <Aliks!~aliks@2600:1010:b048:60eb:94be:b77d:9336:d879> has joined #angularjs
[22:07:51] *** hashrocket <hashrocket!uid27380@gateway/web/irccloud.com/x-tbrfemcwqemvoinh> has joined #angularjs
[22:08:52] *** mven <mven!~textual@32.97.110.57> has joined #angularjs
[22:09:12] *** vipul_ <vipul_!7aa28b34@gateway/web/freenode/ip.122.162.139.52> has quit IRC (Ping timeout: 240 seconds)
[22:10:05] *** JackMc <JackMc!sid85402@gateway/web/irccloud.com/x-tdrhmgsqtkvgtjuq> has joined #angularjs
[22:11:06] *** jimmyff <jimmyff!sid11140@gateway/web/irccloud.com/x-fosrcrovvyyulsdo> has joined #angularjs
[22:11:53] *** pimlu <pimlu!~pimlu@128.172.35.13> has joined #angularjs
[22:12:56] *** Coldblackice <Coldblackice!~anonz@unaffiliated/coldblackice> has joined #angularjs
[22:13:03] *** amcorreia <amcorreia!~amcorreia@2804:7f5:280:5073::1> has joined #angularjs
[22:15:18] *** fedenunez <fedenunez!~fede@167.61.112.67> has quit IRC (Ping timeout: 276 seconds)
[22:15:31] *** heartburn <heartburn!~heartburn@213.21.33.24> has joined #angularjs
[22:15:33] *** Coldblackice <Coldblackice!~anonz@unaffiliated/coldblackice> has quit IRC (Client Quit)
[22:15:46] *** jlebrech <jlebrech!~jlebrech@109.109.143.238> has joined #angularjs
[22:15:56] *** __m8 <__m8!~m8@host114-180-dynamic.11-87-r.retail.telecomitalia.it> has joined #angularjs
[22:16:01] *** mischat <mischat!~mischat@2a02:c7f:c006:1e00:69d1:1f10:98b0:80da> has joined #angularjs
[22:16:10] *** __m8 <__m8!~m8@host114-180-dynamic.11-87-r.retail.telecomitalia.it> has quit IRC (Changing host)
[22:16:10] *** __m8 <__m8!~m8@unaffiliated/m8> has joined #angularjs
[22:16:12] *** __m8 is now known as m8
[22:17:24] *** dagda1 <dagda1!~dagda1@bcde521d.skybroadband.com> has quit IRC (Quit: Textual IRC Client: www.textualapp.com)
[22:18:19] *** bayousoft <bayousoft!~textual@130.70.12.3> has joined #angularjs
[22:18:59] *** NomadJim__ <NomadJim__!~NomadJim@72.168.161.212> has quit IRC (Quit: Leaving)
[22:19:22] *** zac <zac!~zac@c-98-250-82-25.hsd1.mi.comcast.net> has quit IRC ()
[22:20:00] *** davi-lima__ <davi-lima__!~Davi@177.206.196.199.dynamic.adsl.gvt.net.br> has joined #angularjs
[22:20:04] *** CreateMo <CreateMo!~textual@47.146.55.67> has quit IRC (Quit: My MacBook has gone to sleep. ZZZzzz…)
[22:20:41] *** akkonrad <akkonrad!~akkonrad3@gae109.internetdsl.tpnet.pl> has quit IRC (Ping timeout: 240 seconds)
[22:20:42] *** NomadJim <NomadJim!~NomadJim@pdpc/supporter/active/nomadjim> has joined #angularjs
[22:20:54] *** M1N10N4 <M1N10N4!~M1N10N@107.191.111.46> has quit IRC (Remote host closed the connection)
[22:21:00] *** jimklo_ <jimklo_!~jimklo@192.12.16.110> has joined #angularjs
[22:21:01] *** cgfbee <cgfbee!~bot@oc1.itim-cj.ro> has quit IRC (Excess Flood)
[22:21:25] *** u0m3__ <u0m3__!~u0m3@5-12-199-171.residential.rdsnet.ro> has joined #angularjs
[22:21:29] *** Dev0n <Dev0n!~Dev0n@unaffiliated/dev0n> has quit IRC (Ping timeout: 250 seconds)
[22:21:41] *** pspfolio <pspfolio!~pspfolio@62-121-49-2-static-dsl.ssp.fi> has joined #angularjs
[22:21:41] *** ^Migs^ <^Migs^!~migs@205.122.50.108> has joined #angularjs
[22:21:43] *** Aliks_ <Aliks_!~aliks@165.sub-70-213-21.myvzw.com> has joined #angularjs
[22:21:46] *** M1N10N <M1N10N!~M1N10N@107.191.111.46> has joined #angularjs
[22:21:48] *** NomadJim_ <NomadJim_!~NomadJim@pdpc/supporter/active/nomadjim> has joined #angularjs
[22:21:52] *** strohalm <strohalm!~smoofi@212.37.175.238> has joined #angularjs
[22:21:52] *** strohalm <strohalm!~smoofi@212.37.175.238> has quit IRC (Changing host)
[22:21:52] *** strohalm <strohalm!~smoofi@unaffiliated/strohi> has joined #angularjs
[22:21:54] *** magellanicloud_ <magellanicloud_!~magellani@2a02:810b:8340:3f18:b899:7011:6f92:f32b> has quit IRC (Ping timeout: 265 seconds)
[22:21:54] *** PalTale <PalTale!~PalTale@paltale.com> has quit IRC (Ping timeout: 250 seconds)
[22:22:07] *** _m8 <_m8!~m8@host114-180-dynamic.11-87-r.retail.telecomitalia.it> has joined #angularjs
[22:22:09] *** Migs <Migs!~migs@205.122.50.108> has quit IRC (Disconnected by services)
[22:22:10] *** ^Migs^ is now known as Migs
[22:22:15] <wrkrcoop> it seems weird to have a stores controller and a store controller … but stores controller would manage a list of stores, and a store controller would manage a particular store … what do yall think?
[22:22:20] *** nausea <nausea!~head@unaffiliated/neofreak> has quit IRC (Ping timeout: 250 seconds)
[22:22:21] *** Circlefusion <Circlefusion!~cf@cpe-74-132-161-93.kya.res.rr.com> has quit IRC (Ping timeout: 240 seconds)
[22:22:21] *** amergin <amergin!~jz@kapsi.fi> has quit IRC (Ping timeout: 250 seconds)
[22:22:23] *** PalTale <PalTale!~PalTale@paltale.com> has joined #angularjs
[22:22:39] *** _m8 <_m8!~m8@host114-180-dynamic.11-87-r.retail.telecomitalia.it> has quit IRC (Changing host)
[22:22:39] *** _m8 <_m8!~m8@unaffiliated/m8> has joined #angularjs
[22:22:40] *** m8 <m8!~m8@unaffiliated/m8> has quit IRC (Disconnected by services)
[22:22:41] *** WillMoogle <WillMoogle!sid38138@gateway/web/irccloud.com/x-ijhcecmnfbpdnqkr> has quit IRC (Ping timeout: 240 seconds)
[22:22:44] *** woohoo- <woohoo-!~bjoo@trippin.online> has joined #angularjs
[22:22:45] *** _m8 is now known as m8
[22:22:47] *** thrillgore <thrillgore!~ZugZug@c-73-207-195-231.hsd1.ga.comcast.net> has quit IRC (Ping timeout: 250 seconds)
[22:22:56] *** Pagan <Pagan!~Pagan@unaffiliated/pagan> has quit IRC (Ping timeout: 248 seconds)
[22:22:57] *** joshtau <joshtau!sid17334@gateway/web/irccloud.com/x-mlxqzrarrezwyrch> has quit IRC (Ping timeout: 272 seconds)
[22:22:57] *** ggherdov <ggherdov!sid11402@gateway/web/irccloud.com/x-hzxmpwvemxmeiegq> has quit IRC (Ping timeout: 272 seconds)
[22:22:57] *** ulkesh <ulkesh!sid140298@gateway/web/irccloud.com/x-plcsxademrwcbqkb> has quit IRC (Ping timeout: 272 seconds)
[22:22:57] *** wizonesolutions <wizonesolutions!sid27627@drupal.org/user/739994/view> has quit IRC (Ping timeout: 272 seconds)
[22:22:57] *** cspotcode <cspotcode!uid80131@gateway/web/irccloud.com/x-fjxubrkvbcfcfraj> has quit IRC (Ping timeout: 272 seconds)
[22:22:57] *** wycats <wycats!sid79@gateway/web/irccloud.com/x-gpeutxlbjdzvpbpj> has quit IRC (Ping timeout: 272 seconds)
[22:22:58] *** gvhoecke <gvhoecke!~gvhoecke@106.195-242-81.adsl-dyn.isp.belgacom.be> has quit IRC (Ping timeout: 272 seconds)
[22:22:58] *** jscarmona <jscarmona!~jscarmona@162.243.60.115> has quit IRC (Ping timeout: 272 seconds)
[22:22:58] *** devin__ <devin__!sid177405@gateway/web/irccloud.com/x-sxxmwcieedilzbdr> has quit IRC (Ping timeout: 272 seconds)
[22:22:58] *** ikevin_ <ikevin_!sid16762@gateway/web/irccloud.com/x-nufcfodrpzprdjad> has quit IRC (Ping timeout: 272 seconds)
[22:22:59] *** zero7 <zero7!sid10708@gateway/web/irccloud.com/x-zmoqwxhsrrksuzpi> has quit IRC (Ping timeout: 272 seconds)
[22:22:59] *** arashb <arashb!~arashb@135-23-132-76.cpe.pppoe.ca> has quit IRC (Ping timeout: 272 seconds)
[22:22:59] *** beckyconning_ <beckyconning_!sid31604@gateway/web/irccloud.com/x-biidvmkjbwmbdrbi> has quit IRC (Ping timeout: 272 seconds)
[22:22:59] *** eshlox <eshlox!uid44222@gateway/web/irccloud.com/x-gfzistjifkcrqthm> has quit IRC (Ping timeout: 272 seconds)
[22:22:59] *** Eleeleth <Eleeleth!sid43850@gateway/web/irccloud.com/x-xqicgqacryinpcel> has quit IRC (Ping timeout: 272 seconds)
[22:22:59] *** moogumbo <moogumbo!sid31999@gateway/web/irccloud.com/x-ekjvveeqsicslczj> has quit IRC (Ping timeout: 272 seconds)
[22:22:59] *** Klumben <Klumben!Nsaiswatch@elmo.stole-your.pw> has quit IRC (Ping timeout: 272 seconds)
[22:23:00] *** forrestv <forrestv!forrestv@unaffiliated/forrestv> has quit IRC (Ping timeout: 272 seconds)
[22:23:00] *** jnap_ <jnap_!sid41868@gateway/web/irccloud.com/x-feyvwjzntaavvpuh> has quit IRC (Ping timeout: 272 seconds)
[22:23:00] *** tr_h <tr_h!tr_h@2600:3c01::f03c:91ff:fe0a:12e> has quit IRC (Ping timeout: 272 seconds)
[22:23:00] *** Stummi <Stummi!~Stummi@stummi.org> has quit IRC (Ping timeout: 272 seconds)
[22:23:00] *** RangerRick <RangerRick!~quassel@cpe-2606-A000-45C2-6901-82EE-73FF-FE9F-967E.dyn6.twc.com> has quit IRC (Quit: No Ping reply in 180 seconds.)
[22:23:01] *** thrasibule_ <thrasibule_!~quassel@2607:5300:60:2391::1> has quit IRC (Read error: Connection reset by peer)
[22:23:01] *** XSkinner <XSkinner!XSkinner@A.Land.Down.Under.PanicBNC.net> has joined #angularjs
[22:23:03] *** marr123 <marr123!~ccc@159-205-243-117.adsl.inetia.pl> has joined #angularjs
[22:23:03] *** Aliks <Aliks!~aliks@2600:1010:b048:60eb:94be:b77d:9336:d879> has quit IRC (Ping timeout: 272 seconds)
[22:23:03] *** alphonse23_ <alphonse23_!sid34238@gateway/web/irccloud.com/x-bffjjaxiytctjibz> has quit IRC (Ping timeout: 272 seconds)
[22:23:03] *** klobucar <klobucar!sid1012@gateway/web/irccloud.com/x-kukuifatjbwtwgdq> has quit IRC (Ping timeout: 272 seconds)
[22:23:04] *** idwbpirate <idwbpirate!~idwbpirat@66-215-238-134.dhcp.rvsd.ca.charter.com> has quit IRC (Ping timeout: 272 seconds)
[22:23:04] *** monokrome <monokrome!~monokrome@54.88.139.115> has quit IRC (Ping timeout: 272 seconds)
[22:23:05] *** boubbin <boubbin!boubbin@lib.so> has quit IRC (Ping timeout: 272 seconds)
[22:23:05] *** prophesi <prophesi!~Adium@host-68-169-169-183.VABOLT2.epbfi.com> has quit IRC (Ping timeout: 272 seconds)
[22:23:06] *** marr <marr!~ccc@159-205-243-117.adsl.inetia.pl> has quit IRC (Ping timeout: 272 seconds)
[22:23:07] *** Armen <Armen!~Armen138@i.am.armen138.com> has quit IRC (Ping timeout: 272 seconds)
[22:23:13] *** Gabriel403 <Gabriel403!~gabriel@unaffiliated/gabbie> has quit IRC (Ping timeout: 250 seconds)
[22:23:16] *** davi-lima_ <davi-lima_!~Davi@177.206.196.199.dynamic.adsl.gvt.net.br> has quit IRC (Ping timeout: 284 seconds)
[22:23:16] *** tr_h <tr_h!tr_h@2600:3c01::f03c:91ff:fe0a:12e> has joined #angularjs
[22:23:18] *** thrasibule <thrasibule!~quassel@2607:5300:60:2391::1> has joined #angularjs
[22:23:20] *** boubbin <boubbin!boubbin@tclhelp.net> has joined #angularjs
[22:23:22] *** Danielss89 <Danielss89!~danielss8@server1.dasprids.de> has quit IRC (Ping timeout: 244 seconds)
[22:23:24] *** marr123 <marr123!~ccc@159-205-243-117.adsl.inetia.pl> has quit IRC (Remote host closed the connection)
[22:23:30] *** joevandy1 <joevandy1!~ubuntu@ec2-54-235-235-220.compute-1.amazonaws.com> has joined #angularjs
[22:23:30] *** kc3_ <kc3_!~kclark@svr1.autoverify.net> has joined #angularjs
[22:23:31] *** idwbpirate <idwbpirate!~idwbpirat@66-215-238-134.dhcp.rvsd.ca.charter.com> has joined #angularjs
[22:23:40] *** xtreamwayz <xtreamwayz!sid141190@gateway/web/irccloud.com/x-cblgmtwbqzfmwfqt> has quit IRC (Ping timeout: 272 seconds)
[22:23:40] *** al-damiri <al-damiri!uid142631@gateway/web/irccloud.com/x-nlgmpyvormajzpzg> has quit IRC (Ping timeout: 272 seconds)
[22:23:40] *** Lowell <Lowell!sid43163@gateway/web/irccloud.com/x-tpljsgchtgspyvxa> has quit IRC (Ping timeout: 272 seconds)
[22:23:40] *** jimklo <jimklo!~jimklo@192.12.16.110> has quit IRC (Ping timeout: 272 seconds)
[22:23:41] *** gojira__ <gojira__!sid120399@gateway/web/irccloud.com/x-ewtcletrhkswlkcs> has quit IRC (Ping timeout: 272 seconds)
[22:23:41] *** trave <trave!sid38181@gateway/web/irccloud.com/x-xxsjgjudsnayxqdw> has quit IRC (Ping timeout: 272 seconds)
[22:23:41] *** Kamuela <Kamuela!sid111576@gateway/web/irccloud.com/x-douyraymbyqaestl> has quit IRC (Ping timeout: 272 seconds)
[22:23:41] *** ruurd- <ruurd-!ruurd@gateway/shell/layerbnc/x-tiigzhgzktrsqaxy> has quit IRC (Ping timeout: 272 seconds)
[22:23:41] *** anth0ny <anth0ny!~quassel@unaffiliated/anth0ny> has quit IRC (Ping timeout: 272 seconds)
[22:23:42] *** MJD <MJD!~quassel@scadrial.mjdsystems.ca> has quit IRC (Ping timeout: 272 seconds)
[22:23:42] *** gcommer <gcommer!~gcommer@gcommer.com> has quit IRC (Ping timeout: 272 seconds)
[22:23:44] *** Mr_Pancake- <Mr_Pancake-!~Pancake@2001:41d0:8:e386::1> has joined #angularjs
[22:23:44] *** RangerRick <RangerRick!~quassel@cpe-2606-A000-45C2-6901-82EE-73FF-FE9F-967E.dyn6.twc.com> has joined #angularjs
[22:23:47] *** MJD <MJD!~quassel@scadrial.mjdsystems.ca> has joined #angularjs
[22:23:51] *** anth0ny <anth0ny!~quassel@unaffiliated/anth0ny> has joined #angularjs
[22:23:59] *** jlebrech <jlebrech!~jlebrech@109.109.143.238> has quit IRC (Ping timeout: 264 seconds)
[22:23:59] *** pimlu <pimlu!~pimlu@128.172.35.13> has quit IRC (Ping timeout: 264 seconds)
[22:23:59] *** IShaDoWl <IShaDoWl!uid155795@gateway/web/irccloud.com/x-zlknmerhosmuyxlg> has quit IRC (Ping timeout: 264 seconds)
[22:24:00] *** bjoops <bjoops!~bjoo@trippin.online> has quit IRC (Ping timeout: 264 seconds)
[22:24:01] *** bayousof_ <bayousof_!~textual@130.70.12.3> has joined #angularjs
[22:24:03] *** csharper <csharper!~csharper@31.6.42.47> has quit IRC (Ping timeout: 264 seconds)
[22:24:04] *** Akufen <Akufen!~Akufen@unaffiliated/akufen> has quit IRC (Ping timeout: 264 seconds)
[22:24:04] *** joevandyk <joevandyk!~ubuntu@ec2-54-235-235-220.compute-1.amazonaws.com> has quit IRC (Ping timeout: 264 seconds)
[22:24:05] *** prophesi1 <prophesi1!~Adium@host-68-169-169-183.VABOLT2.epbfi.com> has joined #angularjs
[22:24:05] *** bayousoft <bayousoft!~textual@130.70.12.3> has quit IRC (Ping timeout: 264 seconds)
[22:24:06] *** kc3 <kc3!~kclark@svr1.autoverify.net> has quit IRC (Ping timeout: 264 seconds)
[22:24:06] *** Mr_Pancake <Mr_Pancake!~Pancake@ns336688.ip-5-135-160.eu> has quit IRC (Ping timeout: 264 seconds)
[22:24:06] *** LeBlaaanc <LeBlaaanc!~LeBlaaanc@47.188.236.163> has quit IRC (Ping timeout: 264 seconds)
[22:24:06] *** Alina-malina <Alina-malina!~Alina-mal@37.157.216.181> has quit IRC (Ping timeout: 264 seconds)
[22:24:07] *** Orion3k <Orion3k!~Orion3k@47-51-33-228.static.mtpk.ca.charter.com> has quit IRC (Ping timeout: 264 seconds)
[22:24:08] *** csharper <csharper!~csharper@31.6.42.47> has joined #angularjs
[22:24:09] *** Mr_Pancake- is now known as Mr_Pancake
[22:24:09] *** marr123 <marr123!~ccc@159-205-243-117.adsl.inetia.pl> has joined #angularjs
[22:24:17] *** marr123 is now known as marr
[22:24:20] *** gcommer_ <gcommer_!~gcommer@gcommer.com> has joined #angularjs
[22:24:24] *** pspfolio__ <pspfolio__!~pspfolio@62-121-49-2-static-dsl.ssp.fi> has quit IRC (Ping timeout: 276 seconds)
[22:24:31] *** cgfbee <cgfbee!~bot@oc1.itim-cj.ro> has joined #angularjs
[22:24:35] *** Pagan <Pagan!~Pagan@bytemob.net> has joined #angularjs
[22:24:35] *** Pagan <Pagan!~Pagan@bytemob.net> has quit IRC (Changing host)
[22:24:35] *** Pagan <Pagan!~Pagan@unaffiliated/pagan> has joined #angularjs
[22:24:36] *** Stummi <Stummi!~Stummi@stummi.org> has joined #angularjs
[22:24:43] *** LeBlaaanc <LeBlaaanc!~LeBlaaanc@47.188.236.163> has joined #angularjs
[22:24:45] *** Armen <Armen!~Armen138@i.am.armen138.com> has joined #angularjs
[22:25:15] *** sahbeewah <sahbeewah!~sahbeewah@14-200-158-113.static.tpgi.com.au> has joined #angularjs
[22:25:42] *** NomadJim <NomadJim!~NomadJim@pdpc/supporter/active/nomadjim> has quit IRC (Ping timeout: 268 seconds)
[22:25:42] *** u0m3_ <u0m3_!~u0m3@5-12-199-171.residential.rdsnet.ro> has quit IRC (Ping timeout: 268 seconds)
[22:25:43] *** Akufen <Akufen!~Akufen@unaffiliated/akufen> has joined #angularjs
[22:25:46] *** Alina-malina <Alina-malina!~Alina-mal@37.157.216.181> has joined #angularjs
[22:25:57] *** skakri <skakri!~skakri@92.240.69.185> has joined #angularjs
[22:26:04] *** ruurd- <ruurd-!ruurd@gateway/shell/layerbnc/x-ewucvcqwimjeqmtp> has joined #angularjs
[22:26:05] *** Circlefusion <Circlefusion!~cf@cpe-74-132-161-93.kya.res.rr.com> has joined #angularjs
[22:26:21] *** strohalm <strohalm!~smoofi@unaffiliated/strohi> has quit IRC (Ping timeout: 251 seconds)
[22:26:27] *** Orion3k <Orion3k!~Orion3k@47-51-33-228.static.mtpk.ca.charter.com> has joined #angularjs
[22:26:29] *** jscarmona <jscarmona!~jscarmona@162.243.60.115> has joined #angularjs
[22:26:29] *** gvhoecke <gvhoecke!~gvhoecke@106.195-242-81.adsl-dyn.isp.belgacom.be> has joined #angularjs
[22:26:35] *** Klumben <Klumben!Nsaiswatch@elmo.stole-your.pw> has joined #angularjs
[22:26:41] *** felowe <felowe!sid180109@gateway/web/irccloud.com/x-bwshbqllaizclfcn> has quit IRC (Ping timeout: 240 seconds)
[22:26:49] *** cory___ <cory___!sid180108@gateway/web/irccloud.com/x-xprfiyydbhuypgzu> has quit IRC (Ping timeout: 272 seconds)
[22:26:56] *** thrillgore <thrillgore!~ZugZug@c-73-207-195-231.hsd1.ga.comcast.net> has joined #angularjs
[22:27:09] *** nausea <nausea!head@ticklemynausea.net> has joined #angularjs
[22:27:09] *** nausea <nausea!head@ticklemynausea.net> has quit IRC (Changing host)
[22:27:09] *** nausea <nausea!head@unaffiliated/neofreak> has joined #angularjs
[22:27:13] *** joseph_arnstein_ <joseph_arnstein_!sid180110@gateway/web/irccloud.com/x-ddxcuthzehndgyjh> has quit IRC (Ping timeout: 265 seconds)
[22:27:13] *** cmosguy <cmosguy!sid130111@gateway/web/irccloud.com/x-coscsnxizcpecxut> has quit IRC (Ping timeout: 265 seconds)
[22:27:33] *** monokrome <monokrome!~monokrome@54.88.139.115> has joined #angularjs
[22:27:39] *** prettymuchbryce <prettymuchbryce!sid52793@gateway/web/irccloud.com/x-ycrfixacfhdpycts> has quit IRC (Ping timeout: 276 seconds)
[22:27:39] *** waldenraines <waldenraines!walden@nat/redhat/x-fnobfatpnkhjnzbn> has quit IRC (Ping timeout: 276 seconds)
[22:28:22] *** trave <trave!sid38181@gateway/web/irccloud.com/x-ntxfkiiwwkypxbpd> has joined #angularjs
[22:28:28] *** Gabriel403 <Gabriel403!~gabriel@5.2.16.125> has joined #angularjs
[22:28:28] *** Gabriel403 <Gabriel403!~gabriel@5.2.16.125> has quit IRC (Changing host)
[22:28:28] *** Gabriel403 <Gabriel403!~gabriel@unaffiliated/gabbie> has joined #angularjs
[22:29:35] *** NomadJim_ is now known as NomadJim
[22:29:39] *** asteele <asteele!~Cronoh@4.16.207.5> has quit IRC (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
[22:30:09] *** Dev0n <Dev0n!~Dev0n@unaffiliated/dev0n> has joined #angularjs
[22:30:21] *** Alina-malina <Alina-malina!~Alina-mal@37.157.216.181> has quit IRC (Ping timeout: 240 seconds)
[22:30:44] *** Danielss89 <Danielss89!~danielss8@server1.dasprids.de> has joined #angularjs
[22:30:47] *** prophesi <prophesi!~Adium@host-68-169-169-183.VABOLT2.epbfi.com> has joined #angularjs
[22:30:56] *** forrestv <forrestv!forrestv@unaffiliated/forrestv> has joined #angularjs
[22:31:15] *** marr123 <marr123!~ccc@159-205-243-117.adsl.inetia.pl> has joined #angularjs
[22:31:53] *** PalTale <PalTale!~PalTale@paltale.com> has quit IRC (Ping timeout: 250 seconds)
[22:32:19] *** turbolih1s <turbolih1s!~turbolihi@kapsi.fi> has quit IRC (Ping timeout: 250 seconds)
[22:32:27] *** turbolihis <turbolihis!turbolihis@kapsi.fi> has joined #angularjs
[22:32:39] *** Mr_Pancake <Mr_Pancake!~Pancake@2001:41d0:8:e386::1> has quit IRC (Ping timeout: 272 seconds)
[22:32:40] *** bayousof_ <bayousof_!~textual@130.70.12.3> has quit IRC (Ping timeout: 272 seconds)
[22:32:41] *** RangerRick <RangerRick!~quassel@cpe-2606-A000-45C2-6901-82EE-73FF-FE9F-967E.dyn6.twc.com> has quit IRC (Quit: No Ping reply in 180 seconds.)
[22:32:42] *** iraj_ <iraj_!~iraj@91.107.149.82> has joined #angularjs
[22:32:42] *** MJD <MJD!~quassel@scadrial.mjdsystems.ca> has quit IRC (Read error: Connection reset by peer)
[22:32:42] *** tarnus <tarnus!~tarnus@2602:306:ccaa:9790:9070:a840:870b:8a42> has quit IRC (Read error: No route to host)
[22:32:42] *** Klumben <Klumben!Nsaiswatch@elmo.stole-your.pw> has quit IRC (Ping timeout: 272 seconds)
[22:32:42] *** skakri <skakri!~skakri@92.240.69.185> has quit IRC (Ping timeout: 272 seconds)
[22:32:44] *** XSkinner <XSkinner!XSkinner@A.Land.Down.Under.PanicBNC.net> has quit IRC (Ping timeout: 272 seconds)
[22:32:44] *** ngWalrus <ngWalrus!~lammis@95.85.58.114> has quit IRC (Ping timeout: 272 seconds)
[22:32:45] *** pulaski <pulaski!~pulaski@2604:180:2:e74::5a38> has quit IRC (Ping timeout: 272 seconds)
[22:32:45] *** joshfinnie <joshfinnie!~joshfinni@192.241.179.87> has quit IRC (Ping timeout: 272 seconds)
[22:32:45] *** uru <uru!~uru@bonegnawer.fourwindspack.net> has quit IRC (Ping timeout: 272 seconds)
[22:32:46] *** IShaDoWl <IShaDoWl!uid155795@unaffiliated/ishadowl> has joined #angularjs
[22:32:46] *** Pagan <Pagan!~Pagan@unaffiliated/pagan> has quit IRC (Ping timeout: 248 seconds)
[22:32:48] *** IShaDoWl <IShaDoWl!uid155795@unaffiliated/ishadowl> has quit IRC (Changing host)
[22:32:48] *** IShaDoWl <IShaDoWl!uid155795@gateway/web/irccloud.com/x-thlejcbjidfkpdmr> has joined #angularjs
[22:32:50] *** joshtau <joshtau!sid17334@gateway/web/irccloud.com/x-nkxwpsspexngkzss> has joined #angularjs
[22:32:58] *** ngWalrus <ngWalrus!~lammis@95.85.58.114> has joined #angularjs
[22:32:58] *** tarnus <tarnus!~tarnus@2602:306:ccaa:9790:9070:a840:870b:8a42> has joined #angularjs
[22:33:04] *** marr <marr!~ccc@159-205-243-117.adsl.inetia.pl> has quit IRC (Ping timeout: 264 seconds)
[22:33:05] *** joeytwiddle <joeytwiddle!~joeytwidd@162.243.115.31> has quit IRC (Ping timeout: 264 seconds)
[22:33:05] *** rudycane <rudycane!~rudycane@hashbangs.com> has quit IRC (Ping timeout: 264 seconds)
[22:33:07] *** LeBlaaanc <LeBlaaanc!~LeBlaaanc@47.188.236.163> has quit IRC (Ping timeout: 264 seconds)
[22:33:08] *** prophesi1 <prophesi1!~Adium@host-68-169-169-183.VABOLT2.epbfi.com> has quit IRC (Ping timeout: 264 seconds)
[22:33:08] *** mven <mven!~textual@32.97.110.57> has quit IRC (Ping timeout: 264 seconds)
[22:33:08] *** fees <fees!~fees_@d54C22E1C.access.telenet.be> has quit IRC (Ping timeout: 264 seconds)
[22:33:08] *** techntoke_ <techntoke_!sid124863@gateway/web/irccloud.com/x-npjlisfzyesyyskx> has quit IRC (Ping timeout: 264 seconds)
[22:33:08] *** ekarlso_ <ekarlso_!~ekarlso@85.17.207.6> has quit IRC (Ping timeout: 264 seconds)
[22:33:10] *** trave <trave!sid38181@gateway/web/irccloud.com/x-ntxfkiiwwkypxbpd> has quit IRC (Ping timeout: 272 seconds)
[22:33:10] *** Circlefusion <Circlefusion!~cf@cpe-74-132-161-93.kya.res.rr.com> has quit IRC (Ping timeout: 272 seconds)
[22:33:12] *** boubbin <boubbin!boubbin@tclhelp.net> has quit IRC (Ping timeout: 272 seconds)
[22:33:12] *** thrasibule <thrasibule!~quassel@2607:5300:60:2391::1> has quit IRC (Ping timeout: 272 seconds)
[22:33:12] *** cosmo1t <cosmo1t!montenis@64-83-206-90.static.stcd.mn.charter.com> has quit IRC (Ping timeout: 272 seconds)
[22:33:13] *** jbondhus <jbondhus!~quassel@www.jbondhus.com> has quit IRC (Ping timeout: 272 seconds)
[22:33:13] *** HalfEatenPie <HalfEatenPie!~HalfEaten@unaffiliated/halfeatenpie> has quit IRC (Ping timeout: 272 seconds)
[22:33:14] *** thrasibule_ <thrasibule_!~quassel@2607:5300:60:2391::1> has joined #angularjs
[22:33:18] *** skakri <skakri!~skakri@92.240.69.185> has joined #angularjs
[22:33:18] *** fees <fees!~fees_@d54c22e1c.access.telenet.be> has joined #angularjs
[22:33:24] *** RangerRick <RangerRick!~quassel@cpe-2606-A000-45C2-6901-82EE-73FF-FE9F-967E.dyn6.twc.com> has joined #angularjs
[22:33:26] *** PalTale <PalTale!kiwi@paltale.com> has joined #angularjs
[22:33:26] *** boubbin_ <boubbin_!boubbin@tclhelp.net> has joined #angularjs
[22:33:31] *** LeBlaaanc <LeBlaaanc!~LeBlaaanc@47.188.236.163> has joined #angularjs
[22:33:33] *** pulaski <pulaski!~pulaski@2604:180:2:e74::5a38> has joined #angularjs
[22:33:56] *** mven <mven!~textual@32.97.110.57> has joined #angularjs
[22:33:58] *** Alina-malina <Alina-malina!~Alina-mal@37.157.216.181> has joined #angularjs
[22:34:01] *** ekarlso_ <ekarlso_!~ekarlso@85.17.207.6> has joined #angularjs
[22:34:05] *** usm4n <usm4n!~usm4n@unaffiliated/usm4n> has joined #angularjs
[22:34:10] *** Pagan <Pagan!~Pagan@bytemob.net> has joined #angularjs
[22:34:10] *** Pagan <Pagan!~Pagan@bytemob.net> has quit IRC (Changing host)
[22:34:10] *** Pagan <Pagan!~Pagan@unaffiliated/pagan> has joined #angularjs
[22:34:18] *** jbondhus <jbondhus!~quassel@www.jbondhus.com> has joined #angularjs
[22:34:21] *** Circlefusion <Circlefusion!~cf@cpe-74-132-161-93.kya.res.rr.com> has joined #angularjs
[22:34:28] *** MJD <MJD!~quassel@scadrial.mjdsystems.ca> has joined #angularjs
[22:34:55] *** Klumben <Klumben!Nsaiswatch@elmo.stole-your.pw> has joined #angularjs
[22:34:58] *** joshfinnie <joshfinnie!~joshfinni@192.241.179.87> has joined #angularjs
[22:35:11] *** Mr_Pancake <Mr_Pancake!~Pancake@ns336688.ip-5-135-160.eu> has joined #angularjs
[22:35:15] *** JackMc <JackMc!sid85402@gateway/web/irccloud.com/x-tdrhmgsqtkvgtjuq> has quit IRC (Ping timeout: 244 seconds)
[22:35:19] *** cosmo1t <cosmo1t!montenis@64-83-206-90.static.stcd.mn.charter.com> has joined #angularjs
[22:36:38] *** joeytwiddle <joeytwiddle!~joeytwidd@162.243.115.31> has joined #angularjs
[22:36:55] *** strohalm <strohalm!~smoofi@unaffiliated/strohi> has joined #angularjs
[22:36:57] *** elijah <elijah!sid21431@gateway/web/irccloud.com/x-fdmuruuchdrfnmkc> has quit IRC (Ping timeout: 272 seconds)
[22:37:16] *** amergin <amergin!jz@kapsi.fi> has joined #angularjs
[22:37:40] *** uru <uru!~uru@bonegnawer.fourwindspack.net> has joined #angularjs
[22:37:50] *** nya__ <nya__!~nya@p7902c6f7.tokynt01.ap.so-net.ne.jp> has quit IRC (Ping timeout: 244 seconds)
[22:37:50] *** ansu <ansu!~ansu@unaffiliated/ansu> has quit IRC (Ping timeout: 244 seconds)
[22:37:54] *** rudycane <rudycane!~rudycane@hashbangs.com> has joined #angularjs
[22:38:38] <Snugglebash> Finally converted my angular 1 app to angular 2 and no beer to celebrate
[22:38:54] *** cmosguy <cmosguy!sid130111@gateway/web/irccloud.com/x-ocbbdunoemomdpig> has joined #angularjs
[22:39:08] *** star_prone <star_prone!~sviatovig@188.25.28.123> has joined #angularjs
[22:39:16] *** HalfEatenPie_ <HalfEatenPie_!~HalfEaten@37.247.49.127> has joined #angularjs
[22:39:25] *** gojira__ <gojira__!sid120399@gateway/web/irccloud.com/x-fprjvlsoksbcabfj> has joined #angularjs
[22:39:43] <NTrash> how long did it take
[22:39:44] *** ansu <ansu!~ansu@unaffiliated/ansu> has joined #angularjs
[22:40:01] *** cory___ <cory___!sid180108@gateway/web/irccloud.com/x-vhltfvxmflwahzyj> has joined #angularjs
[22:40:59] <Snugglebash> 3 days... its not a very big app
[22:41:50] *** Eleeleth <Eleeleth!sid43850@gateway/web/irccloud.com/x-knlgrxgckysjrhdt> has joined #angularjs
[22:41:52] *** u0m3__ is now known as u0m3
[22:41:57] *** strohalm <strohalm!~smoofi@unaffiliated/strohi> has quit IRC (Ping timeout: 276 seconds)
[22:42:22] *** ggherdov <ggherdov!sid11402@gateway/web/irccloud.com/x-czzemykokqmwtqpz> has joined #angularjs
[22:42:22] *** M1N10N <M1N10N!~M1N10N@107.191.111.46> has quit IRC (Read error: Connection reset by peer)
[22:42:34] *** M1N10N <M1N10N!~M1N10N@107.191.111.46> has joined #angularjs
[22:43:13] *** ikevin_ <ikevin_!sid16762@gateway/web/irccloud.com/x-zaanwdombqvfqscu> has joined #angularjs
[22:43:15] *** trave <trave!sid38181@gateway/web/irccloud.com/x-rqolctbrgdyawmzi> has joined #angularjs
[22:43:22] *** felowe <felowe!sid180109@gateway/web/irccloud.com/x-augaoencbfqzyowx> has joined #angularjs
[22:43:29] *** waldenraines <waldenraines!walden@nat/redhat/x-xpwhphtezgjjcjdn> has joined #angularjs
[22:43:32] *** Lowell <Lowell!sid43163@gateway/web/irccloud.com/x-lpojrmfnvfbfzjbh> has joined #angularjs
[22:43:43] <snookmz> I'm concerned about the third party modules I use not being available in 2
[22:43:53] *** joseph_arnstein_ <joseph_arnstein_!sid180110@gateway/web/irccloud.com/x-yvhjrbigcogpidgf> has joined #angularjs
[22:43:54] *** klobucar <klobucar!sid1012@gateway/web/irccloud.com/x-ndkrygdfsizsmhms> has joined #angularjs
[22:44:01] *** chrysn <chrysn!~chrysn@prometheus.amsuess.com> has quit IRC (Ping timeout: 250 seconds)
[22:44:08] *** star_prone <star_prone!~sviatovig@188.25.28.123> has quit IRC (Ping timeout: 265 seconds)
[22:44:08] *** techntoke_ <techntoke_!sid124863@gateway/web/irccloud.com/x-dukvnbwqmzghoymw> has joined #angularjs
[22:44:19] *** tarnus_ <tarnus_!~tarnus@108-202-169-121.lightspeed.spfdmo.sbcglobal.net> has joined #angularjs
[22:44:24] *** strohalm <strohalm!~smoofi@unaffiliated/strohi> has joined #angularjs
[22:44:26] *** PalTale <PalTale!kiwi@paltale.com> has quit IRC (Ping timeout: 250 seconds)
[22:44:27] *** cc0_ <cc0_!~cc0_@c-174-53-187-122.hsd1.mn.comcast.net> has quit IRC (Ping timeout: 250 seconds)
[22:44:29] *** charper2 <charper2!~csharper@31.6.42.47> has joined #angularjs
[22:44:35] *** beckyconning_ <beckyconning_!sid31604@gateway/web/irccloud.com/x-hdyjbvzexvhpvgfj> has joined #angularjs
[22:45:05] *** PalTale <PalTale!~PalTale@paltale.com> has joined #angularjs
[22:45:09] *** Akufen <Akufen!~Akufen@unaffiliated/akufen> has quit IRC (Ping timeout: 264 seconds)
[22:45:09] *** csharper <csharper!~csharper@31.6.42.47> has quit IRC (Ping timeout: 264 seconds)
[22:45:09] *** ansu <ansu!~ansu@unaffiliated/ansu> has quit IRC (Ping timeout: 264 seconds)
[22:45:09] *** gojira__ <gojira__!sid120399@gateway/web/irccloud.com/x-fprjvlsoksbcabfj> has quit IRC (Ping timeout: 264 seconds)
[22:45:10] *** ekarlso_ <ekarlso_!~ekarlso@85.17.207.6> has quit IRC (Ping timeout: 264 seconds)
[22:45:10] *** boubbin_ <boubbin_!boubbin@tclhelp.net> has quit IRC (Ping timeout: 264 seconds)
[22:45:11] *** gcommer_ <gcommer_!~gcommer@gcommer.com> has quit IRC (Ping timeout: 264 seconds)
[22:45:11] *** orionstein <orionstein!~orionstei@ec2-54-84-28-44.compute-1.amazonaws.com> has quit IRC (Ping timeout: 264 seconds)
[22:45:12] *** jbondhus <jbondhus!~quassel@www.jbondhus.com> has quit IRC (Ping timeout: 264 seconds)
[22:45:12] *** Alina-malina <Alina-malina!~Alina-mal@37.157.216.181> has quit IRC (Ping timeout: 264 seconds)
[22:45:12] *** Kamuela <Kamuela!sid111576@gateway/web/irccloud.com/x-ytxcdrabvnmlgxhd> has joined #angularjs
[22:45:12] *** LeBlaaanc <LeBlaaanc!~LeBlaaanc@47.188.236.163> has quit IRC (Ping timeout: 264 seconds)
[22:45:13] *** ruurd- <ruurd-!ruurd@gateway/shell/layerbnc/x-ewucvcqwimjeqmtp> has quit IRC (Ping timeout: 264 seconds)
[22:45:13] *** jimmyff <jimmyff!sid11140@gateway/web/irccloud.com/x-fosrcrovvyyulsdo> has quit IRC (Ping timeout: 264 seconds)
[22:45:13] *** kwmiebach__ <kwmiebach__!sid16855@gateway/web/irccloud.com/x-hidgsbeymivmjbix> has quit IRC (Ping timeout: 264 seconds)
[22:45:13] *** mayamai <mayamai!~yamiam@192.3.160.145> has quit IRC (Ping timeout: 264 seconds)
[22:45:21] *** ansu1 <ansu1!~ansu@unaffiliated/ansu> has joined #angularjs
[22:45:30] *** Gabriel413 <Gabriel413!~gabriel@5.2.16.125> has joined #angularjs
[22:45:48] *** mischat <mischat!~mischat@2a02:c7f:c006:1e00:69d1:1f10:98b0:80da> has quit IRC (Remote host closed the connection)
[22:45:53] *** thomas1 <thomas1!~thomas@freenode/staff/thomas> has quit IRC (Read error: Connection reset by peer)
[22:45:58] *** tomphp <tomphp!~tomphp@host86-170-198-213.range86-170.btcentralplus.com> has joined #angularjs
[22:46:07] *** ekarlso_ <ekarlso_!~ekarlso@85.17.207.6> has joined #angularjs
[22:46:14] *** Akufen <Akufen!~Akufen@unaffiliated/akufen> has joined #angularjs
[22:46:25] *** joshtau <joshtau!sid17334@gateway/web/irccloud.com/x-nkxwpsspexngkzss> has quit IRC (Ping timeout: 272 seconds)
[22:46:26] *** cmosguy <cmosguy!sid130111@gateway/web/irccloud.com/x-ocbbdunoemomdpig> has quit IRC (Ping timeout: 272 seconds)
[22:46:26] *** pulaski <pulaski!~pulaski@2604:180:2:e74::5a38> has quit IRC (Ping timeout: 272 seconds)
[22:46:27] *** Klumben <Klumben!Nsaiswatch@elmo.stole-your.pw> has quit IRC (Ping timeout: 272 seconds)
[22:46:27] *** MJD <MJD!~quassel@scadrial.mjdsystems.ca> has quit IRC (Ping timeout: 272 seconds)
[22:46:28] *** tarnus <tarnus!~tarnus@2602:306:ccaa:9790:9070:a840:870b:8a42> has quit IRC (Ping timeout: 272 seconds)
[22:46:29] *** tr_h <tr_h!tr_h@2600:3c01::f03c:91ff:fe0a:12e> has quit IRC (Ping timeout: 272 seconds)
[22:46:31] *** cory___ <cory___!sid180108@gateway/web/irccloud.com/x-vhltfvxmflwahzyj> has quit IRC (Ping timeout: 272 seconds)
[22:46:32] *** RangerRick <RangerRick!~quassel@cpe-2606-A000-45C2-6901-82EE-73FF-FE9F-967E.dyn6.twc.com> has quit IRC (Ping timeout: 272 seconds)
[22:46:32] *** fees <fees!~fees_@d54c22e1c.access.telenet.be> has quit IRC (Ping timeout: 272 seconds)
[22:46:32] *** thrasibule_ <thrasibule_!~quassel@2607:5300:60:2391::1> has quit IRC (Ping timeout: 272 seconds)
[22:46:33] *** IShaDoWl <IShaDoWl!uid155795@gateway/web/irccloud.com/x-thlejcbjidfkpdmr> has quit IRC (Ping timeout: 272 seconds)
[22:46:33] *** iraj_ <iraj_!~iraj@91.107.149.82> has quit IRC (Ping timeout: 272 seconds)
[22:46:33] *** Gabriel403 <Gabriel403!~gabriel@unaffiliated/gabbie> has quit IRC (Ping timeout: 272 seconds)
[22:46:33] *** sahbeewah <sahbeewah!~sahbeewah@14-200-158-113.static.tpgi.com.au> has quit IRC (Ping timeout: 272 seconds)
[22:46:33] *** Armen <Armen!~Armen138@i.am.armen138.com> has quit IRC (Ping timeout: 272 seconds)
[22:46:34] *** MerlinDMC <MerlinDMC!~merlin@irc.l0cal.net> has quit IRC (Ping timeout: 272 seconds)
[22:46:36] *** MerlinDMC <MerlinDMC!~merlin@irc.l0cal.net> has joined #angularjs
[22:46:37] *** nivag_ <nivag_!~gavin@121.99.202.67> has quit IRC (Ping timeout: 272 seconds)
[22:46:37] *** thrasibule <thrasibule!~quassel@2607:5300:60:2391::1> has joined #angularjs
[22:46:42] *** pulaski <pulaski!~pulaski@2604:180:2:e74::5a38> has joined #angularjs
[22:46:44] *** LeBlaaanc <LeBlaaanc!~LeBlaaanc@47.188.236.163> has joined #angularjs
[22:46:47] *** RangerRick <RangerRick!~quassel@cpe-2606-A000-45C2-6901-82EE-73FF-FE9F-967E.dyn6.twc.com> has joined #angularjs
[22:46:47] *** fees <fees!~fees_@d54C22E1C.access.telenet.be> has joined #angularjs
[22:46:51] *** gcommer <gcommer!~gcommer@gcommer.com> has joined #angularjs
[22:46:59] *** nivag_ <nivag_!~gavin@121.99.202.67> has joined #angularjs
[22:46:59] *** michaels_ <michaels_!~michaelsh@198-48-172-67.cpe.pppoe.ca> has quit IRC (Write error: Broken pipe)
[22:46:59] *** orionstein <orionstein!~orionstei@ec2-54-84-28-44.compute-1.amazonaws.com> has joined #angularjs
[22:47:00] *** shkipper <shkipper!~shkipper@85.234.63.125> has quit IRC (Ping timeout: 305 seconds)
[22:47:02] *** Klumben <Klumben!Nsaiswatch@elmo.stole-your.pw> has joined #angularjs
[22:47:18] *** Armen <Armen!~Armen138@i.am.armen138.com> has joined #angularjs
[22:47:28] *** joshtau <joshtau!sid17334@gateway/web/irccloud.com/x-wgmstaxwklniowmy> has joined #angularjs
[22:47:39] *** MJD <MJD!~quassel@scadrial.mjdsystems.ca> has joined #angularjs
[22:47:39] *** Stummi <Stummi!~Stummi@stummi.org> has quit IRC (Ping timeout: 244 seconds)
[22:47:40] *** shkipper <shkipper!~shkipper@pool-63-125.ptcomm.ru> has joined #angularjs
[22:47:44] *** XSkinner <XSkinner!XSkinner@A.Land.Down.Under.PanicBNC.net> has joined #angularjs
[22:47:51] *** iamayam <iamayam!~yamiam@192.3.160.145> has joined #angularjs
[22:47:53] *** wycats <wycats!sid79@gateway/web/irccloud.com/x-ixttgxnvljkkdcdn> has joined #angularjs
[22:47:57] *** tr_h <tr_h!tr_h@2600:3c01::f03c:91ff:fe0a:12e> has joined #angularjs
[22:48:00] *** jbondhus <jbondhus!~quassel@www.jbondhus.com> has joined #angularjs
[22:48:46] *** ulkesh <ulkesh!sid140298@gateway/web/irccloud.com/x-jimvdopliuierngz> has joined #angularjs
[22:49:06] *** ruurd <ruurd!ruurd@gateway/shell/layerbnc/x-gczwpzzsjryfqqwc> has joined #angularjs
[22:49:06] *** strohalm <strohalm!~smoofi@unaffiliated/strohi> has quit IRC (Ping timeout: 247 seconds)
[22:49:07] *** chrysn <chrysn!~chrysn@prometheus.amsuess.com> has joined #angularjs
[22:49:11] *** ruurd is now known as Guest49007
[22:49:20] *** davidmichaelkarr <davidmichaelkarr!sid71216@gateway/web/irccloud.com/x-rlwmcynrdyxdiuhp> has quit IRC (Ping timeout: 252 seconds)
[22:49:30] *** CodeViking <CodeViking!b077b60f@gateway/web/freenode/ip.176.119.182.15> has joined #angularjs
[22:49:35] *** boubbin <boubbin!boubbin@tclhelp.net> has joined #angularjs
[22:49:38] *** Alina-malina <Alina-malina!~Alina-mal@37.157.216.181> has joined #angularjs
[22:49:42] <CodeViking> Hi everyone.
[22:49:58] *** Stummi <Stummi!~Stummi@stummi.org> has joined #angularjs
[22:50:33] *** Shrooms <Shrooms!~Shrooms@192.187.121.98> has joined #angularjs
[22:50:33] *** grug <grug!~grug@45.62.228.154> has joined #angularjs
[22:50:33] *** davlefou <davlefou!~davlefou@unaffiliated/davlefou> has joined #angularjs
[22:50:35] *** CodeViking <CodeViking!b077b60f@gateway/web/freenode/ip.176.119.182.15> has quit IRC (Client Quit)
[22:51:01] *** thomas <thomas!~thomas@freenode/staff/thomas> has joined #angularjs
[22:51:23] *** cc0_ <cc0_!~cc0_@c-174-53-187-122.hsd1.mn.comcast.net> has joined #angularjs
[22:51:34] *** hello <hello!18da38db@gateway/web/freenode/ip.24.218.56.219> has joined #angularjs
[22:51:37] *** hello <hello!18da38db@gateway/web/freenode/ip.24.218.56.219> has quit IRC (Client Quit)
[22:51:55] *** uru is now known as uru|away
[22:51:56] *** shkipper <shkipper!~shkipper@pool-63-125.ptcomm.ru> has quit IRC (Client Quit)
[22:52:26] *** usm4n <usm4n!~usm4n@unaffiliated/usm4n> has quit IRC (Quit: leaving)
[22:52:49] *** al-damiri <al-damiri!uid142631@gateway/web/irccloud.com/x-zgxscnvgcszyumlw> has joined #angularjs
[22:53:04] *** Elisha <Elisha!~elisha@tm.213.143.68.74.nm.telemach.net> has quit IRC (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
[22:53:04] *** thomas <thomas!~thomas@freenode/staff/thomas> has quit IRC (Client Quit)
[22:53:17] *** thomas <thomas!~thomas@freenode/staff/thomas> has joined #angularjs
[22:53:27] *** fuchstronaut <fuchstronaut!~fuchstron@unaffiliated/fuchstronaut> has joined #angularjs
[22:54:30] *** cmosguy <cmosguy!sid130111@gateway/web/irccloud.com/x-plbpubjwfspgtgyz> has joined #angularjs
[22:54:33] *** edrocks <edrocks!~edrocks@47.199.114.94> has joined #angularjs
[22:54:38] *** prettymuchbryce <prettymuchbryce!sid52793@gateway/web/irccloud.com/x-sxoymrfqpcywwonv> has joined #angularjs
[22:54:48] *** cory___ <cory___!sid180108@gateway/web/irccloud.com/x-lckvirmtcfifdigg> has joined #angularjs
[22:54:56] *** moogumbo <moogumbo!sid31999@gateway/web/irccloud.com/x-boiowlvujdjdlpaz> has joined #angularjs
[22:54:59] *** JackMc <JackMc!sid85402@gateway/web/irccloud.com/x-irmfejrhhdacesfi> has joined #angularjs
[22:55:04] *** zero7 <zero7!sid10708@gateway/web/irccloud.com/x-gsvnvgavmejtknlb> has joined #angularjs
[22:55:13] *** jnap_ <jnap_!sid41868@gateway/web/irccloud.com/x-gurlrmdcevurnazm> has joined #angularjs
[22:56:07] *** wizonesolutions <wizonesolutions!sid27627@drupal.org/user/739994/view> has joined #angularjs
[22:56:14] *** IShaDoWl <IShaDoWl!uid155795@gateway/web/irccloud.com/x-snqdgwofgopqexum> has joined #angularjs
[22:56:15] *** edrocks_ <edrocks_!~edrocks@209-133-213-131.static.hvvc.us> has quit IRC (Ping timeout: 276 seconds)
[22:56:20] *** xtreamwayz <xtreamwayz!sid141190@gateway/web/irccloud.com/x-junlbtrungaoiicg> has joined #angularjs
[22:56:33] *** devin__ <devin__!sid177405@gateway/web/irccloud.com/x-tdyxjxkmaycbvols> has joined #angularjs
[22:56:45] *** cspotcode <cspotcode!uid80131@gateway/web/irccloud.com/x-pzwlyqsalltyglze> has joined #angularjs
[22:56:57] *** gojira__ <gojira__!sid120399@gateway/web/irccloud.com/x-aumphsgmfvcwkocg> has joined #angularjs
[22:57:42] *** cosmo1t <cosmo1t!montenis@64-83-206-90.static.stcd.mn.charter.com> has quit IRC (Changing host)
[22:57:42] *** cosmo1t <cosmo1t!montenis@unaffiliated/cosmo1t> has joined #angularjs
[22:58:29] *** fuchstronaut <fuchstronaut!~fuchstron@unaffiliated/fuchstronaut> has quit IRC (Ping timeout: 272 seconds)
[22:58:30] *** eshlox <eshlox!uid44222@gateway/web/irccloud.com/x-azlvkbjvjbzuefux> has joined #angularjs
[22:58:44] *** davidmichaelkarr <davidmichaelkarr!sid71216@gateway/web/irccloud.com/x-plxhvnmysqgdsiev> has joined #angularjs
[22:59:01] *** strohalm <strohalm!~smoofi@unaffiliated/strohi> has joined #angularjs
[22:59:58] *** kwmiebach__ <kwmiebach__!sid16855@gateway/web/irccloud.com/x-wllpnyytcqejpwfb> has joined #angularjs
[23:00:21] *** jimmyff <jimmyff!sid11140@gateway/web/irccloud.com/x-vcubrnazckbxzfqw> has joined #angularjs
[23:00:55] *** alphonse23_ <alphonse23_!sid34238@gateway/web/irccloud.com/x-ilsoikhmzahkxlwf> has joined #angularjs
[23:01:20] *** kuadrosx <kuadrosx!~kuadrosx@181.52.216.84> has joined #angularjs
[23:02:16] *** wrkrcoop <wrkrcoop!~martee@adsk-nat-ip5.autodesk.com> has quit IRC (Quit: wrkrcoop)
[23:02:22] *** sahbeewah <sahbeewah!~sahbeewah@14-200-158-113.static.tpgi.com.au> has joined #angularjs
[23:02:23] *** elijah <elijah!sid21431@gateway/web/irccloud.com/x-oqcwfpcojrrlqakq> has joined #angularjs
[23:02:44] *** WillMoogle <WillMoogle!sid38138@gateway/web/irccloud.com/x-rwunqzootrlrldod> has joined #angularjs
[23:02:51] *** edrocks_ <edrocks_!~edrocks@66-194-206-178.static.twtelecom.net> has joined #angularjs
[23:03:09] *** drej <drej!~jedimind@unaffiliated/jedimind> has quit IRC (Quit: My MacBook has gone to sleep. ZZZzzz…)
[23:03:31] *** jhertz <jhertz!~jhertz@c-56c3e253.501201257616-0-757473696b74.cust.bredbandsbolaget.se> has quit IRC (Read error: Connection reset by peer)
[23:04:03] *** strohalm <strohalm!~smoofi@unaffiliated/strohi> has quit IRC (Ping timeout: 276 seconds)
[23:04:23] *** iraj_ <iraj_!~iraj@91.107.149.82> has joined #angularjs
[23:04:33] *** jhertz <jhertz!~jhertz@c-56c3e253.501201257616-0-757473696b74.cust.bredbandsbolaget.se> has joined #angularjs
[23:05:27] *** soee_ <soee_!~soee@user-46-112-93-152.play-internet.pl> has quit IRC (Quit: Konversation terminated!)
[23:07:49] *** strohalm <strohalm!~smoofi@unaffiliated/strohi> has joined #angularjs
[23:07:57] *** edrocks_ <edrocks_!~edrocks@66-194-206-178.static.twtelecom.net> has quit IRC (Ping timeout: 276 seconds)
[23:08:15] *** hashrocket <hashrocket!uid27380@gateway/web/irccloud.com/x-tbrfemcwqemvoinh> has quit IRC (Quit: Connection closed for inactivity)
[23:09:23] *** moloch <moloch!~moloch@cpe-98-150-237-205.hawaii.res.rr.com> has joined #angularjs
[23:10:00] *** nausea <nausea!head@unaffiliated/neofreak> has quit IRC (Quit: ZNC - http://znc.in)
[23:10:43] *** riotz <riotz!~riotz@unaffiliated/riotz> has quit IRC (Ping timeout: 265 seconds)
[23:13:29] *** konradb_ <konradb_!~konradb@46.101.163.118> has quit IRC (Ping timeout: 244 seconds)
[23:13:38] *** konradb <konradb!~konradb@unaffiliated/konradb> has joined #angularjs
[23:15:06] *** strohalm <strohalm!~smoofi@unaffiliated/strohi> has quit IRC (Ping timeout: 276 seconds)
[23:15:08] *** nausea <nausea!head@ticklemynausea.net> has joined #angularjs
[23:15:08] *** nausea <nausea!head@ticklemynausea.net> has quit IRC (Changing host)
[23:15:08] *** nausea <nausea!head@unaffiliated/neofreak> has joined #angularjs
[23:16:03] *** arizzo <arizzo!~arizzo@pool-100-34-253-181.phlapa.fios.verizon.net> has quit IRC (Remote host closed the connection)
[23:16:25] <rand0m> hey guys
[23:16:36] <rand0m> can anyone tell me what I am doing wrong here
[23:16:36] <rand0m> http://plnkr.co/edit/hruUhnLomYz6ALrsnUzO?p=preview
[23:17:07] *** itaipu <itaipu!~Marco@168.121.96.22> has quit IRC (Read error: Connection reset by peer)
[23:17:37] *** itaipu <itaipu!~Marco@168.121.96.22> has joined #angularjs
[23:18:05] *** arizzo <arizzo!~arizzo@pool-100-34-253-181.phlapa.fios.verizon.net> has joined #angularjs
[23:18:46] *** Guest78895 <Guest78895!~Jeremy@70.213.7.160> has joined #angularjs
[23:19:25] <zomg> it would usually be useful to explain what is it that it's supposed to do vs. what's happening
[23:19:57] *** Aliks_ <Aliks_!~aliks@165.sub-70-213-21.myvzw.com> has quit IRC (Remote host closed the connection)
[23:21:33] *** strohalm <strohalm!~smoofi@unaffiliated/strohi> has joined #angularjs
[23:22:26] <rand0m> its supposed to get content from service
[23:22:27] *** sergey_ <sergey_!~sergey@91.243.203.87> has quit IRC ()
[23:22:35] <rand0m> but $http is undefined#
[23:23:19] <zomg> I don't think that's the problem..
[23:23:31] <zomg> you're using a variable called deffered in there and.. I can't see that being created anywhere
[23:24:20] *** Guest78895 <Guest78895!~Jeremy@70.213.7.160> has quit IRC (Ping timeout: 244 seconds)
[23:24:22] <zomg> you're also trying to inject $scope into a service/factory
[23:24:22] *** Aliks <Aliks!~aliks@2600:1010:b048:60eb:94be:b77d:9336:d879> has joined #angularjs
[23:24:26] *** nadoneves <nadoneves!~Thunderbi@177.131.144.72> has quit IRC (Quit: nadoneves)
[23:24:31] <zomg> which you can't do
[23:24:46] <zomg> it's possible to inject $rootScope, but $scope is a controller-specific injection
[23:24:54] <zomg> (but you don't even need scope there as far as I can tell)
[23:25:28] *** prophesi <prophesi!~Adium@host-68-169-169-183.VABOLT2.epbfi.com> has left #angularjs
[23:25:39] *** asteele <asteele!~Cronoh@4.16.207.5> has joined #angularjs
[23:26:58] *** CreateMo <CreateMo!~textual@47.146.55.67> has joined #angularjs
[23:27:33] *** edrocks <edrocks!~edrocks@47.199.114.94> has quit IRC (Read error: Connection reset by peer)
[23:28:06] *** strohalm <strohalm!~smoofi@unaffiliated/strohi> has quit IRC (Ping timeout: 264 seconds)
[23:28:09] *** marr123 is now known as marr
[23:28:52] *** liefer <liefer!~liefer@3e6b4ca3.rev.stofanet.dk> has joined #angularjs
[23:29:36] *** LeBlaaanc <LeBlaaanc!~LeBlaaanc@47.188.236.163> has quit IRC (Quit: My Mac has gone to sleep. ZZZzzz…)
[23:30:42] *** TyrfingMjolnir <TyrfingMjolnir!~Tyrfing@62.92.82.250> has quit IRC (Ping timeout: 276 seconds)
[23:31:03] *** strohalm <strohalm!~smoofi@unaffiliated/strohi> has joined #angularjs
[23:31:18] *** mischat <mischat!~mischat@2a02:c7f:c006:1e00:69d1:1f10:98b0:80da> has joined #angularjs
[23:31:25] <rand0m> zomg, I think it cant identify my factory
[23:31:48] <rand0m> I added in the $q as you pointed out
[23:33:43] *** bayousoft <bayousoft!~textual@130.70.12.3> has joined #angularjs
[23:35:11] *** strohalm <strohalm!~smoofi@unaffiliated/strohi> has quit IRC (Ping timeout: 244 seconds)
[23:35:21] *** jsightler__ is now known as jsightler_afk
[23:35:31] *** jhadvig <jhadvig!~jhadvig@78-141-120-86.dynamic.orange.sk> has joined #angularjs
[23:35:41] *** thomaspaulb <thomaspaulb!~Tom@D4B2706A.static.ziggozakelijk.nl> has quit IRC (Ping timeout: 240 seconds)
[23:36:43] <zomg> adding things randomly isn't going to fix it
[23:36:46] *** kuadrosx_ <kuadrosx_!~kuadrosx@181.52.216.84> has joined #angularjs
[23:36:49] <zomg> if you fix all those things I mentioned it'll start working =)
[23:37:06] *** kuadrosx <kuadrosx!~kuadrosx@181.52.216.84> has quit IRC (Ping timeout: 264 seconds)
[23:37:16] <zomg> (or at least it'll be closer to doing what you wanted it to do)
[23:37:46] *** LeBlaaanc <LeBlaaanc!~LeBlaaanc@47.188.236.163> has joined #angularjs
[23:39:14] *** aarobc <aarobc!~aarobc@216.51.32.182> has quit IRC (Remote host closed the connection)
[23:39:23] *** riotz <riotz!~riotz@unaffiliated/riotz> has joined #angularjs
[23:41:59] *** CreateMo <CreateMo!~textual@47.146.55.67> has left #angularjs ("Textual IRC Client: www.textualapp.com")
[23:42:12] *** wrkrcoop <wrkrcoop!~martee@adsk-nat-ip5.autodesk.com> has joined #angularjs
[23:43:14] *** bayousoft <bayousoft!~textual@130.70.12.3> has quit IRC ()
[23:44:00] *** LeBlaaanc <LeBlaaanc!~LeBlaaanc@47.188.236.163> has quit IRC (Quit: My Mac has gone to sleep. ZZZzzz…)
[23:45:34] *** drej <drej!~jedimind@unaffiliated/jedimind> has joined #angularjs
[23:45:41] *** drej <drej!~jedimind@unaffiliated/jedimind> has quit IRC (Client Quit)
[23:48:00] *** drej <drej!~jedimind@unaffiliated/jedimind> has joined #angularjs
[23:48:06] *** mven <mven!~textual@32.97.110.57> has quit IRC (Ping timeout: 244 seconds)
[23:48:41] *** tomphp <tomphp!~tomphp@host86-170-198-213.range86-170.btcentralplus.com> has quit IRC (Quit: My MacBook has gone to sleep. ZZZzzz…)
[23:50:09] *** jimklo <jimklo!~jimklo@75-128-4-186.dhcp.snlo.ca.charter.com> has joined #angularjs
[23:50:21] *** jhadvig <jhadvig!~jhadvig@78-141-120-86.dynamic.orange.sk> has quit IRC (Ping timeout: 240 seconds)
[23:52:06] *** iraj <iraj!~iraj@unaffiliated/iraj> has joined #angularjs
[23:52:46] *** iraj_ <iraj_!~iraj@91.107.149.82> has quit IRC (Ping timeout: 265 seconds)
[23:53:16] *** jimklo_ <jimklo_!~jimklo@192.12.16.110> has quit IRC (Ping timeout: 244 seconds)
[23:54:10] *** fuchstronaut <fuchstronaut!~fuchstron@unaffiliated/fuchstronaut> has joined #angularjs
[23:54:14] *** node9 <node9!~node9@CPE0c473dd24701-CM0c473dd24700.cpe.net.cable.rogers.com> has joined #angularjs
[23:54:51] *** jimklo <jimklo!~jimklo@75-128-4-186.dhcp.snlo.ca.charter.com> has quit IRC (Ping timeout: 272 seconds)
[23:55:21] *** gvanderest <gvanderest!~gvanderes@S01066c709fd71834.ok.shawcable.net> has quit IRC (Quit: Leaving...)
[23:56:30] *** eshlox <eshlox!uid44222@gateway/web/irccloud.com/x-azlvkbjvjbzuefux> has quit IRC (Quit: Connection closed for inactivity)
[23:56:43] *** gopar <gopar!~gopar@2601:642:c000:3190:b525:614a:5391:4caf> has joined #angularjs
[23:58:50] *** antiPoP <antiPoP!~antiPoP@unaffiliated/antipop> has joined #angularjs
[23:58:55] *** rumenp1980 <rumenp1980!~rumen1980@87.120.159.60> has joined #angularjs
[23:59:17] *** fuchstronaut <fuchstronaut!~fuchstron@unaffiliated/fuchstronaut> has quit IRC (Ping timeout: 272 seconds)
[23:59:22] *** thebigredgeek <thebigredgeek!~textual@50-255-21-177-static.hfc.comcastbusiness.net> has joined #angularjs
[23:59:50] <rand0m> cant I use https:// on plnkr?
top

   September 27, 2016  
< | 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 | >