Switch to DuckDuckGo Search
   February 11, 2017  
< | 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 | >

Toggle Join/Part | bottom
[00:00:24] *** dmadaan_ <dmadaan_!0e8bf61e@gateway/web/freenode/ip.14.139.246.30> has quit IRC (Ping timeout: 260 seconds)
[00:01:16] *** eago <eago!~eago@181.59.244.38> has quit IRC (Remote host closed the connection)
[00:02:52] *** zerubeus <zerubeus!5c6617d3@gateway/web/freenode/ip.92.102.23.211> has quit IRC (Quit: Page closed)
[00:03:13] *** SaltyCatFish <SaltyCatFish!~quassel@172.98.78.46> has quit IRC (Ping timeout: 258 seconds)
[00:03:31] *** squeakytoy <squeakytoy!~squeakyto@h87-96-232-216.cust.se.alltele.net> has quit IRC (Read error: Connection reset by peer)
[00:04:43] *** squeakytoy <squeakytoy!~squeakyto@h87-96-232-216.cust.se.alltele.net> has joined #angularjs
[00:06:51] *** LucaTM <LucaTM!~LucaTM@unaffiliated/lucatm> has quit IRC (Quit: To infinity and beyond...)
[00:09:09] *** Miaow <Miaow!53ce0585@gateway/web/freenode/ip.83.206.5.133> has quit IRC (Ping timeout: 260 seconds)
[00:09:15] *** eago <eago!~eago@181.59.244.38> has joined #angularjs
[00:10:40] *** percY- <percY-!~percY@138.68.7.139> has quit IRC (Ping timeout: 240 seconds)
[00:11:10] *** micabot <micabot!~mica@unaffiliated/mica> has quit IRC (Quit: plaf!)
[00:11:53] <colonel-panic> hey I need to change the color of text inside a DIV, from within the controller
[00:12:32] <colonel-panic> I set the value of the color as a var
[00:13:42] *** despai <despai!~despai@ip5658b122.direct-adsl.nl> has joined #angularjs
[00:14:26] *** percY- <percY-!~percY@138.68.7.139> has joined #angularjs
[00:14:27] <colonel-panic> then in the HTML I used ng-style='{color: $ctrl.colorVariableName !important}'
[00:14:37] *** encryptd_fractal <encryptd_fractal!~encryptd_@c-24-245-47-249.hsd1.mn.comcast.net> has joined #angularjs
[00:14:40] <colonel-panic> but that doesn't seem to work
[00:15:31] *** soee_ <soee_!~soee@afot18.neoplus.adsl.tpnet.pl> has quit IRC (Quit: Konversation terminated!)
[00:16:23] *** AtumT_ <AtumT_!~IRC@177.96.201.232.dynamic.adsl.gvt.net.br> has quit IRC (Remote host closed the connection)
[00:17:50] <wafflejock> colonel-panic, if you need the important then concatenate it like + '!important'
[00:18:03] <wafflejock> er include a space before the ! too
[00:18:40] <colonel-panic> I don't know whether I need it.... it doesn't work either way
[00:18:45] <colonel-panic> :?
[00:18:49] <colonel-panic> :/
[00:18:56] *** SexualRickshaw <SexualRickshaw!~kvirc@cpe-70-114-165-148.austin.res.rr.com> has joined #angularjs
[00:19:07] *** Z3R0 <Z3R0!~mischief@cpe-24-55-15-236.austin.res.rr.com> has joined #angularjs
[00:20:52] <colonel-panic> do I need the "$ctrl." before the variable name?
[00:21:19] <zomg> colonel-panic: if you use ' ' to enclose the ng-style, you need to use "
[00:21:32] <zomg> ie. ng-style='{color: $ctrl.colorVariableName + "!important" }'
[00:21:38] <colonel-panic> Well I know that
[00:21:40] <zomg> ok
[00:21:46] <zomg> it *should* work then.
[00:21:48] *** macstriker <macstriker!~Adium@ppp109-252-81-41.pppoe.spdop.ru> has joined #angularjs
[00:21:56] <zomg> check for errors, and inspect the element in question to see if any styles are applied
[00:22:23] <zomg> if nothing is applied, add some console.logs to check that the value of the variable is changed to the one you expect
[00:23:44] <colonel-panic> do I need the "$ctrl." before the variable name?
[00:24:01] <zomg> if you're using controllerAs then yeah
[00:24:11] <zomg> if not then no, or if you've assigned the value to $scope
[00:24:32] <wafflejock> http://stackoverflow.com/questions/22046704/can-i-use-the-important-css-keyword-with-angularjs-ng-style-directive apparently that is a problem
[00:25:19] *** siba <siba!~textual@60-242-28-48.static.tpgi.com.au> has joined #angularjs
[00:25:19] *** cagomez <cagomez!~cagomez@h-69-3-119-202.lsan.ca.dynamic.globalcapacity.com> has quit IRC (Ping timeout: 245 seconds)
[00:25:28] <zomg> ah that's true
[00:25:35] <zomg> iirc !important didn't work wtih foo.style.whatever
[00:25:44] <zomg> so if that's what happens with ng-style then yeah
[00:25:56] <wafflejock> yeah just tried in a plnkr and it is a problem wasn't expecting tht
[00:25:58] <wafflejock> that*
[00:25:58] *** macstriker <macstriker!~Adium@ppp109-252-81-41.pppoe.spdop.ru> has quit IRC (Ping timeout: 240 seconds)
[00:26:06] *** Ryzer <Ryzer!~textual@ptr-4h7lnxbhj9f0uoptjzi.18120a2.ip6.access.telenet.be> has joined #angularjs
[00:26:09] <colonel-panic> it's not even getting the varibale
[00:26:27] <wafflejock> colonel-panic, yeah I think since it can't set the style with JS with !important you won't see it on the element
[00:26:32] <colonel-panic> I put the variable in {{}} in the HTML and it's not showing up
[00:26:43] <wafflejock> oh
[00:26:46] <wafflejock> that should be showing
[00:27:05] <wafflejock> https://plnkr.co/edit/CZNXW3X0tImmjZI5oJs5?p=preview
[00:27:47] *** Z3R0 <Z3R0!~mischief@cpe-24-55-15-236.austin.res.rr.com> has quit IRC (Quit: Z3R0)
[00:28:25] *** cagomez <cagomez!~cagomez@h-69-3-119-202.lsan.ca.dynamic.globalcapacity.com> has joined #angularjs
[00:28:35] *** despai <despai!~despai@ip5658b122.direct-adsl.nl> has quit IRC (Ping timeout: 240 seconds)
[00:29:25] *** despai <despai!~despai@ip5658b122.direct-adsl.nl> has joined #angularjs
[00:31:31] <colonel-panic> I'm getting a console eror telling me the textColor is not defined
[00:31:49] <colonel-panic> yet I clearly defined it in the controller
[00:32:17] <wafflejock> make a plnkr with your stuff or enough to show the problem
[00:32:37] <wafflejock> and or give us the full error
[00:32:39] <colonel-panic> UGH this is going to be a hassle
[00:32:46] *** cagomez <cagomez!~cagomez@h-69-3-119-202.lsan.ca.dynamic.globalcapacity.com> has quit IRC (Ping timeout: 256 seconds)
[00:33:15] <wafflejock> minimal reproduction shouldn't be super hard to make you don't need a router and all can just use ng-controller or whatever but can also just show the full error and gist of the controller or whatever
[00:34:13] <colonel-panic> This is a form. There's a required button that needs to be clicked in order to do a calculation before the form is submitted. I have a blurb following the button, to remind the user to click the button. The blurb is in gray text.
[00:36:02] <colonel-panic> I've set a conditional in the controller to check whether the product variable exists; if not, then invalidate the form and change the color of that reminder text to red (like an error message)
[00:36:21] <colonel-panic> That function gets called when the user clicks the submit button
[00:36:46] *** bengillies <bengillies!~bengillie@bengillies.net> has joined #angularjs
[00:37:32] <colonel-panic> I know the function works because it performs the form invalidation just fine, and when ask it to output form.$valid and form.$invalid they come out just right
[00:37:45] <colonel-panic> so that part is legit
[00:37:59] <colonel-panic> the only part I can't get to work is the stupid red text
[00:38:46] *** al-damiri <al-damiri!uid142631@gateway/web/irccloud.com/x-keypzedtjglafbno> has quit IRC (Quit: Connection closed for inactivity)
[00:39:24] <colonel-panic> It's the most frustrating thing because I don't know why the variable isn't getting passed to the model in the page
[00:39:54] <colonel-panic> Hmmm... I have an idea
[00:40:05] <colonel-panic> in the controller, I could put
[00:41:22] <colonel-panic> this.scopeOfTheDataModel.textColor = textColor
[00:41:28] *** bengillies <bengillies!~bengillie@bengillies.net> has quit IRC (Ping timeout: 240 seconds)
[00:42:13] *** Ryzer <Ryzer!~textual@ptr-4h7lnxbhj9f0uoptjzi.18120a2.ip6.access.telenet.be> has quit IRC (Ping timeout: 255 seconds)
[00:44:03] *** sgen <sgen!~sgen@clwdon2201w-lp130-01-70-54-13-159.dsl.bell.ca> has quit IRC (Remote host closed the connection)
[00:44:18] <colonel-panic> Still no worky
[00:44:18] *** jsightler is now known as jsightler_afk
[00:45:58] *** LeBlaaanc <LeBlaaanc!~textual@unaffiliated/leblaaanc> has quit IRC (Ping timeout: 240 seconds)
[00:47:04] *** Angugus <Angugus!52e199fa@gateway/web/freenode/ip.82.225.153.250> has quit IRC (Ping timeout: 260 seconds)
[00:48:58] *** wrainbolt <wrainbolt!~wrainbolt@dyn213152.shef.ac.uk> has quit IRC (Ping timeout: 264 seconds)
[00:49:54] *** encryptd_fractal <encryptd_fractal!~encryptd_@c-24-245-47-249.hsd1.mn.comcast.net> has quit IRC (Remote host closed the connection)
[00:50:04] *** edrocks <edrocks!~edrocks@47.199.114.94> has joined #angularjs
[00:50:07] *** encryptd_fractal <encryptd_fractal!~encryptd_@c-24-245-47-249.hsd1.mn.comcast.net> has joined #angularjs
[00:50:08] *** kuadrosx <kuadrosx!~kuadrosx@dynamic-186-30-104-167.dynamic.etb.net.co> has quit IRC (Ping timeout: 240 seconds)
[00:52:15] *** tkxxx <tkxxx!~tkxxx@tristan1990.plus.com> has quit IRC (Remote host closed the connection)
[00:52:30] *** tkxxx <tkxxx!~tkxxx@tristan1990.plus.com> has joined #angularjs
[00:53:03] *** tkxxx <tkxxx!~tkxxx@tristan1990.plus.com> has quit IRC (Remote host closed the connection)
[00:53:19] *** tkxxx <tkxxx!~tkxxx@tristan1990.plus.com> has joined #angularjs
[00:53:50] *** tkxxx <tkxxx!~tkxxx@tristan1990.plus.com> has quit IRC (Remote host closed the connection)
[00:54:07] *** tkxxx <tkxxx!~tkxxx@tristan1990.plus.com> has joined #angularjs
[00:54:42] *** ingow <ingow!~ingow@177.96.56.155> has joined #angularjs
[00:55:55] <wafflejock> colonel-panic, yeah really hard to say without seeing the details
[00:56:06] *** ingow <ingow!~ingow@177.96.56.155> has quit IRC (Client Quit)
[00:56:30] *** despai <despai!~despai@ip5658b122.direct-adsl.nl> has quit IRC (Read error: Connection reset by peer)
[00:56:32] <colonel-panic> The thing is, this is a super-complex multi-page application built with Redux on top of Angular
[00:56:38] <wafflejock> colonel-panic, like zomg was asking about earlier it depends on if you're using controller as also depends what other scopes you're dealing with to some degree but hard to guess without actually seeing how things are organized
[00:56:44] *** ingow <ingow!~ingow@177.96.56.155> has joined #angularjs
[00:56:46] <colonel-panic> it's a major headache to work on
[00:56:54] <wafflejock> well can you reproduce the form part and it's controller without all the model parts?
[00:57:01] <colonel-panic> yeah, probably
[00:57:25] *** despai <despai!~despai@ip5658b122.direct-adsl.nl> has joined #angularjs
[00:57:31] <colonel-panic> the only part that'snot working is this damn color changing thing which ought to be easy
[00:57:56] <colonel-panic> I'm not too good at setting up a plunker with angular
[00:58:06] <colonel-panic> is there a dropdown menu or something?
[00:58:18] <colonel-panic> How much of the HTML do I have to reproduce?
[00:58:54] <colonel-panic> this thing I'm working on is pieced together out of templates
[00:58:56] *** edrocks <edrocks!~edrocks@47.199.114.94> has quit IRC (Remote host closed the connection)
[00:59:40] <wafflejock> colonel-panic, https://plnkr.co/edit/CZNXW3X0tImmjZI5oJs5?p=preview shows the basic put some style in a var but just need to see the form and controller you're using basically and how you're using the controller
[01:03:28] *** Sna4x8 <Sna4x8!~avejidah@45-19-138-50.lightspeed.frokca.sbcglobal.net> has quit IRC (Ping timeout: 240 seconds)
[01:04:55] *** knob <knob!~knob@209.91.217.115> has joined #angularjs
[01:05:31] *** knob <knob!~knob@209.91.217.115> has quit IRC (Read error: Connection reset by peer)
[01:05:56] *** Doginal <Doginal!~agriggs@unaffiliated/doginal> has quit IRC (Ping timeout: 252 seconds)
[01:06:07] *** Doginal <Doginal!~agriggs@unaffiliated/doginal> has joined #angularjs
[01:06:28] *** encryptd_fractal <encryptd_fractal!~encryptd_@c-24-245-47-249.hsd1.mn.comcast.net> has quit IRC (Remote host closed the connection)
[01:07:31] *** lexileo <lexileo!~lexii@103.8.148.248> has quit IRC (Ping timeout: 260 seconds)
[01:08:38] *** tkxxx <tkxxx!~tkxxx@tristan1990.plus.com> has quit IRC (Remote host closed the connection)
[01:12:05] *** donguston <donguston!~AdamPC@cpc12-sprt2-2-0-cust478.17-2.cable.virginm.net> has quit IRC (Ping timeout: 240 seconds)
[01:12:23] *** atomi <atomi!~atomi@71-83-179-177.dhcp.lnbh.ca.charter.com> has quit IRC (Remote host closed the connection)
[01:13:19] *** atomi <atomi!~atomi@71-83-179-177.dhcp.lnbh.ca.charter.com> has joined #angularjs
[01:13:35] *** SuperflyR6 <SuperflyR6!~textual@78-23-246-224.access.telenet.be> has joined #angularjs
[01:14:44] *** eago <eago!~eago@181.59.244.38> has quit IRC (Remote host closed the connection)
[01:15:16] *** eago <eago!~eago@181.59.244.38> has joined #angularjs
[01:15:31] *** Z3R0 <Z3R0!~mischief@cpe-24-55-15-236.austin.res.rr.com> has joined #angularjs
[01:16:49] *** montyboy <montyboy!~montyboy@d60-54-172.col.wideopenwest.com> has quit IRC (Read error: Connection reset by peer)
[01:18:14] <colonel-panic> wafflejock, thanks for that plunker.
[01:18:50] <colonel-panic> That's how it's supposed to work, but for some reason I can't seem to pass this variable from my controller into the template
[01:18:58] *** despai <despai!~despai@ip5658b122.direct-adsl.nl> has quit IRC (Ping timeout: 240 seconds)
[01:19:41] *** despai <despai!~despai@ip5658b122.direct-adsl.nl> has joined #angularjs
[01:19:48] *** eago <eago!~eago@181.59.244.38> has quit IRC (Ping timeout: 256 seconds)
[01:19:51] <colonel-panic> My code looks very similar to that, except that the color-changing code is embedded inside a function that invalidates the form if a certain button is not clicked
[01:31:05] *** Wizek_ <Wizek_!~Wizek@catv-89-132-132-110.catv.broadband.hu> has quit IRC (Ping timeout: 240 seconds)
[01:31:34] *** rho <rho!~rho@drupal.org/user/114058/view> has quit IRC (Ping timeout: 245 seconds)
[01:32:31] *** atomi <atomi!~atomi@71-83-179-177.dhcp.lnbh.ca.charter.com> has quit IRC (Quit: leaving)
[01:33:45] *** lavalamp <lavalamp!~lavalamp@unaffiliated/lavalamp> has quit IRC (Quit: (> '.' )>)
[01:34:05] *** atomi <atomi!~atomi@71-83-179-177.dhcp.lnbh.ca.charter.com> has joined #angularjs
[01:37:50] *** bengillies <bengillies!~bengillie@bengillies.net> has joined #angularjs
[01:38:04] *** jimklo_ <jimklo_!~jimklo@75-128-4-186.dhcp.snlo.ca.charter.com> has joined #angularjs
[01:38:09] *** lithie <lithie!uid45836@gateway/web/irccloud.com/x-skoumxuxhtjvoyjo> has quit IRC (Quit: Connection closed for inactivity)
[01:39:52] *** sterns <sterns!~matt@199.244.109.163> has quit IRC (Quit: Leaving)
[01:40:55] *** elsevero <elsevero!~elsevero@82.77.50.197> has joined #angularjs
[01:40:56] *** eago <eago!~eago@181.59.244.38> has joined #angularjs
[01:41:46] *** jimklo <jimklo!~jimklo@192.12.16.110> has quit IRC (Ping timeout: 264 seconds)
[01:42:19] *** jenelizabeth <jenelizabeth!~jenelizab@cpc76810-brmb10-2-0-cust4.1-3.cable.virginm.net> has joined #angularjs
[01:42:22] *** jimklo_ <jimklo_!~jimklo@75-128-4-186.dhcp.snlo.ca.charter.com> has quit IRC (Ping timeout: 255 seconds)
[01:42:35] *** bengillies <bengillies!~bengillie@bengillies.net> has quit IRC (Ping timeout: 240 seconds)
[01:50:18] *** Rodya_ <Rodya_!~Rodya_@2601:46:4001:e0b4:7c23:f4fc:aca3:7eb7> has quit IRC (Remote host closed the connection)
[01:51:05] *** Bag <Bag!~bag@r-46.cust-u218.ip.static.uno.uk.net> has joined #angularjs
[01:55:49] <WhatTheDilly> Hi
[01:56:16] <WhatTheDilly> Can anybody tell if this tutorial/sample code Would this be for angualr 1 o 2? https://kodeyak.wordpress.com/2014/11/26/angularjs-in-typescript-services-and-http/
[01:57:53] *** jtimon <jtimon!~quassel@245.30.134.37.dynamic.jazztel.es> has joined #angularjs
[02:01:40] *** marr <marr!~ccc@dynamic-78-8-84-58.ssp.dialog.net.pl> has quit IRC (Ping timeout: 258 seconds)
[02:02:24] *** JBreit <JBreit!~JBreit4@2601:985:104:4c1a::2b6a> has joined #angularjs
[02:04:42] <zomg> WhatTheDilly: angular 1
[02:05:04] <zomg> if it's from earlier than 2016 it's probably not angular 2 =)
[02:06:14] <WhatTheDilly> okay, thanks
[02:06:29] <WhatTheDilly> trying to see if i can get angular 1 and ts working
[02:06:37] <WhatTheDilly> just cause JS OOP is driving me bonkers
[02:06:46] *** jameser <jameser!~textual@125.37.179.215> has joined #angularjs
[02:06:49] *** JBreit <JBreit!~JBreit4@2601:985:104:4c1a::2b6a> has quit IRC (Client Quit)
[02:08:21] *** opiates <opiates!~opiates@unaffiliated/opiates> has joined #angularjs
[02:09:02] *** opiates <opiates!~opiates@unaffiliated/opiates> has left #angularjs
[02:09:27] *** tkxxx <tkxxx!~tkxxx@tristan1990.plus.com> has joined #angularjs
[02:10:16] *** tkxxx <tkxxx!~tkxxx@tristan1990.plus.com> has quit IRC (Read error: Connection reset by peer)
[02:10:16] *** ferr1 <ferr1!~ferr@78-61-238-234.static.zebra.lt> has quit IRC (Ping timeout: 255 seconds)
[02:10:47] *** tkxxx <tkxxx!~tkxxx@tristan1990.plus.com> has joined #angularjs
[02:10:48] *** misty <misty!~misty@unaffiliated/misty> has quit IRC (Remote host closed the connection)
[02:11:20] *** sargentmki <sargentmki!~sargentmk@107-213-184-236.lightspeed.irvnca.sbcglobal.net> has quit IRC (Ping timeout: 276 seconds)
[02:12:13] *** heartburn <heartburn!~heartburn@185.117.118.195> has quit IRC (Ping timeout: 255 seconds)
[02:13:37] *** Rodya_ <Rodya_!~Rodya_@2601:46:4001:e0b4:d991:9e02:92ab:16c7> has joined #angularjs
[02:14:34] *** JBreit <JBreit!~JBreit4@2601:985:104:4c1a::2b6a> has joined #angularjs
[02:15:10] *** tkxxx <tkxxx!~tkxxx@tristan1990.plus.com> has quit IRC (Ping timeout: 240 seconds)
[02:17:20] *** csergiu <csergiu!~csergiu@79.116.63.184> has quit IRC (Remote host closed the connection)
[02:19:17] *** Z3R0 <Z3R0!~mischief@cpe-24-55-15-236.austin.res.rr.com> has quit IRC (Quit: Z3R0)
[02:21:42] *** geoid_ <geoid_!~geoid@host217-43-97-134.range217-43.btcentralplus.com> has joined #angularjs
[02:22:16] *** geoid_ <geoid_!~geoid@host217-43-97-134.range217-43.btcentralplus.com> has quit IRC (Remote host closed the connection)
[02:22:20] *** pyios <pyios!~andy@111.63.44.9> has joined #angularjs
[02:29:18] *** mischat <mischat!~mischat@05434105.skybroadband.com> has quit IRC (Remote host closed the connection)
[02:29:41] *** ingow_ <ingow_!~ingow@179.186.88.33.dynamic.adsl.gvt.net.br> has joined #angularjs
[02:29:51] *** mischat <mischat!~mischat@05434105.skybroadband.com> has joined #angularjs
[02:32:06] *** elsevero <elsevero!~elsevero@82.77.50.197> has quit IRC (Quit: elsevero)
[02:33:10] *** ingow <ingow!~ingow@177.96.56.155> has quit IRC (Ping timeout: 240 seconds)
[02:34:06] *** gvanderest <gvanderest!~gvanderes@S01066c709fd71834.ok.shawcable.net> has quit IRC (Quit: Leaving...)
[02:34:08] *** mischat <mischat!~mischat@05434105.skybroadband.com> has quit IRC (Ping timeout: 240 seconds)
[02:35:28] *** pyios <pyios!~andy@111.63.44.9> has quit IRC (Quit: pyios)
[02:38:13] *** DV8__ <DV8__!~Deviate@135-23-110-43.cpe.pppoe.ca> has joined #angularjs
[02:38:32] *** bengillies <bengillies!~bengillie@bengillies.net> has joined #angularjs
[02:38:36] *** w2r5 <w2r5!~textual@c-107-2-32-119.hsd1.az.comcast.net> has joined #angularjs
[02:38:36] *** w2r5 <w2r5!~textual@c-107-2-32-119.hsd1.az.comcast.net> has quit IRC (Client Quit)
[02:41:09] *** DV8_ <DV8_!~Deviate@135-23-110-43.cpe.pppoe.ca> has quit IRC (Ping timeout: 245 seconds)
[02:42:13] *** jameser <jameser!~textual@125.37.179.215> has quit IRC (Quit: My MacBook has gone to sleep. ZZZzzz…)
[02:43:07] *** jameser <jameser!~textual@125.37.179.215> has joined #angularjs
[02:43:11] *** bengillies <bengillies!~bengillie@bengillies.net> has quit IRC (Ping timeout: 260 seconds)
[02:43:40] *** bbankes_ <bbankes_!~bbankes@162.218.222.150> has quit IRC (Ping timeout: 240 seconds)
[02:49:23] *** jameser <jameser!~textual@125.37.179.215> has quit IRC (Quit: My MacBook has gone to sleep. ZZZzzz…)
[02:49:28] *** despai <despai!~despai@ip5658b122.direct-adsl.nl> has quit IRC (Ping timeout: 240 seconds)
[02:50:38] *** dreh <dreh!~jedimind@unaffiliated/jedimind> has quit IRC (Read error: Connection timed out)
[02:51:46] *** despai <despai!~despai@ip5658b122.direct-adsl.nl> has joined #angularjs
[02:52:28] *** dreh <dreh!~jedimind@unaffiliated/jedimind> has joined #angularjs
[02:53:52] *** lavalamp <lavalamp!~lavalamp@unaffiliated/lavalamp> has joined #angularjs
[02:54:27] *** jameser <jameser!~textual@125.37.179.215> has joined #angularjs
[02:59:26] <zomg> WhatTheDilly: it should be a drop in replacement since valid JS is valid TS
[02:59:35] <zomg> you just won't get the typechecking without some additional stuff
[03:00:07] <zomg> tbh I'm not familiar with how ng1 works with TS, but that article looked vaguely familiar, so I'm assuming that's the "standard" way of doing ng1+ts
[03:06:06] *** skyx <skyx!~skyx__@cpe-31-15-173-211.cable.telemach.net> has quit IRC (Quit: This computer has gone to sleep)
[03:06:31] *** cotko <cotko!~ahmed@188-230-161-23.dynamic.t-2.net> has quit IRC (Ping timeout: 260 seconds)
[03:07:27] *** jameser <jameser!~textual@125.37.179.215> has quit IRC (Quit: My MacBook has gone to sleep. ZZZzzz…)
[03:09:03] *** heartburn <heartburn!~heartburn@213.21.33.24> has joined #angularjs
[03:10:34] *** FIFOd <FIFOd!~FIFOd@75.60.240.181> has joined #angularjs
[03:11:19] *** pyios <pyios!~andy@111.63.44.9> has joined #angularjs
[03:11:19] *** pyios <pyios!~andy@111.63.44.9> has quit IRC (Client Quit)
[03:11:32] *** jsightler_afk <jsightler_afk!~jsightler@redhat/jboss/jsightler> has quit IRC (Remote host closed the connection)
[03:13:03] *** observerX <observerX!ratanparai@gateway/shell/matrix.org/x-xnoqvrlczythzurs> has joined #angularjs
[03:13:44] *** heartburn <heartburn!~heartburn@213.21.33.24> has quit IRC (Ping timeout: 258 seconds)
[03:14:55] *** moloch <moloch!~moloch@ip-64-134-96-24.public.wayport.net> has joined #angularjs
[03:16:18] *** SomeKittens <SomeKittens!uid27802@gateway/web/irccloud.com/x-yiwtolfgwqlstlnp> has joined #angularjs
[03:19:32] <WhatTheDilly> lol trying to get angular 2 working :-/
[03:21:37] <WhatTheDilly> i feel like people don't klnow how to write tutorials/how-tos in 2017
[03:21:51] <WhatTheDilly> everyone skips 89 billion steps and arrives at and theres your hello
[03:22:50] *** joshontheweb <joshontheweb!~joshonthe@162.243.109.49> has joined #angularjs
[03:23:32] <WhatTheDilly> Why do people insist on chatting via snapchat
[03:24:20] *** joshontheweb <joshontheweb!~joshonthe@162.243.109.49> has quit IRC (Client Quit)
[03:25:06] *** joshontheweb <joshontheweb!~joshonthe@162.243.109.49> has joined #angularjs
[03:26:21] *** despai <despai!~despai@ip5658b122.direct-adsl.nl> has quit IRC (Ping timeout: 260 seconds)
[03:26:34] *** FiveBroDeepBook <FiveBroDeepBook!~stezya.ru@2606:f180:2:1c7:1c7:8df4:bf5f:414e> has joined #angularjs
[03:31:45] *** Rodya_ <Rodya_!~Rodya_@2601:46:4001:e0b4:d991:9e02:92ab:16c7> has quit IRC (Remote host closed the connection)
[03:33:58] *** edr <edr!~edr@pdpc/supporter/professional/edr> has quit IRC (Ping timeout: 264 seconds)
[03:36:19] *** edr <edr!~edr@pdpc/supporter/professional/edr> has joined #angularjs
[03:37:17] *** rodd <rodd!~rodd@unaffiliated/rodd> has left #angularjs
[03:37:52] *** edrocks <edrocks!~edrocks@47.199.114.94> has joined #angularjs
[03:39:19] *** bengillies <bengillies!~bengillie@bengillies.net> has joined #angularjs
[03:39:57] *** gvanderest <gvanderest!~gvanderes@S01061cabc0b0f193.ok.shawcable.net> has joined #angularjs
[03:40:38] *** gvanderest <gvanderest!~gvanderes@S01061cabc0b0f193.ok.shawcable.net> has quit IRC (Remote host closed the connection)
[03:44:01] *** bengillies <bengillies!~bengillie@bengillies.net> has quit IRC (Ping timeout: 255 seconds)
[03:46:40] *** ansu <ansu!~ansu@unaffiliated/ansu> has quit IRC (Ping timeout: 240 seconds)
[03:48:17] *** ansu <ansu!~ansu@unaffiliated/ansu> has joined #angularjs
[03:50:22] *** Z3R0 <Z3R0!~mischief@cpe-24-55-15-236.austin.res.rr.com> has joined #angularjs
[03:57:53] *** FiveBroDeepBook <FiveBroDeepBook!~stezya.ru@2606:f180:2:1c7:1c7:8df4:bf5f:414e> has quit IRC (Quit: jIRCii - http://www.oldschoolirc.com)
[04:00:09] *** Chadtech <Chadtech!sid40724@gateway/web/irccloud.com/x-qsxchxadhcubqpdg> has joined #angularjs
[04:00:52] *** plutoniix <plutoniix!~q@node-49g.pool-125-25.dynamic.totbb.net> has joined #angularjs
[04:01:52] <Chadtech> Hello. I am on day one of learning Angular.
[04:02:22] <Chadtech> I am trying to define a type called `todo` in app.components.ts, and then view them in as a list.
[04:02:32] <Chadtech> Here is a bit of my code
[04:02:33] <Chadtech> https://gist.github.com/Chadtech/33d7ebe6c3ce754b8c9c1f23f868e1cf
[04:02:38] <WhatTheDilly> hurray! count the number of hairs you have and cherish the number and the date in which you had that count :p
[04:03:05] <Chadtech> I am getting an error tho, I dont know why. I am trying to pass each todo into a todo.component.ts.
[04:03:10] <Chadtech> How do I do that? What am I doing wrong?
[04:03:33] *** joshontheweb <joshontheweb!~joshonthe@162.243.109.49> has quit IRC (Ping timeout: 240 seconds)
[04:05:29] <WhatTheDilly> probably need to provide more like what your error is
[04:07:21] *** JBreit <JBreit!~JBreit4@2601:985:104:4c1a::2b6a> has quit IRC (Read error: Connection reset by peer)
[04:07:29] *** edrocks_ <edrocks_!~edrocks@66-194-206-178.static.twtelecom.net> has joined #angularjs
[04:07:34] *** Z3R0 <Z3R0!~mischief@cpe-24-55-15-236.austin.res.rr.com> has quit IRC (Quit: Z3R0)
[04:07:35] *** FiveBroDeepBook <FiveBroDeepBook!~stezya.ru@2606:f180:2:1c7:1c7:8df4:bf5f:414e> has joined #angularjs
[04:07:46] *** JBreit <JBreit!~JBreit4@2601:985:104:4c1a::2b6a> has joined #angularjs
[04:09:20] <Chadtech> Well, right now I am in a state where I get no errors. But todo.compoment.ts is not rendering.
[04:09:29] *** heartburn <heartburn!~heartburn@213.21.33.24> has joined #angularjs
[04:09:47] <Chadtech> Here is my todo.component.ts file
[04:09:47] <Chadtech> https://gist.github.com/Chadtech/682483c95a4905f05bf7983a652fac6b
[04:10:54] <Chadtech> Hmm, when I remove '*ngIf="todo' it blows up.
[04:11:59] *** tkxxx <tkxxx!~tkxxx@tristan1990.plus.com> has joined #angularjs
[04:12:00] *** edrocks_ <edrocks_!~edrocks@66-194-206-178.static.twtelecom.net> has quit IRC (Ping timeout: 258 seconds)
[04:13:14] *** matthew_r <matthew_r!~matt@ec2.happyspork.com> has quit IRC (Ping timeout: 245 seconds)
[04:14:05] *** heartburn <heartburn!~heartburn@213.21.33.24> has quit IRC (Ping timeout: 240 seconds)
[04:14:19] *** plutoniix <plutoniix!~q@node-49g.pool-125-25.dynamic.totbb.net> has quit IRC (Quit: Leaving)
[04:15:05] *** cacts <cacts!~cactus@c-174-51-80-218.hsd1.co.comcast.net> has joined #angularjs
[04:16:28] *** tkxxx <tkxxx!~tkxxx@tristan1990.plus.com> has quit IRC (Ping timeout: 240 seconds)
[04:17:38] *** ingow_ <ingow_!~ingow@179.186.88.33.dynamic.adsl.gvt.net.br> has quit IRC (Quit: Leaving)
[04:17:45] *** pyios <pyios!~andy@111.63.44.9> has joined #angularjs
[04:18:54] *** matthew_r <matthew_r!~matt@ec2.happyspork.com> has joined #angularjs
[04:20:53] *** FiveBroDeepBook <FiveBroDeepBook!~stezya.ru@2606:f180:2:1c7:1c7:8df4:bf5f:414e> has quit IRC (Quit: jIRCii - http://www.oldschoolirc.com)
[04:22:25] *** Rodya_ <Rodya_!~Rodya_@2601:46:4001:e0b4:c00b:902a:b215:6d2c> has joined #angularjs
[04:25:16] *** LIERO <LIERO!~LIERO@unaffiliated/liero> has quit IRC (Ping timeout: 255 seconds)
[04:26:59] *** chachasmooth <chachasmooth!~chachasmo@unaffiliated/chachasmooth> has quit IRC (Ping timeout: 245 seconds)
[04:30:19] *** chachasmooth <chachasmooth!~chachasmo@unaffiliated/chachasmooth> has joined #angularjs
[04:30:24] *** mischat <mischat!~mischat@05434105.skybroadband.com> has joined #angularjs
[04:34:58] *** amcorreia <amcorreia!~amcorreia@189.27.197.56.dynamic.adsl.gvt.net.br> has quit IRC (Ping timeout: 240 seconds)
[04:35:18] *** mischat <mischat!~mischat@05434105.skybroadband.com> has quit IRC (Ping timeout: 256 seconds)
[04:39:09] *** amdi_ <amdi_!~amdi_@pool-108-32-75-158.pitbpa.fios.verizon.net> has joined #angularjs
[04:40:04] *** gvanderest <gvanderest!~gvanderes@S01061cabc0b0f193.ok.shawcable.net> has joined #angularjs
[04:40:06] *** bengillies <bengillies!~bengillie@bengillies.net> has joined #angularjs
[04:41:42] *** fnx <fnx!~fnx@a91-154-34-37.elisa-laajakaista.fi> has quit IRC (Read error: Connection reset by peer)
[04:43:59] *** amdi_ <amdi_!~amdi_@pool-108-32-75-158.pitbpa.fios.verizon.net> has quit IRC (Client Quit)
[04:44:50] *** amdi_ <amdi_!~amdi_@pool-108-32-75-158.pitbpa.fios.verizon.net> has joined #angularjs
[04:44:58] *** bengillies <bengillies!~bengillie@bengillies.net> has quit IRC (Ping timeout: 240 seconds)
[04:47:54] *** JBreit <JBreit!~JBreit4@2601:985:104:4c1a::2b6a> has quit IRC (Read error: Connection reset by peer)
[04:48:01] *** BackEndCoder <BackEndCoder!~steve@mail.dontplay.co.uk> has quit IRC (Excess Flood)
[04:48:21] *** JBreit <JBreit!~JBreit4@2601:985:104:4c1a::2b6a> has joined #angularjs
[04:49:18] *** BackEndCoder <BackEndCoder!~steve@mail.dontplay.co.uk> has joined #angularjs
[04:50:00] *** fedenunez <fedenunez!~fede@r167-60-63-24.dialup.adsl.anteldata.net.uy> has joined #angularjs
[04:53:55] *** fedenunez <fedenunez!~fede@r167-60-63-24.dialup.adsl.anteldata.net.uy> has quit IRC (Client Quit)
[04:54:02] *** fedenunez <fedenunez!~fede@r167-60-63-24.dialup.adsl.anteldata.net.uy> has joined #angularjs
[04:55:35] *** Z3R0 <Z3R0!~mischief@cpe-24-55-15-236.austin.res.rr.com> has joined #angularjs
[04:57:35] *** fedenunez1 <fedenunez1!~fede@r167-60-63-24.dialup.adsl.anteldata.net.uy> has joined #angularjs
[04:57:35] *** fedenunez <fedenunez!~fede@r167-60-63-24.dialup.adsl.anteldata.net.uy> has quit IRC (Client Quit)
[05:02:40] *** iraj <iraj!~iraj@unaffiliated/iraj> has joined #angularjs
[05:04:05] *** sargentmki <sargentmki!~sargentmk@107-213-184-236.lightspeed.irvnca.sbcglobal.net> has joined #angularjs
[05:10:15] *** heartburn <heartburn!~heartburn@213.21.33.24> has joined #angularjs
[05:12:02] *** deez79 <deez79!~deez79@221.74.154.104.bc.googleusercontent.com> has quit IRC (Remote host closed the connection)
[05:13:20] *** tkxxx <tkxxx!~tkxxx@tristan1990.plus.com> has joined #angularjs
[05:14:46] *** heartburn <heartburn!~heartburn@213.21.33.24> has quit IRC (Ping timeout: 255 seconds)
[05:17:43] *** edrocks <edrocks!~edrocks@47.199.114.94> has quit IRC (Remote host closed the connection)
[05:18:01] *** pyios <pyios!~andy@111.63.44.9> has quit IRC (Quit: pyios)
[05:18:32] *** tkxxx <tkxxx!~tkxxx@tristan1990.plus.com> has quit IRC (Ping timeout: 276 seconds)
[05:20:19] *** edr <edr!~edr@pdpc/supporter/professional/edr> has quit IRC (Ping timeout: 255 seconds)
[05:26:28] *** JBreit <JBreit!~JBreit4@2601:985:104:4c1a::2b6a> has quit IRC (Read error: Connection reset by peer)
[05:27:36] *** JBreit <JBreit!~JBreit4@2601:985:104:4c1a::2b6a> has joined #angularjs
[05:28:53] *** iraj <iraj!~iraj@unaffiliated/iraj> has quit IRC (Ping timeout: 240 seconds)
[05:30:10] *** joy <joy!775cc262@gateway/web/freenode/ip.119.92.194.98> has joined #angularjs
[05:30:30] *** joy <joy!775cc262@gateway/web/freenode/ip.119.92.194.98> has quit IRC (Client Quit)
[05:31:28] *** mischat <mischat!~mischat@05434105.skybroadband.com> has joined #angularjs
[05:33:16] *** basiclaser <basiclaser!uid10861@gateway/web/irccloud.com/x-ecaomujvogkzbrfd> has joined #angularjs
[05:34:46] *** redhedded1 <redhedded1!~redhedded@23.249.38.206> has joined #angularjs
[05:36:05] *** mischat <mischat!~mischat@05434105.skybroadband.com> has quit IRC (Ping timeout: 240 seconds)
[05:38:42] *** redhedded1 <redhedded1!~redhedded@23.249.38.206> has quit IRC (Client Quit)
[05:39:00] *** gvanderest <gvanderest!~gvanderes@S01061cabc0b0f193.ok.shawcable.net> has quit IRC (Remote host closed the connection)
[05:39:04] *** quakephil <quakephil!~smuxi@cpe-69-200-246-39.nyc.res.rr.com> has quit IRC (Ping timeout: 245 seconds)
[05:41:31] *** iraj <iraj!~iraj@unaffiliated/iraj> has joined #angularjs
[05:45:41] *** DV8_ <DV8_!~Deviate@135-23-110-43.cpe.pppoe.ca> has joined #angularjs
[05:48:41] *** blackwind_123 <blackwind_123!~IceChat9@117.192.141.50> has quit IRC (Ping timeout: 260 seconds)
[05:48:58] *** DV8__ <DV8__!~Deviate@135-23-110-43.cpe.pppoe.ca> has quit IRC (Ping timeout: 255 seconds)
[05:50:23] *** elsevero <elsevero!~elsevero@79.117.59.109> has joined #angularjs
[05:50:34] *** elsevero <elsevero!~elsevero@79.117.59.109> has quit IRC (Client Quit)
[05:50:47] *** blackwind_123 <blackwind_123!~IceChat9@117.192.149.190> has joined #angularjs
[05:50:51] *** elsevero <elsevero!~elsevero@82.77.50.197> has joined #angularjs
[05:51:02] *** gvanderest <gvanderest!~gvanderes@S01061cabc0b0f193.ok.shawcable.net> has joined #angularjs
[05:51:40] *** fedenunez1 <fedenunez1!~fede@r167-60-63-24.dialup.adsl.anteldata.net.uy> has quit IRC (Ping timeout: 255 seconds)
[05:57:24] *** quakephil <quakephil!~smuxi@cpe-69-200-246-39.nyc.res.rr.com> has joined #angularjs
[05:58:30] *** siba <siba!~textual@60-242-28-48.static.tpgi.com.au> has quit IRC (Quit: Textual IRC Client: www.textualapp.com)
[05:58:48] *** Rodya_ <Rodya_!~Rodya_@2601:46:4001:e0b4:c00b:902a:b215:6d2c> has quit IRC (Quit: Leaving...)
[06:09:24] *** JohnsonAskot <JohnsonAskot!~dre@cpe-71-77-192-25.ec.res.rr.com> has quit IRC (Read error: Connection reset by peer)
[06:09:50] *** w2r5 <w2r5!~textual@c-107-2-32-119.hsd1.az.comcast.net> has joined #angularjs
[06:09:59] *** iraj <iraj!~iraj@unaffiliated/iraj> has quit IRC (Remote host closed the connection)
[06:10:23] *** iraj <iraj!~iraj@unaffiliated/iraj> has joined #angularjs
[06:11:53] *** elsevero <elsevero!~elsevero@82.77.50.197> has quit IRC (Ping timeout: 240 seconds)
[06:12:45] *** siba <siba!~textual@f2.35.01a8.ip4.static.sl-reverse.com> has joined #angularjs
[06:12:58] *** gvanderest <gvanderest!~gvanderes@S01061cabc0b0f193.ok.shawcable.net> has quit IRC (Quit: Leaving...)
[06:14:20] *** nya_ <nya_!~nya@p7902c6f7.tokynt01.ap.so-net.ne.jp> has joined #angularjs
[06:14:26] *** nya_ <nya_!~nya@p7902c6f7.tokynt01.ap.so-net.ne.jp> has quit IRC (Remote host closed the connection)
[06:14:33] *** nya_ <nya_!~nya@p7902c6f7.tokynt01.ap.so-net.ne.jp> has joined #angularjs
[06:15:13] *** nya_ <nya_!~nya@p7902c6f7.tokynt01.ap.so-net.ne.jp> has quit IRC (Remote host closed the connection)
[06:15:46] *** nya_ <nya_!~nya@p7902c6f7.tokynt01.ap.so-net.ne.jp> has joined #angularjs
[06:16:19] *** jameser <jameser!~textual@125.37.179.215> has joined #angularjs
[06:16:25] *** nya_ <nya_!~nya@p7902c6f7.tokynt01.ap.so-net.ne.jp> has quit IRC (Remote host closed the connection)
[06:16:35] *** nya_ <nya_!~nya@p7902c6f7.tokynt01.ap.so-net.ne.jp> has joined #angularjs
[06:22:25] *** apparition <apparition!~apparitio@unaffiliated/apparition> has joined #angularjs
[06:25:22] *** overlord_tm <overlord_tm!~andraz@213.172.234.141> has quit IRC (Remote host closed the connection)
[06:30:07] *** webtechmike <webtechmike!44e7c844@gateway/web/freenode/ip.68.231.200.68> has joined #angularjs
[06:33:01] *** jameser <jameser!~textual@125.37.179.215> has quit IRC (Quit: My MacBook has gone to sleep. ZZZzzz…)
[06:39:31] *** shinnya <shinnya!~shinnya@97.47.138.58.dy.bbexcite.jp> has joined #angularjs
[06:40:03] *** lavalamp <lavalamp!~lavalamp@unaffiliated/lavalamp> has quit IRC (Quit: (> '.' )>)
[06:41:49] *** bengillies <bengillies!~bengillie@bengillies.net> has joined #angularjs
[06:43:44] *** Z3R0 <Z3R0!~mischief@cpe-24-55-15-236.austin.res.rr.com> has quit IRC (Quit: Z3R0)
[06:45:38] *** blackwind_123 <blackwind_123!~IceChat9@117.192.149.190> has quit IRC (Ping timeout: 256 seconds)
[06:46:09] *** bengillies <bengillies!~bengillie@bengillies.net> has quit IRC (Ping timeout: 245 seconds)
[06:47:07] *** apparition <apparition!~apparitio@unaffiliated/apparition> has quit IRC (Quit: Bye)
[06:48:20] *** heartburn <heartburn!~heartburn@213.21.33.24> has joined #angularjs
[06:49:26] *** FIFOd <FIFOd!~FIFOd@75.60.240.181> has quit IRC (Quit: My MacBook has gone to sleep. ZZZzzz…)
[06:51:27] *** heartburn <heartburn!~heartburn@213.21.33.24> has quit IRC (Read error: Connection reset by peer)
[06:51:58] *** webtechmike <webtechmike!44e7c844@gateway/web/freenode/ip.68.231.200.68> has quit IRC (Quit: Page closed)
[06:54:20] *** SuperflyR6 <SuperflyR6!~textual@78-23-246-224.access.telenet.be> has quit IRC (Quit: My MacBook has gone to sleep. ZZZzzz…)
[06:54:43] *** vader699 <vader699!~vader699@173-25-139-234.client.mchsi.com> has quit IRC (Read error: Connection reset by peer)
[06:55:18] *** vader699 <vader699!~vader699@173-25-139-234.client.mchsi.com> has joined #angularjs
[06:57:49] *** swaechter <swaechter!swaechter@randa/president/swaechter> has quit IRC (Ping timeout: 245 seconds)
[07:03:29] *** JBreit <JBreit!~JBreit4@2601:985:104:4c1a::2b6a> has quit IRC (Quit: Leaving)
[07:08:44] *** edrocks <edrocks!~edrocks@66-194-206-178.static.twtelecom.net> has joined #angularjs
[07:09:43] *** new2angular <new2angular!ae7fee53@gateway/web/freenode/ip.174.127.238.83> has joined #angularjs
[07:09:49] <new2angular> hi guys
[07:11:17] <new2angular> im trying to use a bootstrap theme in my angular 2 app, and i was wondering what the best way to structure the app is. i have a client folder which holds app folder, package.json, my config.js files, and finally my app folder. inside my app folder is where i have all my .ts files. where should i put my bootstrap template?
[07:11:51] *** arashb <arashb!~arashb@CPEf81a67bc19e1-CMbc4dfb41ae30.cpe.net.cable.rogers.com> has joined #angularjs
[07:12:08] <new2angular> should it be a folder of its own called bootstrap? or is it better to put all the contents of the folder (css, js, less, img) right into my client folder
[07:12:27] <new2angular> just wondering what the best practice is
[07:13:19] *** edrocks <edrocks!~edrocks@66-194-206-178.static.twtelecom.net> has quit IRC (Ping timeout: 258 seconds)
[07:14:38] *** tkxxx <tkxxx!~tkxxx@tristan1990.plus.com> has joined #angularjs
[07:18:31] *** waqqas <waqqas!~waqqas@121.121.101.59> has quit IRC (Ping timeout: 260 seconds)
[07:18:42] *** waqqas <waqqas!~waqqas@121.121.101.190> has joined #angularjs
[07:19:27] *** tkxxx <tkxxx!~tkxxx@tristan1990.plus.com> has quit IRC (Ping timeout: 258 seconds)
[07:20:23] <new2angular> guise pls
[07:29:39] *** lithie <lithie!uid45836@gateway/web/irccloud.com/x-abncuwnxvmfdnjzl> has joined #angularjs
[07:32:20] *** new2angular <new2angular!ae7fee53@gateway/web/freenode/ip.174.127.238.83> has quit IRC (Quit: Page closed)
[07:33:57] *** loop <loop!1b61afe6@gateway/web/freenode/ip.27.97.175.230> has joined #angularjs
[07:34:06] <loop> hey
[07:34:24] <loop> can someone help me ?
[07:40:58] *** jimklo <jimklo!~jimklo@71-84-19-18.dhcp.trlk.ca.charter.com> has joined #angularjs
[07:41:41] *** lavalamp <lavalamp!~lavalamp@unaffiliated/lavalamp> has joined #angularjs
[07:41:43] *** loop <loop!1b61afe6@gateway/web/freenode/ip.27.97.175.230> has left #angularjs
[07:41:44] *** freeport___ <freeport___!~audra@c-73-164-74-214.hsd1.mn.comcast.net> has quit IRC (Ping timeout: 256 seconds)
[07:42:21] *** freeport___ <freeport___!~audra@c-73-164-74-214.hsd1.mn.comcast.net> has joined #angularjs
[07:42:28] *** zeroloop <zeroloop!1b61afe6@gateway/web/freenode/ip.27.97.175.230> has joined #angularjs
[07:42:38] *** bengillies <bengillies!~bengillie@bengillies.net> has joined #angularjs
[07:42:48] <zeroloop> can someone help me ?
[07:43:11] <wafflejock> zeroloop, what's the issue?
[07:43:41] <zeroloop> im new to angular 2
[07:43:46] <zeroloop> and i have a doubt
[07:44:40] *** LucaTM <LucaTM!~LucaTM@unaffiliated/lucatm> has joined #angularjs
[07:44:47] <zeroloop> clear
[07:46:57] *** jenelizabeth <jenelizabeth!~jenelizab@cpc76810-brmb10-2-0-cust4.1-3.cable.virginm.net> has quit IRC (Quit: sleeeep)
[07:47:10] *** bengillies <bengillies!~bengillie@bengillies.net> has quit IRC (Ping timeout: 240 seconds)
[07:48:17] *** jenelizabeth <jenelizabeth!~jenelizab@cpc76810-brmb10-2-0-cust4.1-3.cable.virginm.net> has joined #angularjs
[07:53:03] *** nivag <nivag!~gavin@121.99.202.67> has quit IRC (Remote host closed the connection)
[07:54:14] *** zeroloop <zeroloop!1b61afe6@gateway/web/freenode/ip.27.97.175.230> has quit IRC (Quit: Page closed)
[07:54:22] *** nivag <nivag!~gavin@121.99.202.67> has joined #angularjs
[07:54:33] *** Zeioth <Zeioth!~Zeioth@112.red-88-27-61.staticip.rima-tde.net> has quit IRC (Ping timeout: 240 seconds)
[08:08:04] *** pashford <pashford!~pashford@host86-157-155-250.range86-157.btcentralplus.com> has joined #angularjs
[08:08:52] *** becom33 <becom33!~becom33@unaffiliated/becom33> has joined #angularjs
[08:14:00] <becom33> so I have this http://imgur.com/a/8RU8t . when I click on one of the menu and I want the correct directive to appear on the Category section . is this possible to with the route . or should I use ng-show and hide with condition which doesnt feel like the correct way to do this
[08:14:36] * becom33 anyone ?
[08:15:02] *** swaechter <swaechter!swaechter@gateway/shell/kde/x-tccyypsyxmsxabzn> has joined #angularjs
[08:15:02] *** swaechter <swaechter!swaechter@gateway/shell/kde/x-tccyypsyxmsxabzn> has quit IRC (Changing host)
[08:15:02] *** swaechter <swaechter!swaechter@randa/president/swaechter> has joined #angularjs
[08:21:20] *** SuperflyR6 <SuperflyR6!~textual@188.188.89.15> has joined #angularjs
[08:22:01] *** w2r5 <w2r5!~textual@c-107-2-32-119.hsd1.az.comcast.net> has quit IRC (Changing host)
[08:22:01] *** w2r5 <w2r5!~textual@unaffiliated/w2r5> has joined #angularjs
[08:23:46] *** SuperflyR6 <SuperflyR6!~textual@188.188.89.15> has quit IRC (Client Quit)
[08:29:18] *** eago <eago!~eago@181.59.244.38> has quit IRC (Remote host closed the connection)
[08:32:46] *** cacts <cacts!~cactus@c-174-51-80-218.hsd1.co.comcast.net> has quit IRC (Ping timeout: 255 seconds)
[08:33:49] *** jtimon <jtimon!~quassel@245.30.134.37.dynamic.jazztel.es> has quit IRC (Ping timeout: 255 seconds)
[08:36:20] *** littlebear <littlebear!littlebear@2607:fea8:a220:7e3:43c:8cea:d765:ba61> has joined #angularjs
[08:36:45] *** pashford <pashford!~pashford@host86-157-155-250.range86-157.btcentralplus.com> has quit IRC (Remote host closed the connection)
[08:41:00] *** macstriker <macstriker!~Adium@ppp109-252-81-41.pppoe.spdop.ru> has joined #angularjs
[08:43:20] *** bengillies <bengillies!~bengillie@bengillies.net> has joined #angularjs
[08:45:58] *** LIERO <LIERO!~LIERO@unaffiliated/liero> has joined #angularjs
[08:47:23] *** balr0g <balr0g!~balr0g@199.195.252.42> has quit IRC (Quit: quit)
[08:48:02] *** bengillies <bengillies!~bengillie@bengillies.net> has quit IRC (Ping timeout: 256 seconds)
[08:53:39] *** macstriker <macstriker!~Adium@ppp109-252-81-41.pppoe.spdop.ru> has quit IRC (Quit: Leaving.)
[08:55:53] *** vuoto <vuoto!~vuoto@80.71.142.118> has joined #angularjs
[09:00:42] *** apparition <apparition!~apparitio@unaffiliated/apparition> has joined #angularjs
[09:05:32] *** jimklo <jimklo!~jimklo@71-84-19-18.dhcp.trlk.ca.charter.com> has quit IRC (Remote host closed the connection)
[09:10:15] *** tarnus <tarnus!~tarnus@2602:306:ccaa:9790:5ca5:6047:a040:89ff> has quit IRC (Remote host closed the connection)
[09:11:06] *** sargentmki <sargentmki!~sargentmk@107-213-184-236.lightspeed.irvnca.sbcglobal.net> has quit IRC (Ping timeout: 260 seconds)
[09:12:01] *** opiates <opiates!~opiates@unaffiliated/opiates> has joined #angularjs
[09:12:07] *** uru|away is now known as uru
[09:14:35] *** spont4e <spont4e!~spont4e@77.78.3.189> has quit IRC (Quit: ZNC - http://znc.in)
[09:15:05] *** spont4e <spont4e!~spont4e@77.78.3.189> has joined #angularjs
[09:15:51] *** lexileo <lexileo!~lexii@103.8.148.248> has joined #angularjs
[09:15:55] *** wd40s <wd40s!~wd40s@192.77.237.124> has joined #angularjs
[09:16:24] *** tkxxx <tkxxx!~tkxxx@tristan1990.plus.com> has joined #angularjs
[09:17:43] *** vuoto <vuoto!~vuoto@80.71.142.118> has quit IRC (Quit: Lost terminal)
[09:20:06] *** blackwind_123 <blackwind_123!~IceChat9@45.125.142.175> has joined #angularjs
[09:20:35] *** tkxxx <tkxxx!~tkxxx@tristan1990.plus.com> has quit IRC (Ping timeout: 240 seconds)
[09:28:01] *** tkxxx <tkxxx!~tkxxx@tristan1990.plus.com> has joined #angularjs
[09:28:22] *** overlord_tm <overlord_tm!~andraz@213.172.234.141> has joined #angularjs
[09:31:18] *** w2r5 <w2r5!~textual@unaffiliated/w2r5> has quit IRC (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
[09:32:40] *** iraj <iraj!~iraj@unaffiliated/iraj> has quit IRC (Ping timeout: 240 seconds)
[09:32:58] *** iraj <iraj!~iraj@unaffiliated/iraj> has joined #angularjs
[09:33:01] *** mischat <mischat!~mischat@05434105.skybroadband.com> has joined #angularjs
[09:33:11] *** nishu-tryinghard <nishu-tryinghard!~nishanth@183.82.187.154> has joined #angularjs
[09:33:27] *** nishu-tryinghard <nishu-tryinghard!~nishanth@183.82.187.154> has quit IRC (Max SendQ exceeded)
[09:33:54] *** nishu-tryinghard <nishu-tryinghard!~nishanth@183.82.187.154> has joined #angularjs
[09:37:33] *** mischat <mischat!~mischat@05434105.skybroadband.com> has quit IRC (Ping timeout: 240 seconds)
[09:39:34] *** tkxxx <tkxxx!~tkxxx@tristan1990.plus.com> has quit IRC (Remote host closed the connection)
[09:39:52] *** dopesong <dopesong!~dopesong@78-63-99-99.static.zebra.lt> has joined #angularjs
[09:44:05] *** bengillies <bengillies!~bengillie@bengillies.net> has joined #angularjs
[09:48:57] *** bengillies <bengillies!~bengillie@bengillies.net> has quit IRC (Ping timeout: 258 seconds)
[09:53:30] *** moloch <moloch!~moloch@ip-64-134-96-24.public.wayport.net> has quit IRC (Read error: Connection reset by peer)
[09:53:43] *** sergey_ <sergey_!~sergey@46.98.105.125> has joined #angularjs
[09:53:46] *** iraj <iraj!~iraj@unaffiliated/iraj> has quit IRC (Ping timeout: 264 seconds)
[09:55:06] *** ikb <ikb!~ikb@151.54.113.23> has joined #angularjs
[10:00:53] *** dopesong <dopesong!~dopesong@78-63-99-99.static.zebra.lt> has quit IRC ()
[10:02:15] *** Auahituroa <Auahituroa!~Auahituro@78.30.231.137> has joined #angularjs
[10:02:34] *** donguston <donguston!~AdamPC@cpc12-sprt2-2-0-cust478.17-2.cable.virginm.net> has joined #angularjs
[10:04:33] *** heartburn <heartburn!~heartburn@213.21.33.24> has joined #angularjs
[10:07:06] *** heartburn <heartburn!~heartburn@213.21.33.24> has quit IRC (Read error: Connection reset by peer)
[10:10:50] *** SomeKittens <SomeKittens!uid27802@gateway/web/irccloud.com/x-yiwtolfgwqlstlnp> has quit IRC (Quit: Connection closed for inactivity)
[10:12:45] *** DV8__ <DV8__!~Deviate@135-23-110-43.cpe.pppoe.ca> has joined #angularjs
[10:15:04] *** dbclk <dbclk!~dbclk@190.213.205.178> has quit IRC (Ping timeout: 255 seconds)
[10:15:33] *** marr <marr!~ccc@87-205-164-122.adsl.inetia.pl> has joined #angularjs
[10:15:40] *** DV8_ <DV8_!~Deviate@135-23-110-43.cpe.pppoe.ca> has quit IRC (Ping timeout: 240 seconds)
[10:16:02] *** ikb <ikb!~ikb@151.54.113.23> has quit IRC (Quit: Leaving)
[10:18:07] *** spont4e <spont4e!~spont4e@77.78.3.189> has quit IRC (Excess Flood)
[10:18:09] *** eau4x6 <eau4x6!5fa06d2c@gateway/web/freenode/ip.95.160.109.44> has joined #angularjs
[10:20:05] <eau4x6> why is angular-cli installed locally in addition to be installed globally? when is the local version used? when using ng command interactively i use only the global one?
[10:20:14] *** spont4e <spont4e!~spont4e@77.78.3.189> has joined #angularjs
[10:29:13] *** ansu <ansu!~ansu@unaffiliated/ansu> has quit IRC (Ping timeout: 240 seconds)
[10:30:29] *** ansu <ansu!~ansu@unaffiliated/ansu> has joined #angularjs
[10:34:01] *** mischat <mischat!~mischat@05434105.skybroadband.com> has joined #angularjs
[10:34:01] *** mischat <mischat!~mischat@05434105.skybroadband.com> has quit IRC (Remote host closed the connection)
[10:35:04] *** fatshark <fatshark!~kvirc64@cm-84.215.6.11.getinternet.no> has joined #angularjs
[10:36:04] *** becom33 <becom33!~becom33@unaffiliated/becom33> has quit IRC (Ping timeout: 255 seconds)
[10:38:36] *** Auahituroa <Auahituroa!~Auahituro@78.30.231.137> has quit IRC (Quit: Leaving)
[10:39:31] *** spont4e <spont4e!~spont4e@77.78.3.189> has quit IRC (Excess Flood)
[10:40:14] *** spont4e <spont4e!~spont4e@77.78.3.189> has joined #angularjs
[10:40:34] *** jenelizabeth <jenelizabeth!~jenelizab@cpc76810-brmb10-2-0-cust4.1-3.cable.virginm.net> has quit IRC (Ping timeout: 255 seconds)
[10:45:01] *** bengillies <bengillies!~bengillie@bengillies.net> has joined #angularjs
[10:46:01] *** lavalamp <lavalamp!~lavalamp@unaffiliated/lavalamp> has quit IRC (Quit: (> '.' )>)
[10:46:31] *** spont4e <spont4e!~spont4e@77.78.3.189> has quit IRC (Quit: ZNC - http://znc.in)
[10:46:41] *** spont4e <spont4e!~spont4e@home.spont4e.com> has joined #angularjs
[10:47:02] *** soee <soee!~soee@afot18.neoplus.adsl.tpnet.pl> has joined #angularjs
[10:49:41] *** bengillies <bengillies!~bengillie@bengillies.net> has quit IRC (Ping timeout: 260 seconds)
[10:57:25] *** spont4e <spont4e!~spont4e@home.spont4e.com> has quit IRC (Excess Flood)
[10:58:03] *** spont4e <spont4e!~spont4e@home.spont4e.com> has joined #angularjs
[11:09:09] *** lmatteis <lmatteis!uid3300@gateway/web/irccloud.com/x-vhdmvikmathnfnpc> has joined #angularjs
[11:10:44] *** edrocks <edrocks!~edrocks@66-194-206-178.static.twtelecom.net> has joined #angularjs
[11:12:35] *** donguston <donguston!~AdamPC@cpc12-sprt2-2-0-cust478.17-2.cable.virginm.net> has quit IRC (Ping timeout: 240 seconds)
[11:12:40] *** marr <marr!~ccc@87-205-164-122.adsl.inetia.pl> has quit IRC (Remote host closed the connection)
[11:14:39] *** skyx <skyx!~skyx__@cpe-31-15-173-211.cable.telemach.net> has joined #angularjs
[11:14:48] *** edrocks <edrocks!~edrocks@66-194-206-178.static.twtelecom.net> has quit IRC (Ping timeout: 240 seconds)
[11:17:16] *** opiates <opiates!~opiates@unaffiliated/opiates> has quit IRC (Remote host closed the connection)
[11:22:44] *** donguston <donguston!~AdamPC@cpc12-sprt2-2-0-cust478.17-2.cable.virginm.net> has joined #angularjs
[11:30:58] *** basiclaser <basiclaser!uid10861@gateway/web/irccloud.com/x-ecaomujvogkzbrfd> has quit IRC (Quit: Connection closed for inactivity)
[11:38:30] *** laravel7 <laravel7!~chatzilla@167.95.148.91.adsl.dyn.beotel.net> has joined #angularjs
[11:43:39] *** sergey__ <sergey__!~sergey@46.98.105.125> has joined #angularjs
[11:45:48] *** bengillies <bengillies!~bengillie@bengillies.net> has joined #angularjs
[11:46:07] *** m8 <m8!~m8@unaffiliated/m8> has joined #angularjs
[11:46:16] *** sergey_ <sergey_!~sergey@46.98.105.125> has quit IRC (Ping timeout: 255 seconds)
[11:46:48] *** Wizek_ <Wizek_!~Wizek@catv-89-132-132-110.catv.broadband.hu> has joined #angularjs
[11:50:21] *** bengillies <bengillies!~bengillie@bengillies.net> has quit IRC (Ping timeout: 260 seconds)
[11:56:09] *** Rams_ <Rams_!31cc335e@gateway/web/freenode/ip.49.204.51.94> has joined #angularjs
[11:56:22] <Rams_> What is factory
[11:56:30] *** Rams_ <Rams_!31cc335e@gateway/web/freenode/ip.49.204.51.94> has quit IRC (Client Quit)
[12:00:07] *** MonsterKiller <MonsterKiller!~MonsterKi@2605:6400:10:6ae2:1337:c0de:fee1:900d> has joined #angularjs
[12:09:59] *** jameser <jameser!~textual@125.37.179.215> has joined #angularjs
[12:12:56] *** portfosh <portfosh!~portfosh@chello085216213006.chello.sk> has joined #angularjs
[12:20:12] *** heartburn <heartburn!~heartburn@213.21.33.24> has joined #angularjs
[12:20:20] *** AtumT <AtumT!~IRC@177.205.73.89.dynamic.adsl.gvt.net.br> has joined #angularjs
[12:24:40] *** heartburn <heartburn!~heartburn@213.21.33.24> has quit IRC (Ping timeout: 255 seconds)
[12:25:18] *** thrillgore <thrillgore!~ZugZug@c-73-207-195-231.hsd1.ga.comcast.net> has quit IRC (Remote host closed the connection)
[12:32:43] *** jhertz <jhertz!~jhertz@c-56c3e253.501201257616-0-757473696b74.cust.bredbandsbolaget.se> has joined #angularjs
[12:33:26] <jhertz> Hi, anyone else has an Unexpected token { problem when creating a new project with angular cli?
[12:33:38] <jhertz> Also here is the question on stackoverflow
[12:33:43] <jhertz> http://stackoverflow.com/questions/42175354/anglur-cli-stopped-working-unexpected-token
[12:33:57] *** Ryzer <Ryzer!~Ryzer@ptr-4h7lnxbhj9f0uoptjzi.18120a2.ip6.access.telenet.be> has joined #angularjs
[12:35:07] *** mischat <mischat!~mischat@05434105.skybroadband.com> has joined #angularjs
[12:39:31] *** cotko <cotko!~ahmed@188-230-161-23.dynamic.t-2.net> has joined #angularjs
[12:42:04] *** wafflejock <wafflejock!~wafflej0c@71.239.222.172> has quit IRC (Ping timeout: 256 seconds)
[12:42:38] *** mischat <mischat!~mischat@05434105.skybroadband.com> has quit IRC (Ping timeout: 256 seconds)
[12:45:58] *** blackwind_123 <blackwind_123!~IceChat9@45.125.142.175> has quit IRC (Ping timeout: 264 seconds)
[12:46:32] *** blackwind_123 <blackwind_123!~IceChat9@117.192.145.23> has joined #angularjs
[12:56:24] *** wafflejock <wafflejock!~wafflej0c@71.239.222.172> has joined #angularjs
[12:57:38] *** dreh <dreh!~jedimind@unaffiliated/jedimind> has quit IRC (Quit: Textual IRC Client: www.textualapp.com)
[12:59:18] *** dreh <dreh!~jedimind@unaffiliated/jedimind> has joined #angularjs
[13:04:05] *** Wizek_ <Wizek_!~Wizek@catv-89-132-132-110.catv.broadband.hu> has quit IRC (Ping timeout: 240 seconds)
[13:06:56] *** heartburn <heartburn!~heartburn@213.21.33.24> has joined #angularjs
[13:09:17] *** soee_ <soee_!~soee@bif143.neoplus.adsl.tpnet.pl> has joined #angularjs
[13:11:21] *** heartburn <heartburn!~heartburn@213.21.33.24> has quit IRC (Ping timeout: 258 seconds)
[13:11:56] *** heartburn <heartburn!~heartburn@185.117.118.195> has joined #angularjs
[13:13:35] *** soee <soee!~soee@afot18.neoplus.adsl.tpnet.pl> has quit IRC (Ping timeout: 252 seconds)
[13:13:54] *** csergiu <csergiu!~csergiu@5-15-80-80.residential.rdsnet.ro> has joined #angularjs
[13:14:08] *** overlord_tm <overlord_tm!~andraz@213.172.234.141> has quit IRC (Ping timeout: 252 seconds)
[13:16:56] *** expelledboy <expelledboy!c5ea94bb@gateway/web/freenode/ip.197.234.148.187> has quit IRC (Quit: Page closed)
[13:18:38] *** csergiu <csergiu!~csergiu@5-15-80-80.residential.rdsnet.ro> has quit IRC (Ping timeout: 258 seconds)
[13:18:51] *** lmatteis <lmatteis!uid3300@gateway/web/irccloud.com/x-vhdmvikmathnfnpc> has quit IRC (Quit: Connection closed for inactivity)
[13:20:44] *** pangwa <pangwa!~pangwa@116.238.203.170> has joined #angularjs
[13:27:13] *** portfosh <portfosh!~portfosh@chello085216213006.chello.sk> has quit IRC (Ping timeout: 240 seconds)
[13:31:00] *** bengillies <bengillies!~bengillie@bengillies.net> has joined #angularjs
[13:35:47] *** bengillies <bengillies!~bengillie@bengillies.net> has quit IRC (Ping timeout: 276 seconds)
[13:36:10] *** jenelizabeth <jenelizabeth!~jenelizab@cpc76810-brmb10-2-0-cust4.1-3.cable.virginm.net> has joined #angularjs
[13:41:26] *** Ryzer <Ryzer!~Ryzer@ptr-4h7lnxbhj9f0uoptjzi.18120a2.ip6.access.telenet.be> has quit IRC (Quit: Ryzer)
[13:42:28] *** Wizek_ <Wizek_!~Wizek@catv-89-132-132-110.catv.broadband.hu> has joined #angularjs
[13:44:25] *** Ryzer <Ryzer!~Ryzer@ptr-4h7lnxbhj9f0uoptjzi.18120a2.ip6.access.telenet.be> has joined #angularjs
[13:49:32] *** csergiu <csergiu!~csergiu@82.137.13.99> has joined #angularjs
[13:49:38] *** Ryzer <Ryzer!~Ryzer@ptr-4h7lnxbhj9f0uoptjzi.18120a2.ip6.access.telenet.be> has quit IRC (Quit: Ryzer)
[13:53:53] *** ankr <ankr!~ankr@91.100.101.235.generic-hostname.arrownet.dk> has joined #angularjs
[13:55:54] *** rho <rho!~rho@drupal.org/user/114058/view> has joined #angularjs
[14:00:57] *** tarnus <tarnus!~tarnus@2602:306:ccaa:9790:455e:a51d:af7b:6885> has joined #angularjs
[14:13:29] *** overlord_tm <overlord_tm!~andraz@213.172.234.141> has joined #angularjs
[14:16:09] *** Wanderer68 <Wanderer68!~snouhaud@mau78-1-88-184-111-173.fbx.proxad.net> has joined #angularjs
[14:23:22] *** krkc <krkc!~krkc@2601:246:4100:35f5:3c21:e18d:29ff:6034> has joined #angularjs
[14:24:05] *** cr34ton <cr34ton!~cr34ton@134.19.180.167> has joined #angularjs
[14:24:46] *** portfosh <portfosh!~portfosh@mob-dynamic-41.195-91-113.telekom.sk> has joined #angularjs
[14:25:18] *** sterns <sterns!~matt@199.244.109.163> has joined #angularjs
[14:25:24] *** [ADN] <[ADN]!~Test@euf3300163-pip.sys.ntt.eu> has joined #angularjs
[14:27:40] *** csergiu <csergiu!~csergiu@82.137.13.99> has quit IRC (Ping timeout: 240 seconds)
[14:28:35] *** _ADN_ <_ADN_!~Test@host81-159-82-163.range81-159.btcentralplus.com> has quit IRC (Ping timeout: 240 seconds)
[14:29:25] *** fedenunez <fedenunez!~fede@r167-60-63-24.dialup.adsl.anteldata.net.uy> has joined #angularjs
[14:31:46] *** bengillies <bengillies!~bengillie@bengillies.net> has joined #angularjs
[14:32:23] *** sterns <sterns!~matt@199.244.109.163> has quit IRC (Quit: Leaving)
[14:36:13] *** bengillies <bengillies!~bengillie@bengillies.net> has quit IRC (Ping timeout: 240 seconds)
[14:36:32] *** ankr <ankr!~ankr@91.100.101.235.generic-hostname.arrownet.dk> has quit IRC (Quit: Textual IRC Client: www.textualapp.com)
[14:38:09] *** lithie <lithie!uid45836@gateway/web/irccloud.com/x-abncuwnxvmfdnjzl> has quit IRC (Quit: Connection closed for inactivity)
[14:44:01] *** edr <edr!~edr@pdpc/supporter/professional/edr> has joined #angularjs
[14:44:26] *** shinnya <shinnya!~shinnya@97.47.138.58.dy.bbexcite.jp> has quit IRC (Read error: Connection reset by peer)
[14:44:50] *** Angugus <Angugus!52e199fa@gateway/web/freenode/ip.82.225.153.250> has joined #angularjs
[14:45:29] *** fixl <fixl!~fixl@46.166.188.225> has quit IRC (Quit: Konversation terminated!)
[14:45:47] *** shinnya <shinnya!~shinnya@97.47.138.58.dy.bbexcite.jp> has joined #angularjs
[14:46:48] *** cr34ton <cr34ton!~cr34ton@134.19.180.167> has quit IRC ()
[14:49:41] *** despai <despai!~despai@ip5658b122.direct-adsl.nl> has joined #angularjs
[14:50:35] *** shinnya <shinnya!~shinnya@97.47.138.58.dy.bbexcite.jp> has quit IRC (Ping timeout: 260 seconds)
[14:53:32] *** klemax <klemax!~klemax@unaffiliated/klemax> has joined #angularjs
[14:53:37] *** rho <rho!~rho@drupal.org/user/114058/view> has quit IRC (Ping timeout: 255 seconds)
[14:59:53] *** wd40s <wd40s!~wd40s@192.77.237.124> has quit IRC (Ping timeout: 240 seconds)
[15:00:53] <Angugus> Hi ! When i use CanActivate, the route is "secured" because the links are no longer redirecting ... but i still can access the secured page by only access it via the URL ... what the hell am i missing ? :/
[15:01:26] *** doodlehaus <doodlehaus!~doodlehau@97-87-51-70.dhcp.mdsn.wi.charter.com> has joined #angularjs
[15:02:16] *** amdi_ <amdi_!~amdi_@pool-108-32-75-158.pitbpa.fios.verizon.net> has quit IRC (Read error: Connection reset by peer)
[15:03:13] *** klemax <klemax!~klemax@unaffiliated/klemax> has left #angularjs
[15:03:57] *** lithie <lithie!uid45836@gateway/web/irccloud.com/x-trxjclbrcxgycwff> has joined #angularjs
[15:05:58] *** fedenunez <fedenunez!~fede@r167-60-63-24.dialup.adsl.anteldata.net.uy> has quit IRC (Ping timeout: 258 seconds)
[15:12:45] *** itamarjp_ <itamarjp_!~itamar@138.122.51.123> has joined #angularjs
[15:13:58] *** itamarjp_ <itamarjp_!~itamar@138.122.51.123> has quit IRC (Read error: Connection reset by peer)
[15:14:33] *** logalvatron <logalvatron!~textual@2601:2c6:4800:4a10:80e4:f575:f972:71be> has joined #angularjs
[15:19:21] *** port_fosh <port_fosh!~portfosh@mob-dynamic-32.195-91-113.telekom.sk> has joined #angularjs
[15:22:43] *** portfosh <portfosh!~portfosh@mob-dynamic-41.195-91-113.telekom.sk> has quit IRC (Ping timeout: 255 seconds)
[15:24:28] *** mischat <mischat!~mischat@05434105.skybroadband.com> has joined #angularjs
[15:26:59] *** jameser <jameser!~textual@125.37.179.215> has quit IRC (Quit: My MacBook has gone to sleep. ZZZzzz…)
[15:28:19] *** logalvatron <logalvatron!~textual@2601:2c6:4800:4a10:80e4:f575:f972:71be> has quit IRC (Quit: My MacBook has gone to sleep. ZZZzzz…)
[15:29:32] *** despai <despai!~despai@ip5658b122.direct-adsl.nl> has quit IRC (Quit: This computer has gone to sleep)
[15:29:40] *** mischat <mischat!~mischat@05434105.skybroadband.com> has quit IRC (Ping timeout: 260 seconds)
[15:31:35] *** donguston <donguston!~AdamPC@cpc12-sprt2-2-0-cust478.17-2.cable.virginm.net> has quit IRC (Ping timeout: 240 seconds)
[15:31:53] *** logalvatron <logalvatron!~textual@2601:2c6:4800:4a10:80e4:f575:f972:71be> has joined #angularjs
[15:32:30] *** bengillies <bengillies!~bengillie@bengillies.net> has joined #angularjs
[15:33:26] *** sterns <sterns!~matt@199.244.109.163> has joined #angularjs
[15:34:37] *** sterns <sterns!~matt@199.244.109.163> has quit IRC (Client Quit)
[15:34:37] *** donguston <donguston!~AdamPC@cpc12-sprt2-2-0-cust478.17-2.cable.virginm.net> has joined #angularjs
[15:37:01] *** bengillies <bengillies!~bengillie@bengillies.net> has quit IRC (Ping timeout: 258 seconds)
[15:41:25] *** despai <despai!~despai@ip5658b122.direct-adsl.nl> has joined #angularjs
[15:43:14] *** port_fosh <port_fosh!~portfosh@mob-dynamic-32.195-91-113.telekom.sk> has quit IRC (Ping timeout: 245 seconds)
[15:43:33] *** Z3R0 <Z3R0!~mischief@cpe-24-55-15-236.austin.res.rr.com> has joined #angularjs
[15:46:34] *** doodlehaus <doodlehaus!~doodlehau@97-87-51-70.dhcp.mdsn.wi.charter.com> has quit IRC (Remote host closed the connection)
[15:46:56] *** fcanela_ is now known as fcanela
[15:46:56] *** ousmaneo <ousmaneo!~ousmaneo@213.55.105.67> has joined #angularjs
[15:47:58] *** csergiu <csergiu!~csergiu@109.98.165.235> has joined #angularjs
[15:49:42] *** wd40s <wd40s!~wd40s@192.77.237.124> has joined #angularjs
[15:51:59] *** doodlehaus <doodlehaus!~doodlehau@97-87-51-70.dhcp.mdsn.wi.charter.com> has joined #angularjs
[15:55:22] *** macstriker <macstriker!~Adium@ppp109-252-81-41.pppoe.spdop.ru> has joined #angularjs
[15:55:47] *** macstriker <macstriker!~Adium@ppp109-252-81-41.pppoe.spdop.ru> has quit IRC (Client Quit)
[15:56:07] *** macstriker <macstriker!~Adium@ppp109-252-81-41.pppoe.spdop.ru> has joined #angularjs
[15:56:30] *** macstriker <macstriker!~Adium@ppp109-252-81-41.pppoe.spdop.ru> has quit IRC (Client Quit)
[15:56:32] *** doodlehaus <doodlehaus!~doodlehau@97-87-51-70.dhcp.mdsn.wi.charter.com> has quit IRC (Remote host closed the connection)
[15:57:40] *** pLaTo0n <pLaTo0n!~pLaTo0n@unaffiliated/platoon> has joined #angularjs
[15:59:45] *** cvanball <cvanball!~textual@2001:980:92c0:1:5104:da67:f610:ecaa> has joined #angularjs
[16:00:35] *** ousmaneo <ousmaneo!~ousmaneo@213.55.105.67> has quit IRC (Remote host closed the connection)
[16:01:54] *** mischat <mischat!~mischat@05434105.skybroadband.com> has joined #angularjs
[16:02:40] *** macstriker <macstriker!~Adium@ppp109-252-81-41.pppoe.spdop.ru> has joined #angularjs
[16:02:41] *** despai <despai!~despai@ip5658b122.direct-adsl.nl> has quit IRC (Ping timeout: 276 seconds)
[16:02:55] *** cvanball <cvanball!~textual@2001:980:92c0:1:5104:da67:f610:ecaa> has quit IRC (Client Quit)
[16:03:02] *** macstriker <macstriker!~Adium@ppp109-252-81-41.pppoe.spdop.ru> has quit IRC (Client Quit)
[16:03:33] *** despai <despai!~despai@ip5658b122.direct-adsl.nl> has joined #angularjs
[16:04:55] *** doodlehaus <doodlehaus!~doodlehau@97-87-51-70.dhcp.mdsn.wi.charter.com> has joined #angularjs
[16:09:25] *** csergiu_ <csergiu_!~csergiu@82.79.115.235> has joined #angularjs
[16:09:57] *** freeport___ <freeport___!~audra@c-73-164-74-214.hsd1.mn.comcast.net> has quit IRC (Quit: Be back later ...)
[16:11:45] <Angugus> is there a way to properly hide some links when the used routes are not available because of some guards ? ty
[16:12:22] *** csergiu <csergiu!~csergiu@109.98.165.235> has quit IRC (Ping timeout: 255 seconds)
[16:15:13] *** uru is now known as uru|away
[16:16:52] *** Zeioth <Zeioth!~Zeioth@112.red-88-27-61.staticip.rima-tde.net> has joined #angularjs
[16:18:42] *** logalvatron <logalvatron!~textual@2601:2c6:4800:4a10:80e4:f575:f972:71be> has quit IRC (Quit: My MacBook has gone to sleep. ZZZzzz…)
[16:20:35] *** csergiu_ <csergiu_!~csergiu@82.79.115.235> has quit IRC (Read error: Connection reset by peer)
[16:21:16] *** csergiu <csergiu!~csergiu@109.98.165.235> has joined #angularjs
[16:25:38] *** doodlehaus <doodlehaus!~doodlehau@97-87-51-70.dhcp.mdsn.wi.charter.com> has quit IRC (Remote host closed the connection)
[16:27:26] *** Z3R0 <Z3R0!~mischief@cpe-24-55-15-236.austin.res.rr.com> has quit IRC (Quit: Z3R0)
[16:28:14] *** eago <eago!~eago@181.59.244.38> has joined #angularjs
[16:29:59] *** despai <despai!~despai@ip5658b122.direct-adsl.nl> has quit IRC (Ping timeout: 276 seconds)
[16:30:15] *** despai <despai!~despai@ip5658b122.direct-adsl.nl> has joined #angularjs
[16:32:10] *** bbankes_ <bbankes_!~bbankes@75-169-251-158.slkc.qwest.net> has joined #angularjs
[16:33:15] *** bengillies <bengillies!~bengillie@bengillies.net> has joined #angularjs
[16:34:35] *** Carbon_Monoxide <Carbon_Monoxide!~Carbon@119247121106.ctinets.com> has joined #angularjs
[16:35:09] *** fedenunez <fedenunez!~fede@r167-60-63-24.dialup.adsl.anteldata.net.uy> has joined #angularjs
[16:38:08] *** w2r5 <w2r5!~textual@c-107-2-32-119.hsd1.az.comcast.net> has joined #angularjs
[16:38:10] *** bengillies <bengillies!~bengillie@bengillies.net> has quit IRC (Ping timeout: 264 seconds)
[16:38:17] *** jtimon <jtimon!~quassel@245.30.134.37.dynamic.jazztel.es> has joined #angularjs
[16:39:05] *** denisra <denisra!~denisra@86-40-251-203-dynamic.agg1.fng.bdt-fng.eircom.net> has joined #angularjs
[16:39:13] *** despai <despai!~despai@ip5658b122.direct-adsl.nl> has quit IRC (Read error: Connection reset by peer)
[16:39:51] *** despai <despai!~despai@ip5658b122.direct-adsl.nl> has joined #angularjs
[16:40:14] *** siba <siba!~textual@f2.35.01a8.ip4.static.sl-reverse.com> has quit IRC (Quit: My Mac has gone to sleep. ZZZzzz…)
[16:40:42] *** mischat_ <mischat_!~mischat@05434105.skybroadband.com> has joined #angularjs
[16:40:44] *** csergiu <csergiu!~csergiu@109.98.165.235> has quit IRC (Remote host closed the connection)
[16:41:01] *** BandC_ <BandC_!~BandC@2605:a601:ae9:2c00:cd76:dc23:52e7:c2b1> has quit IRC (Ping timeout: 255 seconds)
[16:41:07] *** freeport___ <freeport___!~audra@c-73-164-74-214.hsd1.mn.comcast.net> has joined #angularjs
[16:42:35] *** mischat <mischat!~mischat@05434105.skybroadband.com> has quit IRC (Ping timeout: 260 seconds)
[16:44:19] *** denisra <denisra!~denisra@86-40-251-203-dynamic.agg1.fng.bdt-fng.eircom.net> has quit IRC (Ping timeout: 255 seconds)
[16:44:34] *** fedenunez1 <fedenunez1!~fede@r167-60-89-203.dialup.adsl.anteldata.net.uy> has joined #angularjs
[16:46:46] *** laravel7 <laravel7!~chatzilla@167.95.148.91.adsl.dyn.beotel.net> has quit IRC (Quit: ChatZilla 0.9.93 [Firefox 48.0/20160726073904])
[16:47:28] *** fedenunez <fedenunez!~fede@r167-60-63-24.dialup.adsl.anteldata.net.uy> has quit IRC (Ping timeout: 240 seconds)
[16:47:49] *** iraj <iraj!~iraj@unaffiliated/iraj> has joined #angularjs
[16:51:39] *** cacts <cacts!~cactus@c-174-51-80-218.hsd1.co.comcast.net> has joined #angularjs
[16:53:40] *** iraj <iraj!~iraj@unaffiliated/iraj> has quit IRC (Ping timeout: 256 seconds)
[16:55:04] *** iraj_ <iraj_!~iraj@unaffiliated/iraj> has joined #angularjs
[16:55:12] *** opiates <opiates!~opiates@unaffiliated/opiates> has joined #angularjs
[16:59:15] <pagios> hi, so i am using mdo-angular-cryptography to encrypt in javascript , sending that encrypted test in a get request to ruby and now trying to decrypt that string using AESCrypt module in ruby. Do i need more than the password to decrypt in ruby? should i use an IV along?
[17:00:04] *** jenelizabeth <jenelizabeth!~jenelizab@cpc76810-brmb10-2-0-cust4.1-3.cable.virginm.net> has quit IRC (Read error: No route to host)
[17:00:08] *** FIFOd <FIFOd!~FIFOd@75.60.240.181> has joined #angularjs
[17:00:53] *** jenelizabeth <jenelizabeth!~jenelizab@cpc76810-brmb10-2-0-cust4.1-3.cable.virginm.net> has joined #angularjs
[17:02:39] *** encryptd_fractal <encryptd_fractal!~encryptd_@c-24-245-47-249.hsd1.mn.comcast.net> has joined #angularjs
[17:06:33] *** pangwa <pangwa!~pangwa@116.238.203.170> has quit IRC (Ping timeout: 240 seconds)
[17:07:00] <Angugus> da_wunder: hi, are you there ?
[17:07:26] <da_wunder> i'm always here
[17:07:40] <Angugus> lol
[17:08:30] *** iraj_ <iraj_!~iraj@unaffiliated/iraj> has quit IRC (Read error: Connection reset by peer)
[17:10:02] <da_wunder> but now to the sauna ->
[17:10:09] <Angugus> da_wunder: did you mask some links or other HTML elements thanks to roles, in your github app ? the one you coupled with SF ? i'm trying to find a better way than inject a service into each of my components
[17:11:40] *** Triangular <Triangular!tri@46.7.141.237> has quit IRC (Ping timeout: 240 seconds)
[17:11:48] *** fedenunez1 <fedenunez1!~fede@r167-60-89-203.dialup.adsl.anteldata.net.uy> has quit IRC (Ping timeout: 240 seconds)
[17:11:50] *** iraj_ <iraj_!~iraj@unaffiliated/iraj> has joined #angularjs
[17:12:31] *** krkc <krkc!~krkc@2601:246:4100:35f5:3c21:e18d:29ff:6034> has quit IRC (Ping timeout: 255 seconds)
[17:12:54] *** krkc <krkc!~krkc@c-73-110-140-91.hsd1.il.comcast.net> has joined #angularjs
[17:13:32] *** Triangular <Triangular!tri@46.7.141.237> has joined #angularjs
[17:16:32] *** bbankes_ <bbankes_!~bbankes@75-169-251-158.slkc.qwest.net> has quit IRC (Read error: Connection reset by peer)
[17:18:09] *** lithie <lithie!uid45836@gateway/web/irccloud.com/x-trxjclbrcxgycwff> has quit IRC (Quit: Connection closed for inactivity)
[17:26:34] *** wafflejock <wafflejock!~wafflej0c@71.239.222.172> has quit IRC (Ping timeout: 245 seconds)
[17:29:10] *** cotko <cotko!~ahmed@188-230-161-23.dynamic.t-2.net> has quit IRC (Read error: Connection reset by peer)
[17:29:15] *** vuoto <vuoto!~vuoto@80.71.142.118> has joined #angularjs
[17:29:58] *** cotko <cotko!~ahmed@188-230-161-23.dynamic.t-2.net> has joined #angularjs
[17:32:46] *** itamarjp <itamarjp!~itamar@fedora/itamarjp> has quit IRC (Ping timeout: 256 seconds)
[17:34:01] *** bengillies <bengillies!~bengillie@bengillies.net> has joined #angularjs
[17:34:50] <da_wunder> Angugus: you could just hide those by user roles
[17:35:33] <da_wunder> Angugus: and sure you need to inject something, how the hell that component would know what to show and what not ?
[17:35:37] *** sterns <sterns!~matt@199.244.109.163> has joined #angularjs
[17:36:56] *** sterns <sterns!~matt@199.244.109.163> has quit IRC (Client Quit)
[17:38:08] *** despai <despai!~despai@ip5658b122.direct-adsl.nl> has quit IRC (Ping timeout: 240 seconds)
[17:38:10] *** IvailoStoianov <IvailoStoianov!~wut@ec2-35-156-225-165.eu-central-1.compute.amazonaws.com> has quit IRC (Ping timeout: 264 seconds)
[17:38:28] *** bengillies <bengillies!~bengillie@bengillies.net> has quit IRC (Ping timeout: 240 seconds)
[17:38:37] *** encryptd_fractal <encryptd_fractal!~encryptd_@c-24-245-47-249.hsd1.mn.comcast.net> has quit IRC (Remote host closed the connection)
[17:39:01] *** mischat_ <mischat_!~mischat@05434105.skybroadband.com> has quit IRC (Remote host closed the connection)
[17:39:19] <Angugus> da_wunder: i was talking about inject my service into each components. Can i include it globally to my whole app ?
[17:39:43] <da_wunder> that makes no sense at all
[17:39:54] <da_wunder> component should contain _all_ that it needs
[17:40:07] <Angugus> not false
[17:40:08] *** itamarjp <itamarjp!~itamar@fedora/itamarjp> has joined #angularjs
[17:40:17] <da_wunder> and it should not trust some "magic" stuff that is happening outside
[17:41:16] *** doodlehaus <doodlehaus!~doodlehau@97-87-51-70.dhcp.mdsn.wi.charter.com> has joined #angularjs
[17:41:38] *** despai <despai!~despai@ip5658b122.direct-adsl.nl> has joined #angularjs
[17:41:47] <Angugus> ok
[17:42:04] <Angugus> it make sense
[17:42:18] <Angugus> ty
[17:42:24] *** bbankes <bbankes!~bbankes@75-169-251-158.slkc.qwest.net> has joined #angularjs
[17:42:26] <da_wunder> np
[17:42:30] *** eago <eago!~eago@181.59.244.38> has quit IRC (Remote host closed the connection)
[17:42:41] <da_wunder> Angugus: also remember that there is a official gitter chat channel for ng2
[17:43:22] <Angugus> yes, i'll use it
[17:44:26] *** uru|away is now known as uru
[17:45:28] *** doodlehaus <doodlehaus!~doodlehau@97-87-51-70.dhcp.mdsn.wi.charter.com> has quit IRC (Ping timeout: 240 seconds)
[17:46:41] *** despai <despai!~despai@ip5658b122.direct-adsl.nl> has quit IRC (Ping timeout: 276 seconds)
[17:46:48] *** w2r5 <w2r5!~textual@c-107-2-32-119.hsd1.az.comcast.net> has quit IRC (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
[17:47:09] *** eago <eago!~eago@181.59.244.38> has joined #angularjs
[17:48:22] *** w2r5 <w2r5!~textual@c-107-2-32-119.hsd1.az.comcast.net> has joined #angularjs
[17:48:29] *** skyx <skyx!~skyx__@cpe-31-15-173-211.cable.telemach.net> has quit IRC (Quit: This computer has gone to sleep)
[17:53:04] *** m8 <m8!~m8@unaffiliated/m8> has quit IRC (Read error: Connection reset by peer)
[17:58:28] *** Garfield-fr <Garfield-fr!~Garfield-@unaffiliated/garfield-fr> has quit IRC (Ping timeout: 258 seconds)
[18:00:25] *** doodlehaus <doodlehaus!~doodlehau@97-87-51-70.dhcp.mdsn.wi.charter.com> has joined #angularjs
[18:05:32] *** doodlehaus <doodlehaus!~doodlehau@97-87-51-70.dhcp.mdsn.wi.charter.com> has quit IRC (Ping timeout: 276 seconds)
[18:05:40] *** iraj_ <iraj_!~iraj@unaffiliated/iraj> has quit IRC (Ping timeout: 240 seconds)
[18:06:23] *** doodlehaus <doodlehaus!~doodlehau@97-87-51-70.dhcp.mdsn.wi.charter.com> has joined #angularjs
[18:07:47] *** vuoto <vuoto!~vuoto@80.71.142.118> has quit IRC (Quit: Lost terminal)
[18:08:11] *** vuoto <vuoto!~vuoto@80.71.142.118> has joined #angularjs
[18:09:53] *** skyx <skyx!~skyx__@cpe-31-15-173-211.cable.telemach.net> has joined #angularjs
[18:10:32] *** skyx <skyx!~skyx__@cpe-31-15-173-211.cable.telemach.net> has quit IRC (Remote host closed the connection)
[18:15:13] <Nasp> What
[18:15:17] <Nasp> components needs stuff to be injected
[18:16:33] *** tkxxx <tkxxx!~tkxxx@tristan1990.plus.com> has joined #angularjs
[18:16:43] *** gvhoecke <gvhoecke!~gvhoecke@91.182.51.11> has quit IRC (Quit: ZNC 1.6.3 - http://znc.in)
[18:18:20] *** exs <exs!~rs@ip5b415856.dynamic.kabel-deutschland.de> has joined #angularjs
[18:18:30] <exs> hi can i ask questions to angular2 here?
[18:19:51] <da_wunder> sure, but i recommend that you use official gitter channel
[18:20:58] <exs> anyway, i hope i can, i need help. i have a component defining a route outlet. that component has children in the route configuration. they will be loaded in the particular route outlet and its fine. the problem is that I want defining absolute paths instead relative paths. my components path is for example /lp and I have a child component for demo. Instead /lp/demo I want /demo. is it possible with
[18:21:04] <exs> angular2 and its route configuration with children routes?
[18:22:17] <exs> da_wunder: thanks, didnt know that they have gitter. i can ask there also but i have already posted my question here. maybe there is someone who wants to answer?
[18:23:21] *** dreh <dreh!~jedimind@unaffiliated/jedimind> has quit IRC (Quit: My MacBook has gone to sleep. ZZZzzz…)
[18:25:06] *** arashb <arashb!~arashb@CPEf81a67bc19e1-CMbc4dfb41ae30.cpe.net.cable.rogers.com> has quit IRC (Remote host closed the connection)
[18:25:11] *** deeb <deeb!~dee@a85-139-8-162.cpe.netcabo.pt> has joined #angularjs
[18:25:34] *** arashb <arashb!~arashb@CPEf81a67bc19e1-CMbc4dfb41ae30.cpe.net.cable.rogers.com> has joined #angularjs
[18:34:48] *** bengillies <bengillies!~bengillie@bengillies.net> has joined #angularjs
[18:37:13] *** _damien <_damien!~kerskuizh@eth-west-pareq2-46-193-0-40.wb.wifirst.net> has joined #angularjs
[18:37:34] <_damien> hi
[18:37:38] <_damien> quick question
[18:37:57] <_damien> how do I communicate with a non-nested component ?
[18:38:24] <_damien> like we used to do with jquery : $('#myid').someaction()
[18:38:41] <_damien> is it wise to use javascript std DOM api ?
[18:38:58] *** bengillies <bengillies!~bengillie@bengillies.net> has quit IRC (Ping timeout: 240 seconds)
[18:39:06] *** encryptd_fractal <encryptd_fractal!~encryptd_@c-24-245-47-249.hsd1.mn.comcast.net> has joined #angularjs
[18:39:39] *** despai <despai!~despai@ip5658b122.direct-adsl.nl> has joined #angularjs
[18:39:50] *** dreh <dreh!~jedimind@unaffiliated/jedimind> has joined #angularjs
[18:40:25] <Nasp> Not any more no
[18:43:21] *** eago <eago!~eago@181.59.244.38> has quit IRC (Remote host closed the connection)
[18:44:51] *** despai <despai!~despai@ip5658b122.direct-adsl.nl> has quit IRC (Ping timeout: 258 seconds)
[18:46:17] *** rmichnik <rmichnik!uid21606@gateway/web/irccloud.com/x-lizedobqcqdouehl> has quit IRC (Quit: Connection closed for inactivity)
[18:48:43] *** basiclaser <basiclaser!uid10861@gateway/web/irccloud.com/x-awnyykvehymqnwbp> has joined #angularjs
[18:49:53] *** _damien <_damien!~kerskuizh@eth-west-pareq2-46-193-0-40.wb.wifirst.net> has quit IRC (Ping timeout: 240 seconds)
[18:50:17] *** mischat <mischat!~mischat@05434105.skybroadband.com> has joined #angularjs
[18:51:08] *** lavalamp <lavalamp!~lavalamp@unaffiliated/lavalamp> has joined #angularjs
[19:02:00] *** LennardW <LennardW!~LennardW@ip503cfcfb.speed.planet.nl> has quit IRC (Ping timeout: 260 seconds)
[19:02:26] *** apparition <apparition!~apparitio@unaffiliated/apparition> has quit IRC (Quit: Bye)
[19:02:45] *** LennardW|afk <LennardW|afk!~LennardW@ip503cfcfb.speed.planet.nl> has joined #angularjs
[19:02:46] *** encryptd_fractal <encryptd_fractal!~encryptd_@c-24-245-47-249.hsd1.mn.comcast.net> has quit IRC (Ping timeout: 255 seconds)
[19:02:48] <graingert> _damien: use a service
[19:02:57] *** LennardW|afk is now known as LennardW
[19:02:58] <graingert> But why would you want that?
[19:03:27] <graingert> Data flows down callbacks flow up
[19:06:28] *** logalvatron <logalvatron!~textual@2601:2c6:4800:4a10:80e4:f575:f972:71be> has joined #angularjs
[19:06:47] *** realisation <realisation!~textual@104-2-144-154.lightspeed.sntcca.sbcglobal.net> has joined #angularjs
[19:07:35] *** logalvatron <logalvatron!~textual@2601:2c6:4800:4a10:80e4:f575:f972:71be> has quit IRC (Client Quit)
[19:08:18] *** sterns <sterns!~matt@199.244.109.163> has joined #angularjs
[19:08:44] *** logalvatron <logalvatron!~textual@2601:2c6:4800:4a10:810f:7233:4c8b:14df> has joined #angularjs
[19:11:32] *** doodlehaus <doodlehaus!~doodlehau@97-87-51-70.dhcp.mdsn.wi.charter.com> has quit IRC (Remote host closed the connection)
[19:11:35] *** logalvatron <logalvatron!~textual@2601:2c6:4800:4a10:810f:7233:4c8b:14df> has quit IRC (Client Quit)
[19:13:22] *** IvailoStoianov <IvailoStoianov!~wut@ec2-35-157-121-93.eu-central-1.compute.amazonaws.com> has joined #angularjs
[19:13:47] *** tkxxx <tkxxx!~tkxxx@tristan1990.plus.com> has quit IRC (Remote host closed the connection)
[19:14:24] *** despai <despai!~despai@ip5658b122.direct-adsl.nl> has joined #angularjs
[19:14:38] *** despai <despai!~despai@ip5658b122.direct-adsl.nl> has quit IRC (Client Quit)
[19:15:21] *** edrocks <edrocks!~edrocks@66-194-206-178.static.twtelecom.net> has joined #angularjs
[19:16:24] *** logalvatron <logalvatron!~textual@c-50-171-105-48.hsd1.tx.comcast.net> has joined #angularjs
[19:19:25] *** opiates <opiates!~opiates@unaffiliated/opiates> has quit IRC (Ping timeout: 255 seconds)
[19:19:52] *** edrocks <edrocks!~edrocks@66-194-206-178.static.twtelecom.net> has quit IRC (Ping timeout: 256 seconds)
[19:21:01] *** BackEndCoder <BackEndCoder!~steve@mail.dontplay.co.uk> has quit IRC (Excess Flood)
[19:23:52] *** BackEndCoder <BackEndCoder!~steve@mail.dontplay.co.uk> has joined #angularjs
[19:27:58] *** realisation <realisation!~textual@104-2-144-154.lightspeed.sntcca.sbcglobal.net> has quit IRC (Quit: My MacBook has gone to sleep. ZZZzzz…)
[19:28:02] *** Garfield-fr <Garfield-fr!~Garfield-@unaffiliated/garfield-fr> has joined #angularjs
[19:30:33] *** mischat <mischat!~mischat@05434105.skybroadband.com> has quit IRC (Remote host closed the connection)
[19:35:18] *** port_fosh <port_fosh!~portfosh@bband-dyn45.178-40-122.t-com.sk> has joined #angularjs
[19:35:53] *** bengillies <bengillies!~bengillie@bengillies.net> has joined #angularjs
[19:37:51] *** tkxxx <tkxxx!~tkxxx@tristan1990.plus.com> has joined #angularjs
[19:39:46] *** kakashiAL <kakashiAL!~kakashiAL@p5DD808E7.dip0.t-ipconnect.de> has quit IRC (Read error: No route to host)
[19:39:53] *** bengillies <bengillies!~bengillie@bengillies.net> has quit IRC (Ping timeout: 240 seconds)
[19:41:58] *** jtimon <jtimon!~quassel@245.30.134.37.dynamic.jazztel.es> has quit IRC (Ping timeout: 240 seconds)
[19:43:25] *** overlord_tm <overlord_tm!~andraz@213.172.234.141> has quit IRC (Ping timeout: 260 seconds)
[19:43:40] *** logalvatron <logalvatron!~textual@c-50-171-105-48.hsd1.tx.comcast.net> has quit IRC (Quit: My MacBook has gone to sleep. ZZZzzz…)
[19:46:40] *** _ds82 <_ds82!~dennis@udyr.ds82.de> has joined #angularjs
[19:49:22] *** exs <exs!~rs@ip5b415856.dynamic.kabel-deutschland.de> has left #angularjs
[19:56:03] *** vuoto <vuoto!~vuoto@80.71.142.118> has quit IRC (Remote host closed the connection)
[19:56:24] *** w2r5 <w2r5!~textual@c-107-2-32-119.hsd1.az.comcast.net> has quit IRC (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
[19:56:55] *** dbclk <dbclk!~dbclk@190.213.205.178> has joined #angularjs
[20:00:58] *** PickAndMix <PickAndMix!~Max@175.156.243.170> has joined #angularjs
[20:01:47] <PickAndMix> Hi! As someone who has zero experience in Angular 1/2. Is the book ng-book 2 a good place to start on learning Angular 2?
[20:02:50] *** amcorreia <amcorreia!~amcorreia@2804:7f5:280:83f1::2> has joined #angularjs
[20:06:01] *** RubyRonin <RubyRonin!~chatzilla@2601:47:4000:fbc0:6955:fb33:c1e9:f35a> has joined #angularjs
[20:06:19] <RubyRonin> greetings all
[20:06:32] <RubyRonin> can anyone explain how to utilize an external js script in angular2
[20:08:21] *** Chadtech <Chadtech!sid40724@gateway/web/irccloud.com/x-qsxchxadhcubqpdg> has left #angularjs
[20:12:06] *** doodlehaus <doodlehaus!~doodlehau@97-87-51-70.dhcp.mdsn.wi.charter.com> has joined #angularjs
[20:12:29] *** joff <joff!49279baa@gateway/web/freenode/ip.73.39.155.170> has joined #angularjs
[20:12:59] <joff> Hi guys
[20:16:10] *** doodlehaus <doodlehaus!~doodlehau@97-87-51-70.dhcp.mdsn.wi.charter.com> has quit IRC (Ping timeout: 240 seconds)
[20:16:54] <RubyRonin> hi
[20:17:53] *** [ADN] <[ADN]!~Test@euf3300163-pip.sys.ntt.eu> has quit IRC (Ping timeout: 240 seconds)
[20:23:22] *** realisation <realisation!~textual@128.177.113.106> has joined #angularjs
[20:23:58] *** sergey__ <sergey__!~sergey@46.98.105.125> has quit IRC (Ping timeout: 240 seconds)
[20:27:10] *** realisation <realisation!~textual@128.177.113.106> has quit IRC (Client Quit)
[20:33:22] *** iraj <iraj!~iraj@unaffiliated/iraj> has joined #angularjs
[20:34:25] *** encryptd_fractal <encryptd_fractal!~encryptd_@c-24-245-47-249.hsd1.mn.comcast.net> has joined #angularjs
[20:36:39] *** bengillies <bengillies!~bengillie@bengillies.net> has joined #angularjs
[20:38:33] *** _ADN_ <_ADN_!~Test@host81-159-82-163.range81-159.btcentralplus.com> has joined #angularjs
[20:40:09] *** ASGuerrero <ASGuerrero!ASGuerrero@2.216.90.77> has joined #angularjs
[20:40:54] *** bengillies <bengillies!~bengillie@bengillies.net> has quit IRC (Ping timeout: 256 seconds)
[20:41:26] *** koko <koko!4fb12fbf@gateway/web/freenode/ip.79.177.47.191> has joined #angularjs
[20:41:50] *** koko <koko!4fb12fbf@gateway/web/freenode/ip.79.177.47.191> has quit IRC (Client Quit)
[20:45:12] <joff> having some troubles getting bootstrap components to work in my angular app, anyone able to help?
[20:47:53] *** eau4x6 <eau4x6!5fa06d2c@gateway/web/freenode/ip.95.160.109.44> has quit IRC (Quit: Page closed)
[20:48:11] *** soee <soee!~soee@bhn200.neoplus.adsl.tpnet.pl> has joined #angularjs
[20:49:40] *** soee_ <soee_!~soee@bif143.neoplus.adsl.tpnet.pl> has quit IRC (Ping timeout: 240 seconds)
[20:50:10] *** iraj <iraj!~iraj@unaffiliated/iraj> has quit IRC (Ping timeout: 240 seconds)
[20:57:16] *** joff <joff!49279baa@gateway/web/freenode/ip.73.39.155.170> has quit IRC (Quit: Page closed)
[21:00:40] *** fatshark <fatshark!~kvirc64@cm-84.215.6.11.getinternet.no> has quit IRC (Read error: Connection reset by peer)
[21:01:23] *** iraj <iraj!~iraj@unaffiliated/iraj> has joined #angularjs
[21:01:27] *** _ADN_ <_ADN_!~Test@host81-159-82-163.range81-159.btcentralplus.com> has quit IRC (Ping timeout: 240 seconds)
[21:04:51] *** fatshark <fatshark!~kvirc64@cm-84.215.6.11.getinternet.no> has joined #angularjs
[21:07:04] *** node9 <node9!~node9@CPE0c473dd24701-CM0c473dd24700.cpe.net.cable.rogers.com> has joined #angularjs
[21:07:07] *** tkxxx <tkxxx!~tkxxx@tristan1990.plus.com> has quit IRC (Remote host closed the connection)
[21:08:07] *** jtimon <jtimon!~quassel@245.30.134.37.dynamic.jazztel.es> has joined #angularjs
[21:10:59] *** basiclaser <basiclaser!uid10861@gateway/web/irccloud.com/x-awnyykvehymqnwbp> has quit IRC (Quit: Connection closed for inactivity)
[21:11:00] *** elsevero <elsevero!~elsevero@82.77.50.197> has joined #angularjs
[21:13:14] *** Angugus <Angugus!52e199fa@gateway/web/freenode/ip.82.225.153.250> has quit IRC (Ping timeout: 260 seconds)
[21:13:44] *** doodlehaus <doodlehaus!~doodlehau@97-87-51-70.dhcp.mdsn.wi.charter.com> has joined #angularjs
[21:14:48] *** wrkrcoop <wrkrcoop!~martee@c-50-161-66-134.hsd1.ca.comcast.net> has joined #angularjs
[21:15:21] <wrkrcoop> hey, i have a directive called custom-header, and im adding it to the top of every page, is there a better way to accomplish what im trying to do which is have the same header across each page?
[21:17:17] *** opiates <opiates!~opiates@unaffiliated/opiates> has joined #angularjs
[21:17:59] *** skyx <skyx!~skyx__@cpe-31-15-173-211.cable.telemach.net> has joined #angularjs
[21:18:35] *** doodlehaus <doodlehaus!~doodlehau@97-87-51-70.dhcp.mdsn.wi.charter.com> has quit IRC (Ping timeout: 276 seconds)
[21:18:49] *** andiigii <andiigii!c343fb71@gateway/web/freenode/ip.195.67.251.113> has quit IRC (Quit: Page closed)
[21:19:09] *** skyx <skyx!~skyx__@cpe-31-15-173-211.cable.telemach.net> has quit IRC (Max SendQ exceeded)
[21:19:40] *** skyx <skyx!~skyx__@cpe-31-15-173-211.cable.telemach.net> has joined #angularjs
[21:19:59] <ngWalrus> s
[21:20:33] <ngWalrus> erm what you want to do is have it at the top of ecety page
[21:21:15] <ngWalrus> if you are using a router I'd have a view dedicated for it
[21:21:25] <ngWalrus> like a view component
[21:22:15] <ngWalrus> so basically you change the main view and leave the header view as is
[21:22:29] *** letsila1 <letsila1!~Adium@197.158.78.163> has joined #angularjs
[21:22:44] <ngWalrus> but it depends on the implementation
[21:23:59] *** elsevero <elsevero!~elsevero@82.77.50.197> has quit IRC (Quit: elsevero)
[21:25:03] <wrkrcoop> hey ngWalrus sorry didnt see your reply
[21:25:19] <wrkrcoop> so just to clarify, i should have my navbar directive at the top of every page?
[21:26:01] <wrkrcoop> https://gist.github.com/ellismarte/b215b841c99c26f9545a54b69b6d3b37
[21:26:07] <wrkrcoop> sorry: https://gist.github.com/ellismarte/b215b841c99c26f9545a54b69b6d3b37#file-a-html-L2
[21:27:30] *** despai <despai!~despai@84.241.213.5> has joined #angularjs
[21:28:46] *** fedenunez <fedenunez!~fede@r167-60-89-203.dialup.adsl.anteldata.net.uy> has joined #angularjs
[21:28:46] *** deeb <deeb!~dee@a85-139-8-162.cpe.netcabo.pt> has quit IRC (Read error: Connection reset by peer)
[21:29:09] *** LeBlaaanc <LeBlaaanc!~textual@unaffiliated/leblaaanc> has joined #angularjs
[21:30:37] *** kakashiAL <kakashiAL!~kakashiAL@p5DD808E7.dip0.t-ipconnect.de> has joined #angularjs
[21:30:45] *** wd40s <wd40s!~wd40s@192.77.237.124> has quit IRC (Ping timeout: 245 seconds)
[21:31:09] *** ricks_ <ricks_!67c04102@gateway/web/freenode/ip.103.192.65.2> has joined #angularjs
[21:31:51] *** otherd <otherd!6c32fb63@gateway/web/freenode/ip.108.50.251.99> has joined #angularjs
[21:32:10] *** otherd <otherd!6c32fb63@gateway/web/freenode/ip.108.50.251.99> has left #angularjs
[21:32:40] *** despai <despai!~despai@84.241.213.5> has quit IRC (Ping timeout: 240 seconds)
[21:34:01] *** ricks_ <ricks_!67c04102@gateway/web/freenode/ip.103.192.65.2> has quit IRC (Client Quit)
[21:35:33] *** wd40s <wd40s!~wd40s@192.77.237.124> has joined #angularjs
[21:39:18] *** gvanderest <gvanderest!~gvanderes@S01061cabc0b0f193.ok.shawcable.net> has joined #angularjs
[21:40:15] *** gvanderest <gvanderest!~gvanderes@S01061cabc0b0f193.ok.shawcable.net> has quit IRC (Read error: Connection reset by peer)
[21:40:30] *** despai <despai!~despai@ip5658b122.direct-adsl.nl> has joined #angularjs
[21:40:37] *** gvanderest <gvanderest!~gvanderes@S01061cabc0b0f193.ok.shawcable.net> has joined #angularjs
[21:45:59] *** letsila1 <letsila1!~Adium@197.158.78.163> has quit IRC (Quit: Leaving.)
[21:46:34] *** RubyRonin <RubyRonin!~chatzilla@2601:47:4000:fbc0:6955:fb33:c1e9:f35a> has quit IRC (Ping timeout: 255 seconds)
[21:51:08] *** mischat <mischat!~mischat@05434105.skybroadband.com> has joined #angularjs
[21:56:50] *** despai <despai!~despai@ip5658b122.direct-adsl.nl> has quit IRC (Quit: This computer has gone to sleep)
[21:58:13] *** lexileo <lexileo!~lexii@103.8.148.248> has quit IRC (Ping timeout: 240 seconds)
[21:58:38] *** opiates <opiates!~opiates@unaffiliated/opiates> has quit IRC (Remote host closed the connection)
[22:00:15] *** lexileo <lexileo!~lexii@123.252.241.126> has joined #angularjs
[22:01:17] <ngWalrus> d
[22:01:45] <ngWalrus> if your header is on every page could you not lift it out of the ctrl
[22:01:58] *** TankBo <TankBo!stefan@boxbox.org> has quit IRC (Read error: Connection reset by peer)
[22:06:53] *** lavalamp <lavalamp!~lavalamp@unaffiliated/lavalamp> has quit IRC (Quit: (> '.' )>)
[22:07:36] *** ankr <ankr!~ankr@91.100.101.235.generic-hostname.arrownet.dk> has joined #angularjs
[22:10:41] *** LeBlaaanc <LeBlaaanc!~textual@unaffiliated/leblaaanc> has quit IRC (Quit: My MacBook has gone to sleep. ZZZzzz…)
[22:10:55] *** gvhoecke <gvhoecke!~gvhoecke@91.182.51.11> has joined #angularjs
[22:11:53] *** LeBlaaanc <LeBlaaanc!~textual@unaffiliated/leblaaanc> has joined #angularjs
[22:16:12] *** LeBlaaanc <LeBlaaanc!~textual@unaffiliated/leblaaanc> has quit IRC (Client Quit)
[22:16:42] *** donguston <donguston!~AdamPC@cpc12-sprt2-2-0-cust478.17-2.cable.virginm.net> has quit IRC (Quit: Leaving)
[22:19:32] *** littlebear <littlebear!littlebear@2607:fea8:a220:7e3:43c:8cea:d765:ba61> has quit IRC (Read error: Connection reset by peer)
[22:19:50] *** littlebear <littlebear!littlebear@2607:fea8:a220:7e3:43c:8cea:d765:ba61> has joined #angularjs
[22:20:08] *** littlebear <littlebear!littlebear@2607:fea8:a220:7e3:43c:8cea:d765:ba61> has quit IRC (Read error: Connection reset by peer)
[22:21:07] *** littlebear <littlebear!littlebear@2607:fea8:a220:7e3:43c:8cea:d765:ba61> has joined #angularjs
[22:26:02] *** bgummadi <bgummadi!~bgummadi@pool-100-36-25-57.washdc.fios.verizon.net> has joined #angularjs
[22:26:23] *** cvanball <cvanball!~textual@2001:980:92c0:1:6556:3096:5ac3:c1f5> has joined #angularjs
[22:27:38] *** OnkelTem <OnkelTem!~onkeltem@pppoe-62-84-112-224.dubna.ru> has joined #angularjs
[22:27:55] *** nishu-tryinghard <nishu-tryinghard!~nishanth@183.82.187.154> has quit IRC (Quit: Leaving)
[22:28:24] <bgummadi> https://gist.github.com/binnyg/5fd57ee814c8584653203dd01cc981ec
[22:28:56] <bgummadi> I have a working page with 5 fields and I am tried to add file field using ng-file-upload
[22:29:17] <bgummadi> I added the html and I do see the field getting populated in the controller
[22:29:28] <bgummadi> but unable to send it to the server
[22:29:57] *** ansu <ansu!~ansu@unaffiliated/ansu> has quit IRC (Ping timeout: 240 seconds)
[22:30:27] <bgummadi> when I call save I would like to send the file filed to the server
[22:31:16] *** ansu <ansu!~ansu@unaffiliated/ansu> has joined #angularjs
[22:32:12] *** cvanball <cvanball!~textual@2001:980:92c0:1:6556:3096:5ac3:c1f5> has quit IRC (Quit: Textual IRC Client: www.textualapp.com)
[22:32:23] *** pLaTo0n <pLaTo0n!~pLaTo0n@unaffiliated/platoon> has quit IRC (Ping timeout: 252 seconds)
[22:32:57] *** BandC <BandC!~BandC@2605:a601:ae9:2c00:64a9:c350:48cc:f313> has joined #angularjs
[22:33:08] *** cvanball <cvanball!~textual@2001:980:92c0:1:6556:3096:5ac3:c1f5> has joined #angularjs
[22:37:51] *** bengillies <bengillies!~bengillie@bengillies.net> has joined #angularjs
[22:39:13] *** bgummadi <bgummadi!~bgummadi@pool-100-36-25-57.washdc.fios.verizon.net> has quit IRC (Quit: bgummadi)
[22:42:27] *** bengillies <bengillies!~bengillie@bengillies.net> has quit IRC (Ping timeout: 240 seconds)
[22:43:23] *** iraj <iraj!~iraj@unaffiliated/iraj> has quit IRC (Ping timeout: 252 seconds)
[22:43:24] *** gvanderest <gvanderest!~gvanderes@S01061cabc0b0f193.ok.shawcable.net> has quit IRC (Quit: Leaving...)
[22:49:29] *** RubyRonin <RubyRonin!~chatzilla@2601:47:4000:fbc0:6955:fb33:c1e9:f35a> has joined #angularjs
[22:52:03] *** eago <eago!~eago@181.59.244.38> has joined #angularjs
[22:53:11] *** tkxxx <tkxxx!~tkxxx@tristan1990.plus.com> has joined #angularjs
[22:55:28] *** logalvatron <logalvatron!~textual@2601:2c6:4800:4a10:a58a:1d0c:ca7b:778a> has joined #angularjs
[22:56:35] *** logalvatron <logalvatron!~textual@2601:2c6:4800:4a10:a58a:1d0c:ca7b:778a> has quit IRC (Client Quit)
[22:57:00] *** wafflejock <wafflejock!~wafflej0c@71.239.222.172> has joined #angularjs
[23:09:42] *** jcara <jcara!~jcara@jcara.tech> has quit IRC (Quit: No Ping reply in 180 seconds.)
[23:11:05] *** jcara <jcara!~jcara@jcara.tech> has joined #angularjs
[23:11:51] *** tristanp <tristanp!~tristanp@c-73-221-52-141.hsd1.wa.comcast.net> has joined #angularjs
[23:17:06] *** edrocks <edrocks!~edrocks@66-194-206-178.static.twtelecom.net> has joined #angularjs
[23:17:58] *** LeBlaaanc <LeBlaaanc!~textual@unaffiliated/leblaaanc> has joined #angularjs
[23:21:50] *** edrocks <edrocks!~edrocks@66-194-206-178.static.twtelecom.net> has quit IRC (Ping timeout: 256 seconds)
[23:27:49] *** lavalamp <lavalamp!~lavalamp@unaffiliated/lavalamp> has joined #angularjs
[23:33:26] *** logalvatron <logalvatron!~textual@2601:2c6:4800:4a10:a58a:1d0c:ca7b:778a> has joined #angularjs
[23:35:01] *** sagerdearia <sagerdearia!~necrodear@unaffiliated/necrodearia> has quit IRC (Ping timeout: 255 seconds)
[23:35:41] *** sagerdearia <sagerdearia!~necrodear@unaffiliated/necrodearia> has joined #angularjs
[23:38:48] *** bengillies <bengillies!~bengillie@bengillies.net> has joined #angularjs
[23:40:14] *** despai <despai!~despai@ip5658b122.direct-adsl.nl> has joined #angularjs
[23:42:22] *** Ryzer <Ryzer!~Ryzer@ptr-4h7lnx9anvnwe0e5okm.18120a2.ip6.access.telenet.be> has joined #angularjs
[23:43:05] *** bengillies <bengillies!~bengillie@bengillies.net> has quit IRC (Ping timeout: 240 seconds)
[23:43:44] *** LucaTM <LucaTM!~LucaTM@unaffiliated/lucatm> has quit IRC (Quit: To infinity and beyond...)
[23:53:47] *** tristanp <tristanp!~tristanp@c-73-221-52-141.hsd1.wa.comcast.net> has quit IRC (Remote host closed the connection)
[23:58:40] *** port_fosh <port_fosh!~portfosh@bband-dyn45.178-40-122.t-com.sk> has quit IRC (Ping timeout: 256 seconds)
top

   February 11, 2017  
< | 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 | >