[00:00:07] *** drej has joined #angularjs
[00:00:15] <dre_> are the angular2 docs on github somewhere?
[00:00:46] *** Wawa_ has joined #angularjs
[00:01:37] *** sgen_ has quit IRC
[00:01:52] *** Wawa_ has quit IRC
[00:02:07] *** zigzagzig has joined #angularjs
[00:02:39] *** IvailoStoianov has quit IRC
[00:03:01] *** jareddlc has joined #angularjs
[00:03:02] *** doxavore has quit IRC
[00:03:39] *** IvailoStoianov has joined #angularjs
[00:03:39] *** dpicky has joined #angularjs
[00:03:46] *** Sna4x8 has quit IRC
[00:04:59] *** Ilyes512 has joined #angularjs
[00:05:40] *** iateadonut has joined #angularjs
[00:05:51] *** compeman has quit IRC
[00:06:09] *** aslate has joined #angularjs
[00:06:35] *** Kindari has quit IRC
[00:07:14] *** ewooy has quit IRC
[00:07:40] *** dpicky_ has joined #angularjs
[00:07:47] *** Kindari has joined #angularjs
[00:07:58] *** jareddlc has quit IRC
[00:08:55] *** dpicky has quit IRC
[00:09:31] *** baweaver has joined #angularjs
[00:10:27] *** dimtruck is now known as zz_dimtruck
[00:10:45] *** dcherman has joined #angularjs
[00:10:47] *** aslate has quit IRC
[00:10:59] *** fees has quit IRC
[00:11:44] *** Ldip has quit IRC
[00:13:54] *** shangxiao has joined #angularjs
[00:14:02] *** steeze has quit IRC
[00:14:39] *** csharper has quit IRC
[00:15:06] *** liamonade has joined #angularjs
[00:16:01] *** liamonade has quit IRC
[00:16:37] *** drej has quit IRC
[00:16:48] *** csharper has joined #angularjs
[00:17:10] *** ewooy has joined #angularjs
[00:17:44] *** subnomo has quit IRC
[00:19:34] *** dpicky_ has quit IRC
[00:20:44] *** siba has joined #angularjs
[00:21:00] *** csharper has quit IRC
[00:21:17] <PointBlank> I guess no one ever needs fine grained access control with angular apps
[00:22:10] *** zigzagzig has quit IRC
[00:22:36] *** sctskw has joined #angularjs
[00:23:25] *** sctskw has quit IRC
[00:24:19] *** AntJ has quit IRC
[00:24:33] *** ewooy has quit IRC
[00:25:15] *** shangxiao has quit IRC
[00:25:45] *** bcSquared has joined #angularjs
[00:26:07] *** zeioth has quit IRC
[00:27:15] *** dszmaj has joined #angularjs
[00:30:19] *** shangxiao has joined #angularjs
[00:31:00] *** ewooy has joined #angularjs
[00:31:49] *** mary5030 has quit IRC
[00:32:06] *** g3funk is now known as braidn
[00:32:27] *** annlewis has joined #angularjs
[00:34:06] *** itaipu has quit IRC
[00:34:13] *** elrabin has quit IRC
[00:34:26] *** kk has quit IRC
[00:34:48] *** elrabin has joined #angularjs
[00:36:43] *** Misere has joined #angularjs
[00:36:48] *** quakephil has quit IRC
[00:37:10] *** soee has quit IRC
[00:37:22] *** annlewis has quit IRC
[00:37:30] *** Mr-label has quit IRC
[00:38:51] *** dszmaj has quit IRC
[00:39:15] *** elrabin has quit IRC
[00:39:31] *** dfcarpenterak has joined #angularjs
[00:40:20] <Phtes_> Hi what is the proper way for promise error handling? .then().catch() or .then(function(){}, function(error){})?
[00:40:37] <Phtes_> Both work but is there an accepted standard between which should be used?
[00:40:59] *** csharper has joined #angularjs
[00:42:33] *** ewooy has quit IRC
[00:42:51] *** encryptd_fractal has joined #angularjs
[00:43:35] *** dpicky has joined #angularjs
[00:43:42] *** nraibaud has joined #angularjs
[00:44:52] *** steeze has joined #angularjs
[00:45:42] *** ewooy has joined #angularjs
[00:46:16] <zomg> then().catch() will handle errors from the last then
[00:46:22] <PointBlank> Is there some kind of protocol here that people here must do in order for their questions to be considered?
[00:46:29] <zomg> then(foo, bar) will handle errors from the previous then but not from this one
[00:46:49] *** c00ljs has quit IRC
[00:48:03] <zomg> PointBlank: the more specific a question has and the more information it has, the more likely it usually is to get an answer
[00:48:18] *** mandric has joined #angularjs
[00:49:06] *** nraibaud has quit IRC
[00:49:10] <zomg> As for your question regarding auth, I see people ask about it occasionally and never get any answers... :D
[00:49:19] *** Ilyes512 has quit IRC
[00:49:26] *** nraibaud has joined #angularjs
[00:49:29] *** gcds_ is now known as gcds
[00:49:45] <zomg> But I think you may be overthinking it. It shouldn't require anything particularly special nor specific libraries
[00:49:45] <PointBlank> Ok zomg thanks because I have been searching about fine grained authorization in angular and I cannot find anything. Which leads me to believe that a frontend which is completely html/css/angular is impossible to have. without the aid of backend manipulation
[00:49:46] *** chairmanmow has quit IRC
[00:49:51] *** nraibaud has quit IRC
[00:50:02] *** atomicb0mb has joined #angularjs
[00:50:11] *** jcooke has joined #angularjs
[00:50:30] <zomg> Let's assume you have some user object in your app which contains some way of determining access
[00:50:38] <zomg> say, there's an access level or something
[00:50:58] <zomg> you would simply check that in order to determine what to display
[00:51:28] <zomg> but keeping in mind you should also make checks in your backend when the user does requests to ensure they do have the access rights to do those requests, since requests can easily be faked
[00:51:32] *** edm has quit IRC
[00:51:39] <zomg> (this also applies even if you didn't have a purely angular/js based UI)
[00:51:53] *** drej has joined #angularjs
[00:52:01] <PointBlank> Yes backend is enforced, frontend is just for ux
[00:53:23] <PointBlank> I was thinking to avoid role based authorization in frontend and lean on claims but the thing that i cant find anyone who i did it scares me a bit. am i missing somethin ?
[00:53:38] *** cromulent is now known as ser_pounce
[00:55:02] <zomg> Seems reasonable to me, the reason you can't find much could be because it's not that difficult to implement
[00:55:10] <zomg> (at least as far as I can tell)
[00:55:30] *** FIFOd has joined #angularjs
[00:55:41] <zomg> I mean for fairly simple systems, you could just do checks against the user's level or whatever it is that's used to determine access
[00:55:57] <zomg> but for more complex access checks, you could implement an ACL service or something
[00:56:32] *** dre_ has quit IRC
[00:57:11] <PointBlank> yes but if you do that if you add a level of access in the future you have to go through the client app and put it everywhere you need while a claim is there for you for example CanDelete
[00:57:56] <zomg> Yeah
[00:58:07] <zomg> This could be a case where if you use node in the backend the code could be shared :)
[00:58:51] <PointBlank> I wish I could use node but that sout of the question hehe
[00:59:22] *** mven has joined #angularjs
[01:00:35] *** jcooke has quit IRC
[01:00:59] *** juddey has quit IRC
[01:01:08] *** c00ljs has joined #angularjs
[01:01:12] *** owenjones has joined #angularjs
[01:01:43] <PointBlank> I guess I'll try to implement something if it doesnt go as I wish I'll end up embedding the SPA in a server side language against my wish
[01:01:56] *** dcherman has quit IRC
[01:02:49] *** c00ljs has quit IRC
[01:02:52] <zomg> Good luck... My suggestion would be to just try to keep it simple where you can :)
[01:04:51] *** django_ has left #angularjs
[01:04:55] *** sbasso has quit IRC
[01:05:17] *** AntJ has joined #angularjs
[01:06:19] *** s00pcan has quit IRC
[01:06:23] *** lemur has joined #angularjs
[01:06:41] *** AimerPaddle has quit IRC
[01:07:19] *** cocao1 has joined #angularjs
[01:07:38] <PointBlank> If I manage I'll write a blogpost to help others in the hunt
[01:07:53] *** cocao1 has joined #angularjs
[01:08:10] *** s00pcan has joined #angularjs
[01:08:11] *** vivoo has joined #angularjs
[01:08:25] *** ser_pounce is now known as cromulent
[01:08:26] *** icfantv has quit IRC
[01:08:47] *** jcooke has joined #angularjs
[01:09:00] <vivoo> Hi
[01:09:01] *** jcooke has quit IRC
[01:09:54] *** cocao1 has quit IRC
[01:10:03] <vivoo> I'm new to angular and facing a weird issue with input[number].
[01:10:13] *** cocao1 has joined #angularjs
[01:10:26] *** daslicht has joined #angularjs
[01:10:58] *** lemur has quit IRC
[01:11:16] <vivoo> I need float values, everything works fine, except with 3 decimals. For example 1.111 become 1111 in model
[01:11:28] *** Mumpsimus has quit IRC
[01:11:31] <vivoo> Any help welcome, Thanks :)
[01:12:15] <vivoo> I can't find anything about that issue, i'm using angular 1.4.8
[01:12:28] *** zeezey has quit IRC
[01:12:28] *** zeezey has joined #angularjs
[01:13:47] *** AntJ has quit IRC
[01:13:52] *** csharper has quit IRC
[01:18:07] <vivoo> senayar_: Thank you, it works on that demo
[01:18:54] *** sssilver has quit IRC
[01:18:56] <vivoo> senayar_: But i can't figure out what may be wrong in my app
[01:18:58] <senayar_> refresh for 1.4.8 but the ouptut look the same
[01:19:59] *** clivejo has quit IRC
[01:21:15] *** SonikBoom has quit IRC
[01:22:04] *** JamesMGr_ has quit IRC
[01:22:20] <vivoo> It works with more than 3 decimals, works with big numbers, just fails with 3 exactly decimals ...
[01:22:51] *** bayousoft has joined #angularjs
[01:23:32] <vivoo> But it doesn't seem like an angular issue, as demo is ok
[01:25:00] *** walden is now known as walden|afk
[01:25:36] *** Aliks has quit IRC
[01:26:22] *** dlam has quit IRC
[01:26:35] *** zigzagzig has joined #angularjs
[01:27:19] *** Sna4x8 has joined #angularjs
[01:28:10] *** bayousoft has quit IRC
[01:28:27] *** dpicky has quit IRC
[01:28:46] *** Sna4x8 has quit IRC
[01:29:18] <vivoo> Ok when i get input value with getElementById(id).value , i get the same issue. So definitly not an angular issue.
[01:30:42] *** ilmgb has joined #angularjs
[01:32:53] *** Coldblackice has joined #angularjs
[01:33:12] *** annlewis has joined #angularjs
[01:34:09] *** Coldblackice has quit IRC
[01:34:09] *** encryptd_fractal has quit IRC
[01:35:19] *** ilmgb has quit IRC
[01:35:19] *** cocao1 has quit IRC
[01:35:44] *** steeze has quit IRC
[01:37:35] *** diegoaguilar has quit IRC
[01:37:39] *** Coldblackice has joined #angularjs
[01:37:48] *** DoubleAW has joined #angularjs
[01:37:54] *** annlewis has quit IRC
[01:38:25] *** moep has quit IRC
[01:39:11] *** bayousoft has joined #angularjs
[01:40:05] *** bengillies has joined #angularjs
[01:40:11] *** itaipu has joined #angularjs
[01:40:35] *** sbellina has quit IRC
[01:40:39] *** corioliss has quit IRC
[01:41:21] *** senayar_ has quit IRC
[01:41:46] *** sbellina has joined #angularjs
[01:42:40] *** PointBlank has quit IRC
[01:42:58] *** ewooy_ has joined #angularjs
[01:43:25] *** mellernoia has quit IRC
[01:43:39] *** ewooy has quit IRC
[01:44:24] *** cacts|works has quit IRC
[01:44:29] *** Sna4x8 has joined #angularjs
[01:45:02] *** bengillies has quit IRC
[01:46:41] <vivoo> But only in firefox
[01:48:44] *** skjorrface has joined #angularjs
[01:48:50] *** enykeev has quit IRC
[01:49:22] *** randomdoude has quit IRC
[01:49:39] *** juddey has joined #angularjs
[01:49:40] *** Aliks has joined #angularjs
[01:49:42] <skjorrface> hi. I'm making some experiments with angular-material, I'd like to create fixed header + tabs bar and scrolling contents inside each tab
[01:49:44] <skjorrface> any idea?
[01:49:54] *** Bubo has joined #angularjs
[01:50:29] *** ewooy_ has quit IRC
[01:50:33] *** Aliks has quit IRC
[01:50:45] *** enykeev has joined #angularjs
[01:53:05] *** wontoner has joined #angularjs
[01:54:01] *** one_zero has joined #angularjs
[01:55:39] *** Aliks has joined #angularjs
[01:59:18] <gambl0re> can i do some sort of toggleSlide like in jquery in agngular?
[01:59:53] *** venkat_331 has joined #angularjs
[02:00:09] *** venkat_330 has quit IRC
[02:00:10] *** venkat_331 is now known as venkat_330
[02:00:56] *** bayousoft has quit IRC
[02:01:26] *** atomicb0mb has quit IRC
[02:02:35] *** ringzer0 has joined #angularjs
[02:02:53] *** superstructor has joined #angularjs
[02:04:15] *** joshontheweb has quit IRC
[02:05:04] *** p0k0 has quit IRC
[02:05:08] <ringzer0> I have a sidemenu, <ng-view name="right-side-nav"></ng-view>, is there a way to target that view with my child controller?
[02:06:06] *** superstructor has left #angularjs
[02:06:09] <ringzer0> I am having trouble articulating the issue. it's an ionic app, I need content in the right [---] menu to change based on the sub-page/substate.
[02:06:54] <ringzer0> is there a way to "control" that named view, and specify the template from a child state?
[02:06:59] <ringzer0> Oh, and I am using UI Router.
[02:09:14] *** vivoo has left #angularjs
[02:10:17] <ringzer0> I was thinking I would add views : {} to the stateProvider maybe? example .state('establishment.history', fn(...){ views : { 'submenu' : { template : '.../submenu.html' ... } } });
[02:11:25] *** baweaver has quit IRC
[02:14:58] *** baweaver has joined #angularjs
[02:15:41] *** JBreit2 has quit IRC
[02:17:14] *** shangxiao has quit IRC
[02:17:39] *** jcooke has joined #angularjs
[02:20:05] *** Schalla has quit IRC
[02:21:39] *** lmatteis has quit IRC
[02:22:58] *** cotko has quit IRC
[02:23:31] *** jcooke has quit IRC
[02:24:04] *** zigzagzig has quit IRC
[02:25:04] *** aubsrey_ has quit IRC
[02:25:40] *** encryptd_fractal has joined #angularjs
[02:27:31] *** Voyage has joined #angularjs
[02:27:44] *** marr has quit IRC
[02:31:35] *** p0k0 has joined #angularjs
[02:31:37] *** mylord has quit IRC
[02:31:50] *** s00pcan has quit IRC
[02:33:29] *** joshontheweb has joined #angularjs
[02:33:51] *** s00pcan has joined #angularjs
[02:33:58] *** annlewis has joined #angularjs
[02:35:57] *** daslicht has quit IRC
[02:36:44] *** rchavik has joined #angularjs
[02:37:02] *** owenjones has quit IRC
[02:37:20] *** hover has joined #angularjs
[02:38:42] *** annlewis has quit IRC
[02:39:30] *** umam has joined #angularjs
[02:41:03] *** mven has quit IRC
[02:41:37] *** mven has joined #angularjs
[02:42:05] *** TyrfingMjolnir has quit IRC
[02:43:26] *** owenjones has joined #angularjs
[02:43:57] *** rclanan has joined #angularjs
[02:47:18] *** lrrrr has quit IRC
[02:48:04] *** owenjones has quit IRC
[02:48:19] *** kaka has quit IRC
[02:49:35] *** step1step2 has quit IRC
[02:49:58] *** step1step2 has joined #angularjs
[02:51:06] *** joshontheweb has quit IRC
[02:51:33] *** sssilver has joined #angularjs
[02:52:42] *** johnnyfive has quit IRC
[02:53:03] *** compeman has joined #angularjs
[02:55:00] *** Aliks has quit IRC
[02:55:06] *** apotry has quit IRC
[02:58:02] *** syzygy_ has joined #angularjs
[02:59:27] *** compeman has quit IRC
[02:59:43] *** baweaver has quit IRC
[03:01:32] *** defendguin has quit IRC
[03:02:30] *** johnnyfive has joined #angularjs
[03:03:13] *** macwinner has quit IRC
[03:03:34] *** step1step2 has quit IRC
[03:03:39] *** macwinner has joined #angularjs
[03:04:00] *** ESpiney has joined #angularjs
[03:04:21] *** ESpiney has quit IRC
[03:04:39] *** step1step2 has joined #angularjs
[03:06:28] *** jetpackjoe has quit IRC
[03:07:07] *** baweaver has joined #angularjs
[03:07:08] *** compeman has joined #angularjs
[03:08:04] *** macwinner has quit IRC
[03:08:53] *** junmin has quit IRC
[03:09:49] *** shangxiao has joined #angularjs
[03:11:50] *** baweaver has quit IRC
[03:11:59] *** FIFOd has quit IRC
[03:13:08] *** phrozensilver has quit IRC
[03:14:09] *** sssilver has quit IRC
[03:15:16] *** dfcarpenterak has quit IRC
[03:15:47] *** fedenunez has joined #angularjs
[03:17:00] *** BahamutWC|Work has quit IRC
[03:18:30] *** OtherAllan has quit IRC
[03:18:35] *** sterns has joined #angularjs
[03:20:38] *** codeitloadit has quit IRC
[03:21:47] *** FIFOd has joined #angularjs
[03:23:31] *** sssilver has joined #angularjs
[03:26:35] *** corioliss has joined #angularjs
[03:27:32] *** fscala has quit IRC
[03:28:11] *** rickmak has joined #angularjs
[03:28:49] *** regedit has joined #angularjs
[03:28:51] *** fscala has joined #angularjs
[03:29:19] *** angularjs_bot has joined #angularjs
[03:29:44] *** Aliks has joined #angularjs
[03:30:44] *** nilsi has joined #angularjs
[03:31:08] *** arizzo has joined #angularjs
[03:31:26] *** d3m0n has joined #angularjs
[03:31:37] *** ilmgb has joined #angularjs
[03:32:11] *** wafflejock has quit IRC
[03:32:39] *** sssilver has quit IRC
[03:33:00] *** zigzagzig has joined #angularjs
[03:33:03] *** b0x has joined #angularjs
[03:33:03] *** b0x has joined #angularjs
[03:33:50] *** wafflejock has joined #angularjs
[03:34:43] <ringzer0> can a single state load multiple view names?
[03:34:43] *** annlewis has joined #angularjs
[03:35:11] *** iraj has quit IRC
[03:35:18] <ringzer0> can a single stateprovider in uirouter create multiple state transitions in named ui views
[03:36:34] *** ilmgb has quit IRC
[03:37:50] *** b1x1t0__ has quit IRC
[03:38:27] *** fedenunez has quit IRC
[03:39:20] *** fedenunez has joined #angularjs
[03:39:50] *** annlewis has quit IRC
[03:41:22] *** bengillies has joined #angularjs
[03:42:41] *** mary5030 has joined #angularjs
[03:42:41] *** sbellina has quit IRC
[03:43:54] *** ringzer0 has quit IRC
[03:44:13] *** zigzagzig has quit IRC
[03:44:27] *** owenjones has joined #angularjs
[03:45:49] *** rchavik has quit IRC
[03:46:10] *** bengillies has quit IRC
[03:48:43] *** sbellina has joined #angularjs
[03:48:49] *** atomicb0mb has joined #angularjs
[03:49:11] *** owenjones has quit IRC
[03:49:53] *** bradgignac has joined #angularjs
[03:49:54] *** dfcarpenterak has joined #angularjs
[03:50:17] *** junmin has joined #angularjs
[03:50:49] *** arizzo has quit IRC
[03:52:20] *** JBreit2 has joined #angularjs
[03:52:24] *** fedenunez has quit IRC
[03:52:31] *** atomicb0mb has quit IRC
[03:52:41] *** nilsi_ has joined #angularjs
[03:53:37] *** fedenunez has joined #angularjs
[03:54:18] *** nilsi has quit IRC
[03:54:50] *** arizzo has joined #angularjs
[03:55:16] *** phrozensilver has joined #angularjs
[03:55:34] *** JBreit has quit IRC
[03:56:26] *** JBreit2 has quit IRC
[03:57:56] *** Ir1sh has joined #angularjs
[03:58:45] *** Ir1sh has quit IRC
[03:58:58] *** shangxiao has quit IRC
[03:59:21] *** TyrfingMjolnir has joined #angularjs
[04:01:11] *** arizzo has quit IRC
[04:01:52] *** JBreit has joined #angularjs
[04:03:46] *** sssilver has joined #angularjs
[04:04:17] *** doppio|Laptop has joined #angularjs
[04:04:55] *** Aliks has quit IRC
[04:06:21] *** BahamutWC|Work has joined #angularjs
[04:06:43] *** sssilver has quit IRC
[04:06:54] *** sssilver has joined #angularjs
[04:07:14] *** shangxiao has joined #angularjs
[04:07:26] *** regedit has quit IRC
[04:07:39] *** fedenunez has quit IRC
[04:07:46] <hover> yo
[04:08:05] *** Mumpsimus has joined #angularjs
[04:08:45] *** siaw has joined #angularjs
[04:10:14] *** Aliks has joined #angularjs
[04:10:31] *** sssilver has quit IRC
[04:10:39] *** sssilver_ has joined #angularjs
[04:11:07] *** BahamutWC|Work has quit IRC
[04:12:12] *** fedenunez has joined #angularjs
[04:12:36] *** Mumpsimus has quit IRC
[04:13:10] *** BahamutWC|Work has joined #angularjs
[04:13:46] *** Aliks has quit IRC
[04:14:13] *** sssilver has joined #angularjs
[04:14:23] *** chinchill has quit IRC
[04:15:24] *** sssilver_ has quit IRC
[04:17:41] *** sssilver has quit IRC
[04:17:44] *** rocky1138 has quit IRC
[04:18:19] *** sssilver has joined #angularjs
[04:18:35] *** jetpackjoe has joined #angularjs
[04:18:37] *** d3m0n has quit IRC
[04:18:46] *** raininja has joined #angularjs
[04:20:43] *** frem has quit IRC
[04:24:26] *** Voyage has quit IRC
[04:25:10] *** raininja has quit IRC
[04:25:41] *** TyrfingMjolnir has quit IRC
[04:28:10] *** mandric has quit IRC
[04:29:12] *** junmin has joined #angularjs
[04:29:18] *** sssilver has quit IRC
[04:30:26] *** nya_ has joined #angularjs
[04:33:15] *** doppio|Laptop has quit IRC
[04:34:54] *** phrozensilver has quit IRC
[04:35:08] *** TyrfingMjolnir has joined #angularjs
[04:35:10] *** phrozensilver has joined #angularjs
[04:35:29] *** annlewis has joined #angularjs
[04:35:41] *** nilsi_ has quit IRC
[04:35:52] *** ringzer0 has joined #angularjs
[04:38:05] *** jetpackjoe has quit IRC
[04:38:07] *** baweaver has joined #angularjs
[04:39:34] *** phrozensilver has quit IRC
[04:40:30] *** annlewis has quit IRC
[04:43:57] *** mary5030 has quit IRC
[04:44:39] *** mary5030 has joined #angularjs
[04:44:44] *** fedenunez has quit IRC
[04:44:49] *** ron_frown has joined #angularjs
[04:45:19] *** jetpackjoe has joined #angularjs
[04:48:56] *** jenelizabeth__ has joined #angularjs
[04:49:34] *** jenelizabeth has quit IRC
[04:49:34] *** jenelizabeth__ is now known as jenelizabeth
[04:50:15] *** compeman has quit IRC
[04:50:21] *** chinchill has joined #angularjs
[04:50:22] *** chinchill has joined #angularjs
[04:50:45] *** compeman has joined #angularjs
[04:51:58] *** compeman has quit IRC
[04:51:58] *** compeman has joined #angularjs
[04:52:39] *** itaipu has quit IRC
[04:53:20] *** ringzer0 has quit IRC
[04:54:10] *** wontoner has quit IRC
[04:54:51] *** hover has quit IRC
[04:54:53] *** siba has quit IRC
[04:55:04] *** p0k0 has quit IRC
[04:56:01] *** torcs has joined #angularjs
[04:56:07] <torcs> howdy
[04:57:23] *** mary5030 has quit IRC
[04:59:54] *** jetpackjoe has quit IRC
[05:01:19] *** Bubo has quit IRC
[05:01:35] *** jetpackjoe has joined #angularjs
[05:02:20] <torcs> not understanding how scope works inside an ng-repeat
[05:02:23] *** wonder95 has quit IRC
[05:02:29] <torcs> please see code
[05:02:55] *** storresi has quit IRC
[05:03:08] <torcs> basically an ng-repeat with a div inside. div has an ng-class and an ng-click
[05:03:31] <torcs> when i try to change the class from the click it changes all the ng-repeat elements
[05:03:49] <torcs> not the one in scope
[05:05:38] *** annlewis has joined #angularjs
[05:07:41] *** owenjones has joined #angularjs
[05:08:31] *** b0x has quit IRC
[05:09:08] *** b0x has joined #angularjs
[05:09:23] *** b_rare has quit IRC
[05:09:31] *** b0x has quit IRC
[05:09:43] *** steeze has joined #angularjs
[05:09:54] *** b0x has joined #angularjs
[05:10:31] *** jetpackjoe has quit IRC
[05:12:05] *** cosmo1t has quit IRC
[05:12:24] *** b_rare has joined #angularjs
[05:12:57] *** macabre has quit IRC
[05:13:04] *** owenjones has quit IRC
[05:14:40] *** encryptd_fractal has quit IRC
[05:15:04] *** syzygy_ has quit IRC
[05:15:17] *** jetpackjoe has joined #angularjs
[05:17:39] *** kuadrosx has quit IRC
[05:18:54] *** annlewis has quit IRC
[05:22:25] *** phrozensilver has joined #angularjs
[05:22:37] *** leolrrj has quit IRC
[05:23:10] *** siaw has quit IRC
[05:24:17] <torcs> any thoughts?
[05:24:58] *** juddey has quit IRC
[05:25:13] *** buzzedword has quit IRC
[05:26:17] *** buzzedword has joined #angularjs
[05:29:30] *** shangxiao has quit IRC
[05:30:47] *** siba has joined #angularjs
[05:31:30] *** JamesMGr_ has joined #angularjs
[05:32:20] *** ilmgb has joined #angularjs
[05:32:44] *** raininja has joined #angularjs
[05:33:32] <torcs> oh, i have to use an index by the looks of it
[05:33:46] <torcs> weird when everything else is hidden to the developer
[05:34:43] *** dodobrain has joined #angularjs
[05:36:36] *** doppio|Laptop has joined #angularjs
[05:36:40] *** ilmgb has quit IRC
[05:38:21] *** c1v0 has joined #angularjs
[05:39:23] *** JamesMGr_ has quit IRC
[05:39:35] *** Ugolin has joined #angularjs
[05:41:52] *** steeze has quit IRC
[05:42:29] *** GitGud has joined #angularjs
[05:42:50] *** bengillies has joined #angularjs
[05:43:05] *** eago has joined #angularjs
[05:43:11] *** _eago has joined #angularjs
[05:44:05] *** shangxiao has joined #angularjs
[05:44:14] *** JamesMGr_ has joined #angularjs
[05:44:29] *** codeitloadit has joined #angularjs
[05:46:41] *** syzygy_ has joined #angularjs
[05:46:42] *** siba has quit IRC
[05:47:42] *** bengillies has quit IRC
[05:47:44] *** jae has joined #angularjs
[05:49:53] *** burzum2 has joined #angularjs
[05:50:58] *** burzum has quit IRC
[05:52:14] *** jtimon has quit IRC
[05:54:10] *** jae has left #angularjs
[05:55:59] *** CanyonMan has quit IRC
[05:56:11] *** siba has joined #angularjs
[05:57:00] *** CanyonMan has joined #angularjs
[05:57:40] *** asteele has quit IRC
[05:59:46] *** asteele has joined #angularjs
[06:02:40] *** siba has quit IRC
[06:05:23] *** jetpackjoe has quit IRC
[06:05:37] *** sctskw has joined #angularjs
[06:08:48] *** rchavik has joined #angularjs
[06:09:45] *** skjorrface has quit IRC
[06:09:48] *** MrBaboon has joined #angularjs
[06:10:01] *** siba has joined #angularjs
[06:11:03] *** nilsi has joined #angularjs
[06:12:47] *** p0k0 has joined #angularjs
[06:15:22] *** annlewis has joined #angularjs
[06:16:00] *** encryptd_fractal has joined #angularjs
[06:16:08] *** codeitloadit has quit IRC
[06:17:58] *** thrbrd has joined #angularjs
[06:18:56] *** captainfantastic has joined #angularjs
[06:19:53] <captainfantastic> When I add ui-bootstrap to dependencies to my controllers, my other controllers can't show their partial html. What am I missing?
[06:20:22] *** annlewis has quit IRC
[06:20:25] *** nocturne777 has joined #angularjs
[06:20:26] *** encryptd_fractal has quit IRC
[06:20:37] <thrbrd> Hi, I have a question. I couldn't combine ui-bootstrap datepicker and ui-mask to use. Can I use it? like this "<input type="text" datepicker-popup ui-mask="9999/99/99">"
[06:20:50] *** doppio|Laptop has quit IRC
[06:24:45] *** tubaman has joined #angularjs
[06:29:25] *** Stuffness has joined #angularjs
[06:30:09] *** thrbrd has quit IRC
[06:31:59] *** thirdkni_ has joined #angularjs
[06:33:13] *** ilmgb has joined #angularjs
[06:33:27] *** TyrfingMjolnir has quit IRC
[06:35:53] *** macabre has joined #angularjs
[06:36:02] *** empyreanx has quit IRC
[06:36:29] *** smccarthy has quit IRC
[06:37:27] *** thirdkni_ has quit IRC
[06:37:29] *** sctskw has quit IRC
[06:38:05] *** sctskw has joined #angularjs
[06:38:06] *** ilmgb has quit IRC
[06:38:39] *** torcs has quit IRC
[06:39:46] *** thirdknife has joined #angularjs
[06:40:09] *** Rvats has joined #angularjs
[06:41:42] *** mary5030 has joined #angularjs
[06:42:32] *** sctskw has quit IRC
[06:42:44] *** torcs has joined #angularjs
[06:44:08] *** bengillies has joined #angularjs
[06:44:12] *** kp666 has joined #angularjs
[06:44:21] *** Lzrbeak has joined #angularjs
[06:46:26] *** mary5030 has quit IRC
[06:47:18] *** Laserbeak has quit IRC
[06:47:40] *** FIFOd has quit IRC
[06:47:41] *** jetpackjoe has joined #angularjs
[06:48:29] *** bengillies has quit IRC
[06:50:23] *** JamesMGr_ has quit IRC
[06:50:45] *** JamesMGr_ has joined #angularjs
[06:51:23] *** ringzer0 has joined #angularjs
[06:53:02] *** rho has quit IRC
[06:53:17] *** aubsrey_ has joined #angularjs
[06:56:53] *** captainfantastic has quit IRC
[06:58:23] *** SET001 has joined #angularjs
[07:01:24] *** jetpackjoe has quit IRC
[07:01:26] *** BlinkyBill has quit IRC
[07:03:48] *** buzzedword has quit IRC
[07:05:46] *** Garfield-fr has joined #angularjs
[07:06:12] *** jdo_dk has joined #angularjs
[07:06:55] *** Danielyan has joined #angularjs
[07:07:51] *** JamesMGr_ has quit IRC
[07:08:27] *** thatslif_ has joined #angularjs
[07:08:58] *** Mumpsimus has joined #angularjs
[07:09:26] *** asteele has quit IRC
[07:10:27] *** buzzedword has joined #angularjs
[07:10:47] *** JamesMGr_ has joined #angularjs
[07:11:14] *** thatslifeson has quit IRC
[07:11:58] *** syzygy_ has quit IRC
[07:12:27] *** phrozensilver has quit IRC
[07:13:18] *** Mumpsimus has quit IRC
[07:14:07] *** jetpackjoe has joined #angularjs
[07:15:26] *** buzzedword has quit IRC
[07:15:32] *** tuskkk___ has joined #angularjs
[07:16:07] *** annlewis has joined #angularjs
[07:16:44] *** encryptd_fractal has joined #angularjs
[07:17:18] <tuskkk___> Hello, I have a directive called ckEditor, In the view its been called as, <textarea data-ng-model="editor.value" data-ck-editor></textarea>, now I need to access this ckeditor text (value) at some other div on the same view, how do I do that?
[07:19:14] *** d3m0n has joined #angularjs
[07:21:02] *** annlewis has quit IRC
[07:21:58] *** encryptd_fractal has quit IRC
[07:22:00] *** thatslif_ is now known as thatslifeson
[07:22:07] *** Lzrbeak has quit IRC
[07:22:25] *** Rvats has quit IRC
[07:22:54] *** Lzrbeak has joined #angularjs
[07:25:00] *** uNki has joined #angularjs
[07:25:29] *** JamesMGr_ has quit IRC
[07:27:07] *** jdo_dk has quit IRC
[07:27:14] *** JamesMGr_ has joined #angularjs
[07:29:46] *** JBreit has quit IRC
[07:30:22] *** sbellina has quit IRC
[07:31:11] *** MrBaboon has quit IRC
[07:32:21] *** sbellina has joined #angularjs
[07:33:56] *** ilmgb has joined #angularjs
[07:35:53] *** punknroll has joined #angularjs
[07:36:12] *** sctskw has joined #angularjs
[07:37:20] *** JamesMGr_ has quit IRC
[07:38:24] *** VeeWee has joined #angularjs
[07:38:29] *** ilmgb has quit IRC
[07:38:59] *** fscala has quit IRC
[07:39:45] *** noob_ has joined #angularjs
[07:40:38] <noob_> hello
[07:41:04] <noob_> is there a timeline for the Angular 2.0 release?
[07:41:05] *** jdo_dk has joined #angularjs
[07:41:06] *** eago has quit IRC
[07:41:13] *** fscala has joined #angularjs
[07:41:27] *** spriz_away is now known as spriz
[07:42:12] *** bradgignac has quit IRC
[07:42:32] *** GitGud has quit IRC
[07:43:01] *** soee has joined #angularjs
[07:43:06] *** citizen-stig has joined #angularjs
[07:44:37] *** bengillies has joined #angularjs
[07:44:52] *** Aliks has joined #angularjs
[07:45:59] *** buzzedword has joined #angularjs
[07:47:42] *** noob_ has quit IRC
[07:48:06] *** citizen-stig has quit IRC
[07:48:33] *** eago has joined #angularjs
[07:49:31] *** bengillies has quit IRC
[07:49:58] *** VeeWee has quit IRC
[07:50:34] *** buzzedword has quit IRC
[07:53:04] *** sctskw has quit IRC
[07:53:39] *** sctskw has joined #angularjs
[07:53:40] *** c1v0 has quit IRC
[07:54:00] *** thirdknife has quit IRC
[07:54:07] *** Laserbeak has joined #angularjs
[07:54:11] *** JBreit has joined #angularjs
[07:55:58] *** ahhhndi has joined #angularjs
[07:56:49] *** Lzrbeak has quit IRC
[07:57:55] *** sctskw has quit IRC
[07:59:05] *** ahhhndi has quit IRC
[08:00:15] *** soee has quit IRC
[08:00:32] *** Aliks has quit IRC
[08:01:49] *** diffalot has quit IRC
[08:02:36] *** diffalot has joined #angularjs
[08:03:03] *** buzzedword has joined #angularjs
[08:03:57] *** Aliks has joined #angularjs
[08:06:20] *** MrBaboon has joined #angularjs
[08:06:46] *** owenjones has joined #angularjs
[08:08:10] *** iateadonut has quit IRC
[08:09:13] *** mekhami has joined #angularjs
[08:09:35] *** Danielyan has quit IRC
[08:09:54] *** aslate has joined #angularjs
[08:10:02] *** marthinal has joined #angularjs
[08:10:20] <mekhami> hi folks. I am new to the MEAN stack so I may not be asking the right question here. But I have a single input form. When the user submits their 'code' I want to load the next view which is a form to update their information. I want to get to that second, update view, without putting that code in the URL. how can i pass this code to the second view without using a URL parameter?
[08:10:34] *** junmin has quit IRC
[08:10:34] *** torcs has quit IRC
[08:11:22] *** owenjones has quit IRC
[08:12:51] *** buzzedword has quit IRC
[08:13:15] *** soee has joined #angularjs
[08:14:10] *** Daerist has joined #angularjs
[08:14:42] *** aslate has quit IRC
[08:16:52] *** annlewis has joined #angularjs
[08:18:05] *** siba has quit IRC
[08:18:26] *** shangxiao has quit IRC
[08:19:02] *** brollypop has joined #angularjs
[08:19:12] *** Aliks has quit IRC
[08:21:38] *** ilmgb has joined #angularjs
[08:21:46] *** annlewis has quit IRC
[08:22:58] *** george_v has joined #angularjs
[08:24:34] *** ahaeger has joined #angularjs
[08:25:20] *** uNki has quit IRC
[08:25:20] *** lite_ has joined #angularjs
[08:25:26] *** Firo has joined #angularjs
[08:25:47] *** uNki has joined #angularjs
[08:25:55] *** buzzedword has joined #angularjs
[08:26:07] *** Debnet has joined #angularjs
[08:26:36] *** plekplek has joined #angularjs
[08:27:24] *** jxv has quit IRC
[08:28:07] *** Ugolin has quit IRC
[08:28:47] *** arizzo has joined #angularjs
[08:28:57] *** Ugolin has joined #angularjs
[08:29:07] *** juddey has joined #angularjs
[08:29:10] *** brodul has quit IRC
[08:29:45] *** baweaver has quit IRC
[08:30:12] *** brodul has joined #angularjs
[08:30:26] *** buzzedword has quit IRC
[08:31:18] *** ringzer0 has quit IRC
[08:32:38] *** arizzo has quit IRC
[08:33:07] *** icebox has joined #angularjs
[08:33:14] *** Aliks has joined #angularjs
[08:34:17] *** svycka has joined #angularjs
[08:34:51] *** jetpackjoe has quit IRC
[08:35:19] *** GeertJohan has quit IRC
[08:35:59]
<Firo> ui-router question: I suppose this is by design, but wonder what are the reasons behind this behaviour: when going directly to a child state, why doesn't the parent state's template appear while child state is still resolving? Say I want Baz to appear while bar state is loading, like in this example: https://jsbin.com/zecovowupe/edit?html,js,output
[08:37:22] <Firo> I guess it gets pretty ugly if child state's resolve rejects
[08:37:51] *** spriz is now known as spriz_away
[08:38:49] *** chinchill has quit IRC
[08:40:04] *** JamesMGr_ has joined #angularjs
[08:40:12] *** chinchill has joined #angularjs
[08:40:30] *** umam has quit IRC
[08:40:45] *** JamesMGr_ is now known as JamesMGreeneAway
[08:41:23] *** JamesMGreeneAway has quit IRC
[08:41:26] *** Aliks has quit IRC
[08:41:51] *** buzzedword has joined #angularjs
[08:42:56] *** shangxiao has joined #angularjs
[08:43:15] *** JamesMGr_ has joined #angularjs
[08:44:10] *** erol has joined #angularjs
[08:45:19] *** bengillies has joined #angularjs
[08:46:27] *** buzzedword has quit IRC
[08:49:14] *** cvanball has joined #angularjs
[08:49:32] *** aubsrey_ has quit IRC
[08:49:43] *** compeman has quit IRC
[08:50:09] *** erve has quit IRC
[08:50:11] *** bengillies has quit IRC
[08:50:31] <fleetfox> Firo: ngCloak?
[08:51:06] <fleetfox> rendering template while it's resolving is handy for loaders etc. if you are waiting for network
[08:52:17] *** ahaeger has left #angularjs
[08:52:40] <Firo> Hmmm, I wonder if ngCloak will work with ui-router, gonna try
[08:53:09] *** elton has joined #angularjs
[08:53:12] <Firo> And yeah, I was making a splash screen for yet-to-be-loaded state
[08:53:48] *** Guest30 has joined #angularjs
[08:54:50] *** Guest30 is now known as Duikb00t
[08:54:58] *** tarnus has quit IRC
[08:56:46] *** Ugolin has quit IRC
[08:56:47] <Firo> Nah, no good, since that would require it to be at the root level, and I only want a splash for a certain substate
[08:56:52] *** Ugolin has joined #angularjs
[08:57:12] <Firo> I'll just go with the redirecting approach, it works well, just thought it could be done differently
[09:02:40] *** ahhhndi has joined #angularjs
[09:04:59] *** davonrails has joined #angularjs
[09:05:34] *** juddey has quit IRC
[09:08:01] *** ilmgb has quit IRC
[09:08:30] *** ilmgb has joined #angularjs
[09:08:55] *** JBreit2 has joined #angularjs
[09:09:47] *** ilmgb_ has joined #angularjs
[09:10:49] *** icebox has quit IRC
[09:11:14] *** hohl has joined #angularjs
[09:11:25] *** buzzedword has joined #angularjs
[09:11:29] *** icebox has joined #angularjs
[09:12:23] *** davek has joined #angularjs
[09:12:28] *** JBreit has quit IRC
[09:12:52] *** markfknight has quit IRC
[09:13:03] *** ilmgb has quit IRC
[09:15:25] *** tangorri has joined #angularjs
[09:16:19] *** buzzedword has quit IRC
[09:17:38] *** annlewis has joined #angularjs
[09:18:54] *** eago has quit IRC
[09:19:37] *** encryptd_fractal has joined #angularjs
[09:21:19] *** danielemm has joined #angularjs
[09:21:28] *** juro has joined #angularjs
[09:22:00] *** buzzedword has joined #angularjs
[09:22:22] *** annlewis has quit IRC
[09:23:36] *** juro_ has joined #angularjs
[09:23:38] *** VeeWee has joined #angularjs
[09:24:14] *** encryptd_fractal has quit IRC
[09:24:21] *** juro has quit IRC
[09:24:53] *** vrockai has joined #angularjs
[09:26:35] *** buzzedword has quit IRC
[09:26:51] *** juro_ has quit IRC
[09:27:17] *** mchammer has joined #angularjs
[09:27:18] *** juro has joined #angularjs
[09:27:47] *** aks has joined #angularjs
[09:28:26] *** chinchill has quit IRC
[09:28:33] *** chinchill has joined #angularjs
[09:28:39] *** erms has joined #angularjs
[09:30:20] *** baweaver has joined #angularjs
[09:31:09] *** Sharaal1 has joined #angularjs
[09:31:36] *** okrad has joined #angularjs
[09:31:47] *** citizen-stig has joined #angularjs
[09:33:00] <erms> quit
[09:33:07] *** Sharaal has quit IRC
[09:34:03] *** JD-Robbs has joined #angularjs
[09:35:01] *** erms has quit IRC
[09:35:26] *** baweaver has quit IRC
[09:35:49] *** dob has joined #angularjs
[09:36:12] *** erms has joined #angularjs
[09:36:18] *** citizen-stig has quit IRC
[09:39:01] *** davek has quit IRC
[09:39:35] *** dodobrain has quit IRC
[09:40:44] *** spriz_away is now known as spriz
[09:42:28] *** morfin has joined #angularjs
[09:42:30] <morfin> hello
[09:42:42] *** buzzedword has joined #angularjs
[09:42:52] *** iateadonut has joined #angularjs
[09:43:04] *** aaa has joined #angularjs
[09:43:16] <aaa> join
[09:43:22] * aaa slaps _ds82 around a bit with a large fishbot
[09:43:56] <aaa> WHAT'S THIS
[09:44:06] <aaa> ls
[09:44:11] <aaa> HELP
[09:44:51] *** aaa has left #angularjs
[09:46:03] *** bengillies has joined #angularjs
[09:46:50] <morfin> can new ng- things be defined?
[09:47:17] *** huma has joined #angularjs
[09:47:35] *** buzzedword has quit IRC
[09:50:09] *** sbasso has joined #angularjs
[09:50:34] *** bengillies has quit IRC
[09:50:42] *** iateadonut has quit IRC
[09:53:02] *** citizen-stig has joined #angularjs
[09:53:55] *** elton has quit IRC
[09:54:16] *** fees has joined #angularjs
[09:54:44] *** buzzedword has joined #angularjs
[09:56:05] *** iraj has joined #angularjs
[09:57:40] *** kam270 has joined #angularjs
[09:58:18] *** davonrails_ has joined #angularjs
[09:58:47] *** davonrails has quit IRC
[09:58:47] *** davonrails_ is now known as davonrails
[10:00:24] *** bender314 has joined #angularjs
[10:01:07] *** buzzedword has quit IRC
[10:05:05] *** Hounddog has joined #angularjs
[10:05:07] *** amitev__ has quit IRC
[10:07:06] *** rickmak has quit IRC
[10:07:31] *** nocturne777 has quit IRC
[10:08:58] *** siba has joined #angularjs
[10:09:47] *** Mumpsimus has joined #angularjs
[10:09:50] *** jetpackjoe has joined #angularjs
[10:09:58] *** Hounddog has quit IRC
[10:10:31] *** Hounddog has joined #angularjs
[10:13:09] *** Hounddog has quit IRC
[10:13:28] *** Hounddog has joined #angularjs
[10:13:42] *** siba has quit IRC
[10:14:00] *** Mumpsimus has quit IRC
[10:14:53] *** PeterBooker has joined #angularjs
[10:15:23] <morfin> i mean directives
[10:16:01] <fleetfox> yes
[10:16:11] *** bengillies has joined #angularjs
[10:16:14] <fleetfox> that's what you should be doing
[10:17:24] *** Lzrbeak has joined #angularjs
[10:17:57] *** bchoate has joined #angularjs
[10:18:13] *** GHB has joined #angularjs
[10:18:35] *** annlewis has joined #angularjs
[10:20:11] *** jetpackjoe has quit IRC
[10:20:15] *** Laserbeak has quit IRC
[10:21:03] *** b0x has quit IRC
[10:21:25] <pagios> hello all, <a class="navbar-brand"><img class="img-circle" src="img/main_logo.png"></a> , i would like the main_logo.png to resize automatically to fit in the header bar it is showign abig picture, how can i adjust this accordingly?
[10:21:37] *** b0x has joined #angularjs
[10:22:14] *** GHB_ has joined #angularjs
[10:22:48] *** GHB has quit IRC
[10:23:06] *** annlewis has quit IRC
[10:23:12] *** siba has joined #angularjs
[10:23:24] *** rickmak_ has joined #angularjs
[10:24:04] *** ahhhhndi has joined #angularjs
[10:24:24] *** ahhhndi has quit IRC
[10:24:28] *** speeddragon has quit IRC
[10:24:49] *** cotko has joined #angularjs
[10:26:33] *** uNki has quit IRC
[10:26:39] *** GHB_ has quit IRC
[10:27:02] *** uNki has joined #angularjs
[10:27:16] *** plekplek has quit IRC
[10:27:21] <icebox> pagios: hey... well... this is css question :)
[10:27:58] *** dpicky has joined #angularjs
[10:28:05] *** SomeKittens has quit IRC
[10:30:31] *** Hounddog has quit IRC
[10:30:34] *** mspier has joined #angularjs
[10:31:24] *** wrainbolt has joined #angularjs
[10:31:51] *** pelim has quit IRC
[10:32:29] *** marr has joined #angularjs
[10:33:38] *** Hounddog has joined #angularjs
[10:34:15] *** sbellina has quit IRC
[10:34:22] *** Ilyes512 has joined #angularjs
[10:34:43] *** brollypop has quit IRC
[10:35:02] *** Hounddog has quit IRC
[10:35:08] *** jlebrech has joined #angularjs
[10:35:50] *** jareddlc has joined #angularjs
[10:36:55] *** annlewis has joined #angularjs
[10:37:25] *** jenelizabeth has quit IRC
[10:38:09] *** amitev has joined #angularjs
[10:38:23] *** zeioth has joined #angularjs
[10:39:53] <morfin> fleetfox, what do you mean?
[10:40:34] *** jareddlc has quit IRC
[10:41:10] *** Hounddog has joined #angularjs
[10:42:42] *** ag0rex has joined #angularjs
[10:43:17] *** Hounddog has quit IRC
[10:43:18] <morfin> i do not understand why in example module defined as angular.module('directive', []).directive('contenteditable', function() {...}) but in HTML contentEditable="true"
[10:43:25] *** ag0rex has quit IRC
[10:43:30] <morfin> is that case-insensitive?
[10:43:41] *** ag0rex has joined #angularjs
[10:43:42] *** Hounddog has joined #angularjs
[10:43:54] *** Ilyes512 has quit IRC
[10:44:48] *** nerder has joined #angularjs
[10:46:04] *** annlewis has quit IRC
[10:46:22] *** jenelizabeth_ has joined #angularjs
[10:47:06] *** brollypop has joined #angularjs
[10:48:03] *** Hounddog has quit IRC
[10:48:34] <nerder> Hello guys
[10:49:24] <morfin> ah i saw that ng-model is called ngModel in code
[10:49:47] *** Hounddog has joined #angularjs
[10:49:57] *** liamonade has joined #angularjs
[10:49:59] *** hohl has quit IRC
[10:50:13] <morfin> seems like directives is one of keys
[10:50:27] *** pangareh has quit IRC
[10:52:09] *** elsevero has joined #angularjs
[10:52:12] *** hohl has joined #angularjs
[10:52:30] *** Hounddog has quit IRC
[10:52:47] *** Hounddog has joined #angularjs
[10:52:55] <nerder> you know how to trigger a function of Controller c2 from a Controller c1?
[10:53:16] *** Ilyes512 has joined #angularjs
[10:53:37] *** dszmaj has joined #angularjs
[10:54:08] *** nilsi has quit IRC
[10:54:20] *** thatslifeson has quit IRC
[10:54:27] *** elton has joined #angularjs
[10:54:47] *** b4rb0s4_ has joined #angularjs
[10:55:00] <icebox> nerder: why? use services
[10:55:07] *** nya_ has quit IRC
[10:55:57] *** Hounddog has quit IRC
[10:56:08] *** tarnus has joined #angularjs
[10:56:42] *** Hounddog has joined #angularjs
[10:57:06] <nerder> for instance, i have a nested view where i have a table that have to be initialize with some data taken from the parent view
[10:57:27] <nerder> parent and the child view are managed from 2 different controllers
[10:57:57] *** buzzedword has joined #angularjs
[10:58:12] <nerder> i want to trigger a function from the parent, that set a value and actually call a function on the child controller to reinit the table
[10:58:37] *** nilsi has joined #angularjs
[10:59:26] *** elton has quit IRC
[10:59:52] *** nilsi has quit IRC
[11:00:51] *** tarnus has quit IRC
[11:01:17] *** mischat has joined #angularjs
[11:01:52] *** dpicky has quit IRC
[11:01:57] <nerder> icebox: i guess i already did that
[11:03:10] *** dpicky has joined #angularjs
[11:03:11] *** Hounddog has quit IRC
[11:03:24] <nerder> but the point is that, once the value of type change, i have to call getCategoryListByType() again in order to call the API and refresh the table
[11:03:40] *** b0x has quit IRC
[11:03:57] *** Hounddog has joined #angularjs
[11:04:02] *** SET002 has joined #angularjs
[11:04:12] *** Colintao has joined #angularjs
[11:04:29] <nerder> i was looking into $emit and $on
[11:04:29] *** JamesMGr_ has quit IRC
[11:04:31] <morfin> is not injector just another fancy name for service locator?
[11:04:37] <morfin> hmmm
[11:04:47] <icebox> nerder: the model should be in a service... and you should call a method of the service, changing the model, automatically propagating to the controllers
[11:06:09] *** b0x has joined #angularjs
[11:06:19] *** asteele has joined #angularjs
[11:06:28] <icebox> nerder: events are feasible.... but I see you are using $rootScope... that smells :)... getting going to events doesn't improve the code
[11:06:55] *** buzzedword has quit IRC
[11:07:16] <icebox> nerder: the point is you need to focus on data and changing it accordingly
[11:07:18] *** SET001 has quit IRC
[11:07:25] *** speeddragon has joined #angularjs
[11:07:41] *** Shai-Tan has quit IRC
[11:08:31] <nerder> i see, but i just don't get what you mean by moving the model into a service
[11:08:36] *** dpicky_ has joined #angularjs
[11:09:03] *** m8 has joined #angularjs
[11:09:30] *** mandric has joined #angularjs
[11:09:32] *** dpicky__ has joined #angularjs
[11:09:56] *** iceball has joined #angularjs
[11:09:56] *** dpicky__ has quit IRC
[11:10:20] *** dpicky has quit IRC
[11:10:59] *** dpicky has joined #angularjs
[11:11:14] *** dpicky_ has quit IRC
[11:11:22] *** c00ljs has joined #angularjs
[11:11:28] *** aslate has joined #angularjs
[11:12:41] *** rama_ has joined #angularjs
[11:13:04] *** rama_ is now known as Guest78578
[11:13:05] <icebox> nerder: parent/child state should be in a service, if you need to modify it from the parent or from the child
[11:13:08] <Guest78578> can we include dependence in controller function?
[11:13:12] *** \du has joined #angularjs
[11:13:13] *** \du has joined #angularjs
[11:13:47] <icebox> Guest78578: when you define the controller, you inject the dep, then you can pass that dep to the functions contained in the controller
[11:14:22] *** EdwardIII has joined #angularjs
[11:14:23] *** mrkake has quit IRC
[11:14:25] <Guest78578> Like app.controller('testCtrl',function('angularFileupload'.$scope)
[11:14:42] *** dpicky_ has joined #angularjs
[11:14:43] *** karthik has joined #angularjs
[11:14:48] <EdwardIII> hey, i'm seeing 'Uncaught Error: [$rootScope:infdig] 10 $digest() iterations reached. Aborting!'. i don't see what's causing it in the stack trace. are there any tools to help diagnose this?
[11:15:06] *** karthik is now known as Guest29084
[11:15:23] <morfin> var serviceA = $injector.get('serviceA');
[11:15:33] <morfin> that really looks like service locator
[11:16:06] <icebox> Guest78578: and the syntax is wrong :)
[11:16:07] *** c00ljs has quit IRC
[11:16:09] <morfin> but how DI works in JS not clear for me
[11:16:40] *** Ilyes512 has quit IRC
[11:16:43] *** dpicky has quit IRC
[11:16:43] <Guest29084> may i know what is the main part that i have to concentrate on angular
[11:17:15] *** Colintao has quit IRC
[11:17:17] <Guest78578> Yes wrong , Actually we define like var app = angular.module("app", [ "angularFileUpload"]);
[11:17:36] <icebox> Guest78578: better :)
[11:17:51] <Guest78578> but , is there any possibility to define in controller ?
[11:18:04] *** svycka has quit IRC
[11:18:05] <icebox> Guest78578: now that module provides a few services... and you can inject them... read the docs about that module
[11:18:38] *** ron_frown has quit IRC
[11:18:55] <Guest78578> Can you please suggest multiple image uploading with angular
[11:18:57] <Guest78578> ?
[11:19:09] <Guest78578> one by one
[11:19:16] <Guest78578> multiple image
[11:19:22] <icebox> Guest78578: google is your friend
[11:20:31] *** mrkake has joined #angularjs
[11:21:08] *** nya_ has joined #angularjs
[11:21:12] *** encryptd_fractal has joined #angularjs
[11:21:26] <Guest78578> And this is in another page
[11:21:27] *** svycka has joined #angularjs
[11:21:47] *** zeezey has quit IRC
[11:21:49] <Guest78578> but both are working on angularFileupload dependecy
[11:22:10] <Guest78578> both are conflicted
[11:23:40] *** lmatteis has joined #angularjs
[11:23:55] *** Imaginativeone has joined #angularjs
[11:24:08] *** benjamingr_ has joined #angularjs
[11:25:24]
<jdo_dk> I try to "set" active on current link, but how can my "controller" know the current id ? https://dpaste.de/VbSY
[11:25:34] *** encryptd_fractal has quit IRC
[11:26:23] <jdo_dk> Can i somehow check: return "current.member" = $routeParams or ??
[11:28:52] *** elsevero has quit IRC
[11:29:03] *** zhura has joined #angularjs
[11:29:27] *** Wouter0100 has quit IRC
[11:30:12] *** zhura has left #angularjs
[11:30:51] *** beakman has joined #angularjs
[11:31:11] *** marr has quit IRC
[11:31:15] *** buzzedword has joined #angularjs
[11:32:20] *** syzygy_ has joined #angularjs
[11:32:30] *** brollypop has quit IRC
[11:32:34] *** byge has quit IRC
[11:33:45] *** huma has quit IRC
[11:34:59] *** syzygy_ has quit IRC
[11:36:06] *** Guest78578 has quit IRC
[11:36:13] <jmfcool> jdo_dk: off the top of my head I would try ng-click and try to pass this.id to the event or see if I could grab the target.id.
[11:36:35] *** JD-Robbs has quit IRC
[11:37:15] *** buzzedword has quit IRC
[11:37:21] *** squeakytoy has joined #angularjs
[11:37:55] *** Ilyes512 has joined #angularjs
[11:38:29] *** Alfie has quit IRC
[11:39:37] *** byge has joined #angularjs
[11:39:47] *** weihan has joined #angularjs
[11:40:12] <squeakytoy> Hey all. I am sharing data with services. So I have a "NotificationService", wich basically only contains a list/array. However, items in this lists are removed after 3 seconds after its been added with a setTimeout. Now, if controllers use this array.. how do I start a digest, each time the list has been updated?
[11:41:04] *** moep has joined #angularjs
[11:41:15] *** kk_drop has joined #angularjs
[11:41:48] *** c00ljs has joined #angularjs
[11:42:09] <squeakytoy> i dont really understand how angular solves these kinds of problem
[11:42:36] *** annlewis has joined #angularjs
[11:42:45] <squeakytoy> oh, there is a $timeout, i wonder if that works outside controllers
[11:44:17] *** Ilyes512 has quit IRC
[11:45:10] *** tobias47n9e_ has quit IRC
[11:45:17] *** Shai-Tan has joined #angularjs
[11:45:27] *** brollypop has joined #angularjs
[11:47:10] *** annlewis has quit IRC
[11:47:28] *** egamonal1 has joined #angularjs
[11:48:02] <egamonal1> I'm trying to add a form with bootstrap styles in my project with angular material, but styles are just not there. should I be using this?
[11:49:12] *** Swainey has joined #angularjs
[11:49:53] *** b0x has quit IRC
[11:51:09] *** leolrrj has joined #angularjs
[11:51:21] *** fixl has joined #angularjs
[11:51:42] *** skullcrasher has joined #angularjs
[11:51:46] <Swainey> looking for some advice ? i'm using angular-ui-bootstrap and would like to extend a directive controller to add some additional function i require inside my template. i can access the controller inside a directive in my app via require option, and think i need to use anguar.extends or angular.merge to add my new functions but i can seem to get them to be recognised in the rendered scope. any pointers?
[11:52:31] *** tobias47n9e_ has joined #angularjs
[11:53:14] *** buzzedword has joined #angularjs
[11:53:34] *** fscala has quit IRC
[11:54:05] *** fscala has joined #angularjs
[11:55:27] *** elton has joined #angularjs
[11:55:57] *** arizzo has joined #angularjs
[11:56:44] *** Dogmata has joined #angularjs
[11:56:48] *** spriz is now known as spriz_away
[11:58:15] *** buzzedword has quit IRC
[11:58:56] *** Dogmata has quit IRC
[11:59:14] *** d0gmata has joined #angularjs
[11:59:29] *** speeddragon has quit IRC
[12:00:10] *** arizzo has quit IRC
[12:00:11] *** elton has quit IRC
[12:01:00] *** buzzedword has joined #angularjs
[12:01:25] *** bengillies has quit IRC
[12:01:53] *** speeddragon has joined #angularjs
[12:02:17] *** GitGud has joined #angularjs
[12:03:33] *** Daerist has quit IRC
[12:03:35] *** d3m0n has quit IRC
[12:03:37] *** bengillies has joined #angularjs
[12:04:53] *** miqid has joined #angularjs
[12:05:38] *** erms has quit IRC
[12:05:43] *** buzzedword has quit IRC
[12:07:00] *** siba has quit IRC
[12:09:42] *** Pieplay has joined #angularjs
[12:10:22] *** Schalla has joined #angularjs
[12:10:59] *** otolol has joined #angularjs
[12:11:15] *** marr has joined #angularjs
[12:11:21] *** otolol has quit IRC
[12:12:31] *** erms has joined #angularjs
[12:12:48] *** rickhanlonii has joined #angularjs
[12:13:39] *** iraj has quit IRC
[12:14:59] *** moop has joined #angularjs
[12:15:38] *** thirdknife has joined #angularjs
[12:15:53] <moop> hi guys, a question: how hard would it be to migrate a website from bootstrap to bootsrap-ui/
[12:15:54] <moop> ?
[12:16:26] *** thirdknife has quit IRC
[12:16:43] <moop> i mean supposedly it only replaces the javascript parts of bootstrap, no?
[12:16:58] *** thirdknife has joined #angularjs
[12:17:17] <Pieplay> no idea about ##bootstrap
[12:17:17] *** clivejo has joined #angularjs
[12:20:29] *** plekplek has joined #angularjs
[12:21:55] *** juro has quit IRC
[12:22:14] *** rickhanlonii has quit IRC
[12:22:21] *** juro has joined #angularjs
[12:22:38] *** guilbep has joined #angularjs
[12:22:48] *** rickhanlonii has joined #angularjs
[12:23:06] *** spriz_away is now known as spriz
[12:23:41] <Pieplay> moop It looks like bootstrap-ui just does it like angular, controllers, directives, so it replaces much more
[12:24:53] *** Pieplay has quit IRC
[12:24:54] *** jareddlc has joined #angularjs
[12:26:01] *** rickmak_ has quit IRC
[12:26:03] *** iraj has joined #angularjs
[12:26:48] *** atomicb0mb has joined #angularjs
[12:26:56] *** zick has joined #angularjs
[12:27:04] *** ngbot has joined #angularjs
[12:27:04] <ngbot> angular.js/master 193153c Matias Niemelä: fix(ngAnimate): do not alter the provided options data...
[12:27:04] *** ngbot has left #angularjs
[12:28:17] *** uNki_ has joined #angularjs
[12:28:18] *** uNki has quit IRC
[12:29:31] *** jareddlc has quit IRC
[12:29:37] *** skunkz has joined #angularjs
[12:30:02] *** ngbot has joined #angularjs
[12:30:03] <ngbot> angular.js/v1.4.x 7a81e6f Matias Niemelä: fix(ngAnimate): do not alter the provided options data...
[12:30:04] *** ngbot has left #angularjs
[12:30:46] <egamonal1> moop yes
[12:30:48] *** mcfdez87 has joined #angularjs
[12:31:02] <egamonal1> you should not be using plain bootstrap because it depends on jquery
[12:31:12] <egamonal1> that means that in occasions it might change the DOM without angular noticing
[12:31:27] <egamonal1> the way to keep things consistent is using angular-ui, so that everything is managed with angular
[12:31:31] <egamonal1> you have directives for all components
[12:31:58] <egamonal1> unless you're doing something fancy it should be straight forward. you keep all the grid and just change forms, accordions, etc for the corresponding directives
[12:32:35] <egamonal1> if you have to overwrite css, you can add a file with the specifics and install too bootstrap-sass-official so that you have available all variables to change the theme
[12:32:42] *** rickmak_ has joined #angularjs
[12:35:07] *** mischat__ has joined #angularjs
[12:35:45] <Swainey> thats all working fine, now i want to add some additional functionality to one of the directives
[12:36:00] <moep> Hi icebox btw
[12:36:34] *** buzzedword has joined #angularjs
[12:36:38] <Swainey> which i can get working by edditing the source directive as a POC but want to do it properly by extending so i'm not reliant on my bastardised version of the source
[12:36:38] <egamonal1> hi Swainey, sorry, no idea about that
[12:37:48] <Swainey> it's not really to do with that, i suppose teh question should be... how do i add some of my own functions to a directives controller from a 3rd party / external module
[12:37:54] *** mischat has quit IRC
[12:38:06] <moop> egamonal1: i see, i'll check it out
[12:38:33] <Swainey> cheers for any insights
[12:38:35] *** Pingless_ is now known as Pingless
[12:39:08] <jdo_dk> Can angularjs make something like: {% if user.loggedin "SHOW THIS ITEM" %} ish ?? I want to add an edit button on a list of items, but only if user is logged in.
[12:39:56] <d0gmata> @jdo_dk, have a look at the ng-if directive
[12:40:57] <d0gmata> you'd have a variable in the scope (or injected via a service) for example $scope.isAuthenitcated = true
[12:41:11] *** buzzedword has quit IRC
[12:41:27] <d0gmata> and then do <a href="mylink" ng-if="isAuthenticated">link text </a>
[12:41:31] <jdo_dk> d0gmata. Ok. Will try. thanks
[12:42:29] *** elyssonmr has joined #angularjs
[12:43:34] *** annlewis has joined #angularjs
[12:43:39] *** buzzedword has joined #angularjs
[12:44:39] *** one_zero has quit IRC
[12:46:58] *** rickmak_ has quit IRC
[12:48:04] *** annlewis has quit IRC
[12:49:37] <egamonal1> jdo_dk: keep in mind that the last check should be done in the backend. don't rely on not showing the button for protection
[12:50:03] *** dfcarpenterak has quit IRC
[12:50:04] *** aks has quit IRC
[12:50:23] <jdo_dk> egamonal1: Thanks for heads up.
[12:50:24] <d0gmata> agreed your API end point should also validate the user's id to check if they are allowed to peform the function
[12:50:25] *** elyssonmr has quit IRC
[12:50:42] *** egamonal1 is now known as egamonal
[12:50:58] *** guilbep has quit IRC
[12:51:05] *** Swainey has quit IRC
[12:51:55] *** buzzedword has quit IRC
[12:52:57] *** elyssonmr has joined #angularjs
[12:56:12] *** elton has joined #angularjs
[12:59:32] *** Debnet has quit IRC
[12:59:45] *** floriangosse has joined #angularjs
[12:59:51] *** rchavik has quit IRC
[13:00:18] *** fcanela has quit IRC
[13:02:49] <floriangosse> Hi, has anyone good resources if I develop a large application? I need some inspirations for folder/file structure. I read the article Cliff Meyers but I think that his example is not applicable to real large applications.
[13:03:07] *** ahhhhndi has quit IRC
[13:04:13] *** guilbep has joined #angularjs
[13:04:30] *** tangorri has quit IRC
[13:05:02] *** Ilyes512 has joined #angularjs
[13:05:40] *** erter has joined #angularjs
[13:06:40] *** MrBaboon has quit IRC
[13:06:51] *** shangxiao has quit IRC
[13:06:55] <icebox> floriangosse: code style guide: Todd Modd, John Papa or Minko Gechev
[13:07:01] *** chinchill is now known as Chinchill
[13:07:34] *** m8 has quit IRC
[13:08:24] *** danielemm has quit IRC
[13:08:44] *** Misere has quit IRC
[13:08:50] *** bengilli_ has joined #angularjs
[13:08:58] *** shangxiao has joined #angularjs
[13:09:21] <Chinchill> Hey, i got problem, im using ng-repeat and in child element i have ng-click="go('/editor/{{list._id}}') when i inspect code, it compiles it to correct form, but when i actually click it, my method takes raw argument as var, so alert returns "/editor/{{list._id}}"
[13:09:22] <egamonal> floriangosse: did you see the suggestions from google? they suggest you do vertical cuts (folders per feature , as opposed to the yeoman's file structure that suggests folders for each type of component — one for filters, for services, for controllers, etc)
[13:09:52] *** bengillies has quit IRC
[13:09:59] <floriangosse> I know the styleguides of Todd Motto and John Papa but I need something for file structure not the code style.
[13:10:19] *** erter has quit IRC
[13:10:28] <OnkelTem> I think I've finally solved the issue with tracking the-end-of-render!
[13:10:35] <egamonal> floriangosse: the 2nd link is mentioned in the first and focuses on file structure
[13:10:51] <OnkelTem> READY is printed at the end
[13:11:11] <OnkelTem> whatever you do - open a new page or just change states
[13:12:17] <floriangosse> My files currently structured by features but I need an additional layers/folders because the files are to much.
[13:13:06] *** deeb has joined #angularjs
[13:14:17] <floriangosse> Now I try to use a folder common where I put all my services, directives, etc. and in the application root i want to structure my controllers (which are used for states) in own modules.
[13:15:57] *** juro has quit IRC
[13:16:02] *** mellernoia has joined #angularjs
[13:16:20] *** rickhanl_ has joined #angularjs
[13:16:22] <deeb> anyone? is there a favourite local users management/login npm /project used by most angular users? I am loooking at Auth0 does not handle by it self local users, or am i wrong?
[13:16:28] *** shangxia1 has joined #angularjs
[13:16:31] <floriangosse> Currently I have e.g. a folder which is called auth where all my authentication stuff is located like the authentication service (which handles the login, signup, ...) and my controllers (+ views) of my pages (login page, signup page, password reset, ...). Now I want to split these folders in smaller parts.
[13:17:07] *** shangxiao has quit IRC
[13:17:10] *** fedenunez has joined #angularjs
[13:18:39] *** fixl has quit IRC
[13:19:35] *** wallyk has joined #angularjs
[13:20:00] <Chinchill> anyone have idea about my problem?
[13:20:22] *** rickhanlonii has quit IRC
[13:21:09] <wallyk> Hi, where can I find information about which CSS classes are available, apart from browsing the CSS file?
[13:21:53] *** buzzedword has joined #angularjs
[13:22:25] <floriangosse> Chinchill: try ng-click="go('/editor/' + {{list._id}})
[13:22:52] *** encryptd_fractal has joined #angularjs
[13:22:56] *** logix812 has joined #angularjs
[13:23:07] *** itaipu has joined #angularjs
[13:23:22] <floriangosse> Chinchill: You can use the expression inside a string
[13:23:25] <floriangosse> *can't
[13:23:57] *** CanyonMan has quit IRC
[13:24:43] *** tuskkk___ has quit IRC
[13:24:52] <Chinchill> thank You Floriangosser
[13:24:56] <floriangosse> egamonal: Yes, I think I try to adapt the structure to my application.
[13:25:18] *** mylord has joined #angularjs
[13:25:51] *** HarunTy has joined #angularjs
[13:26:27] *** buzzedword has quit IRC
[13:27:22] *** encryptd_fractal has quit IRC
[13:27:57] <Chinchill> ah floriangosse, we cant use {{}} in expressions aswell, but changing it to ng-click="go('/editor/'+list._id)" worked :)
[13:28:40] <floriangosse> ah that's right :)
[13:28:47] *** uNki_ has quit IRC
[13:29:17] *** uNki has joined #angularjs
[13:30:16] *** speeddragon has quit IRC
[13:30:44] *** elton has quit IRC
[13:30:58] *** ilmgb_ has quit IRC
[13:31:12] *** tangorri has joined #angularjs
[13:31:29] *** jcara has quit IRC
[13:31:29] *** iceball has quit IRC
[13:31:32] *** ilmgb has joined #angularjs
[13:31:38] *** iceball has joined #angularjs
[13:31:44] *** jcara has joined #angularjs
[13:32:02] *** egamonal has quit IRC
[13:33:22] *** egamonal has joined #angularjs
[13:33:52] *** wrainbolt has quit IRC
[13:34:12] *** danielemm has joined #angularjs
[13:34:22] *** mylord has quit IRC
[13:35:38] *** JOE__ has joined #angularjs
[13:35:51] *** nerder has quit IRC
[13:35:56] *** ilmgb has quit IRC
[13:36:05] *** jlebrech has quit IRC
[13:36:35] *** thirdkni_ has joined #angularjs
[13:37:05] *** egamonal has quit IRC
[13:38:06] *** JOE__ has quit IRC
[13:38:06] *** thirdknife has quit IRC
[13:38:22] *** buzzedword has joined #angularjs
[13:38:58] *** prakash1529 has joined #angularjs
[13:39:46] *** prakash1529 has quit IRC
[13:41:54] *** Ilyes512 has quit IRC
[13:42:47] *** quakephil has joined #angularjs
[13:42:50] *** svycka has quit IRC
[13:43:11] *** zz_dimtruck is now known as dimtruck
[13:43:15] *** buzzedword has quit IRC
[13:43:18] *** anhbt has joined #angularjs
[13:43:39] <anhbt> any body here ?
[13:43:48] <squeakytoy> nope
[13:43:55] <anhbt> oop!
[13:44:05] <icebox> floriangosse: if you read those guides, there is also sections about project layout
[13:44:07] *** annlewis has joined #angularjs
[13:44:18] *** zick has quit IRC
[13:46:19] *** anhbt has left #angularjs
[13:48:50] *** annlewis has quit IRC
[13:49:36] *** hohl has quit IRC
[13:50:06] *** Schalla has quit IRC
[13:52:06] *** jlebrech has joined #angularjs
[13:52:41] *** juro has joined #angularjs
[13:53:01] *** krystofurr has joined #angularjs
[13:54:45] *** ilmgb has joined #angularjs
[13:56:52] *** hohl has joined #angularjs
[14:00:12] *** liamonade has quit IRC
[14:00:27] *** tarnus has joined #angularjs
[14:00:44] *** mb has joined #angularjs
[14:00:58] *** liamonade has joined #angularjs
[14:01:07] *** mb is now known as Guest94027
[14:01:15] *** buzzedword has joined #angularjs
[14:01:50] *** Guest94027 has quit IRC
[14:02:14] *** Coldblackice has quit IRC
[14:02:39] *** mischat__ has quit IRC
[14:02:46] *** speeddragon has joined #angularjs
[14:03:47] *** Debnet has joined #angularjs
[14:04:33] *** Shai-Tan has quit IRC
[14:04:54] *** Meow-J has quit IRC
[14:05:39] *** buzzedword has quit IRC
[14:06:08] *** erol has quit IRC
[14:07:02] *** aks has joined #angularjs
[14:07:08] *** brollypop has quit IRC
[14:07:09] *** aks has quit IRC
[14:07:14] *** erol has joined #angularjs
[14:07:24] *** wallyk has quit IRC
[14:07:39] *** tangorri has quit IRC
[14:08:56] *** iceball has quit IRC
[14:09:02] *** senayar has joined #angularjs
[14:09:03] *** senayar has joined #angularjs
[14:09:20] *** iceball has joined #angularjs
[14:09:20] *** fedenunez has quit IRC
[14:09:45] *** aks has joined #angularjs
[14:10:18] *** mylord has joined #angularjs
[14:11:15] *** b4rb0s4_ has quit IRC
[14:13:28] *** sssilver has joined #angularjs
[14:13:40] *** jareddlc has joined #angularjs
[14:13:52] *** iceball has quit IRC
[14:14:10] *** liamonade has quit IRC
[14:14:37] *** floriangosse has left #angularjs
[14:14:52] *** iceball has joined #angularjs
[14:15:04] *** p0k0 has quit IRC
[14:15:11] <Firo> ui-router question: why does a state without url not populate missing param with its default value? When passed in with toParams it gets set with the passed in value. A possible bug?
[14:15:47] <Firo> I guess I should make an online snippet
[14:16:03] <OnkelTem> Firo: good idea
[14:17:43] *** ahhhndi has joined #angularjs
[14:18:15] *** jareddlc has quit IRC
[14:18:46] *** iceball has joined #angularjs
[14:18:55] *** DeoSama has quit IRC
[14:19:18] *** Guest29084 has quit IRC
[14:19:20] *** buzzedword has joined #angularjs
[14:20:40] *** aks has quit IRC
[14:20:43] *** CAPITANOOO has joined #angularjs
[14:21:24] *** jslootbeek has quit IRC
[14:21:31] *** rickhanlonii has joined #angularjs
[14:21:39] *** jslootbeek has joined #angularjs
[14:23:29] *** rickhanl_ has quit IRC
[14:23:30] *** cocao has quit IRC
[14:24:00] *** brollypop has joined #angularjs
[14:25:15] *** buzzedword has quit IRC
[14:25:35] *** iraycohen has joined #angularjs
[14:25:40] *** aks has joined #angularjs
[14:25:41] *** liamonade has joined #angularjs
[14:26:15] *** buzzedword has joined #angularjs
[14:26:49] *** someone235 has joined #angularjs
[14:27:32] *** danielemm has quit IRC
[14:27:39] *** elton has joined #angularjs
[14:28:05] *** kuadrosx has joined #angularjs
[14:28:27] *** bradgignac has joined #angularjs
[14:28:58] *** ahhhndi has quit IRC
[14:29:29] *** uNki has quit IRC
[14:29:43] *** netameta_ has joined #angularjs
[14:29:54] *** uNki has joined #angularjs
[14:30:03] *** tangorri has joined #angularjs
[14:30:51] *** buzzedword has quit IRC
[14:31:38] *** speeddragon has quit IRC
[14:31:44] *** netameta has quit IRC
[14:31:50] *** juro has quit IRC
[14:31:58] *** sssilver_ has joined #angularjs
[14:32:05] *** sssilver has quit IRC
[14:32:17] <Firo> Double invoke can be observed via console
[14:32:42] *** elton has quit IRC
[14:32:56] *** CanyonMan has joined #angularjs
[14:33:49] *** diosney has joined #angularjs
[14:34:43] *** speeddragon has joined #angularjs
[14:34:58] *** sssilver_ has quit IRC
[14:35:01] <icebox> Firo: double ui-view
[14:35:03] *** sssilver has joined #angularjs
[14:35:52] *** fedenunez has joined #angularjs
[14:35:55] *** danielemm has joined #angularjs
[14:36:39] <Firo> Is it, really? It seems like it has something to do with having no url on parent state. And shouldn't the second ui-view simply be used for child states?
[14:36:42] *** ringzer0 has joined #angularjs
[14:36:48] *** F1LT3R has quit IRC
[14:36:56] *** drej has quit IRC
[14:37:02] *** juro has joined #angularjs
[14:37:02] <icebox> Firo: the point the route is called twice :)
[14:37:04] *** codeman has joined #angularjs
[14:37:44] *** sssilver has quit IRC
[14:37:52] *** sssilver_ has joined #angularjs
[14:38:55] *** junmin has joined #angularjs
[14:39:38] *** conan_the_destro has quit IRC
[14:39:42] *** thirdknife has joined #angularjs
[14:39:52] *** ahhhndi has joined #angularjs
[14:40:07] <Firo> And why is that? If that was the case, shouldn't the whole thing render recursively infinitely?
[14:40:11] *** moep has quit IRC
[14:40:49] *** walden|afk is now known as walden
[14:41:03] *** sachin has joined #angularjs
[14:41:13] <Firo> If I simply remove the bar state, the second ui-view simply doesn't render
[14:41:39] *** illume has joined #angularjs
[14:41:48] *** thirdkni_ has quit IRC
[14:42:02] <icebox> Firo: I am afraid you might read nested and multiple views doc in the ui router wiki
[14:42:23] *** sachin has quit IRC
[14:44:22] *** sssilver_ has quit IRC
[14:44:23] *** sssilver has joined #angularjs
[14:44:30] *** illume has quit IRC
[14:44:35] *** wrainbolt has joined #angularjs
[14:44:52] *** annlewis has joined #angularjs
[14:46:54] *** egamonal has joined #angularjs
[14:46:55] *** b4rb0s4_ has joined #angularjs
[14:47:15] *** morfin has left #angularjs
[14:48:04] *** moep has joined #angularjs
[14:48:34] *** lite_ has quit IRC
[14:49:25] *** big|bad|wolf has joined #angularjs
[14:49:36] *** annlewis has quit IRC
[14:50:20] *** buzzedword has joined #angularjs
[14:50:27] *** sssilver has quit IRC
[14:50:33] *** rikkipitt has joined #angularjs
[14:50:37] *** venkat_330 has quit IRC
[14:51:45] *** venkat_330 has joined #angularjs
[14:52:58] *** dimtruck is now known as zz_dimtruck
[14:54:11] *** sssilver has joined #angularjs
[14:54:44] *** buzzedword has quit IRC
[14:58:22] <Firo> What exactly do I have misconceptions about? I already have :\
[14:58:48] *** kp666 has quit IRC
[15:00:24] *** jae has joined #angularjs
[15:00:29] *** elrabin has joined #angularjs
[15:01:06] *** annlewis has joined #angularjs
[15:02:00] <Bish> hey, when using ng-resouce, is there a way to get the headers? except for having an interceptor
[15:02:42] <Bish> if i do resource({},function(a,b)...) b will hold the headers, but that's about to be deprecated
[15:02:50] <Bish> if i do the promise thingy, it doesn't work this way :(
[15:03:07] *** ilmgb has quit IRC
[15:03:45] *** ilmgb has joined #angularjs
[15:04:24] *** zick has joined #angularjs
[15:04:47] *** VeeWee has quit IRC
[15:05:38] *** annlewis has quit IRC
[15:05:41] *** step1step2 has quit IRC
[15:06:23] *** JamesKZO1 is now known as JamesKZOO
[15:06:58] *** dpicky has joined #angularjs
[15:07:36] *** rho has joined #angularjs
[15:07:37] *** rho has joined #angularjs
[15:08:10] *** ilmgb has quit IRC
[15:08:25] *** MrBaboon has joined #angularjs
[15:09:16] *** buzzedword has joined #angularjs
[15:09:33] *** rikkipitt has quit IRC
[15:09:46] <boonkerz> hi
[15:09:58] *** dpicky_ has quit IRC
[15:10:00] <boonkerz> how can i use ng-show with interpolate?
[15:10:22] *** svycka has joined #angularjs
[15:11:03] <icebox> boonkerz: did you try that?
[15:11:34] *** macabre has quit IRC
[15:11:50] *** sssilver has quit IRC
[15:11:51] *** macabre has joined #angularjs
[15:12:45] <boonkerz> yea but it do not work
[15:13:04] <boonkerz> i have also used compile but it causes an error
[15:13:19] *** MrBaboon has quit IRC
[15:13:26] *** svycka has quit IRC
[15:13:47] *** buzzedword has quit IRC
[15:13:58] *** scunc has joined #angularjs
[15:14:38] <icebox> boonkerz: do you mean you tried ng-show="{{checked}}" vs. ng-show="checked"?
[15:16:15] *** italoacasas has joined #angularjs
[15:16:35] *** shangxia1 has quit IRC
[15:17:00] *** Jardayn has joined #angularjs
[15:17:20] *** brollypop has quit IRC
[15:17:40] *** krystofurr has quit IRC
[15:19:12] <boonkerz> i have to create dyncamic infoboxes for google maps marker
[15:19:22] <boonkerz> {{checked}} do also not work
[15:19:24] *** steeze has joined #angularjs
[15:20:24] <icebox> boonkerz: update the model
[15:22:38] *** buzzedword has joined #angularjs
[15:22:58] *** raininja has quit IRC
[15:22:59] *** DJDelusional has joined #angularjs
[15:23:40] *** cmoneylulz has joined #angularjs
[15:24:06] *** cmoneylulz has quit IRC
[15:24:26] <someone235> Hi, is there a way to have an isolated scope in directive and to make the innerhtml use this scope?
[15:24:55] <edulix_> hello: just one question: the $templateCache is global or local to a module?
[15:25:12] *** encryptd_fractal has joined #angularjs
[15:25:15] *** zz_dimtruck is now known as dimtruck
[15:26:00] *** raininja has joined #angularjs
[15:26:01] *** kam270 has quit IRC
[15:26:30] *** netameta__ has joined #angularjs
[15:26:36] *** storresi has joined #angularjs
[15:26:46] *** mutsayu has joined #angularjs
[15:27:18] *** buzzedword has quit IRC
[15:27:49] <icebox> someone235: remove scope
[15:28:07] *** beakman has quit IRC
[15:28:15] *** steeze has quit IRC
[15:28:53] <someone235> icebox, But I need to bind some attributes to it
[15:29:07] *** elton has joined #angularjs
[15:29:15] *** mischat has joined #angularjs
[15:29:31] *** andtorg has joined #angularjs
[15:29:38] *** netameta_ has quit IRC
[15:29:42] *** cocao has joined #angularjs
[15:29:44] *** liamonade has quit IRC
[15:29:51] <mutsayu> I have a .run() function that checks before the route changes to a certain state if the user requires to be logged in or not using the $rootScope.$on('$stateChangeStart') and I have a github service that has the function isAuthenticated. It return true or false, depending on if the user is authenticated but when I do in my $rootScope.$on('$routeChangeStart') this function:
[15:29:53]
<Spot__> The problem is that angular2 + new router want all the parameters (the URL gets like http://server/foo//)
[15:29:54] <mutsayu> GithubService.isAutheenticated(function(access) { authenticated = access }); it isn't updating the variable authenticated I set before I called that function (just by using var)
[15:30:08] *** uNki has quit IRC
[15:30:08] *** zigzagzig has joined #angularjs
[15:30:12] <someone235> davonrails, I think I have a child controller, not? This is what the controller: function()... means, no?
[15:30:31] *** uNki has joined #angularjs
[15:30:58] *** jhirley has joined #angularjs
[15:31:13] <davonrails> someone235: I would have thought this you were inside the main current controller
[15:31:52] <someone235> icebox, I need to get some data (objects) from my attributes. Do you know of a way to do it without scope:{...}?
[15:32:26] *** raininja has quit IRC
[15:33:30] *** zero_coder has joined #angularjs
[15:33:33] <zero_coder> hello.
[15:33:50] *** elton has quit IRC
[15:35:22] *** raininja has joined #angularjs
[15:35:45] <mutsayu> when console.log(authenticated); it outputs undefined
[15:36:29] <icebox> someone235: Directives, by default, inherit their parent’s scope... and scope: {} should isolate the scope
[15:37:25] *** F1LT3R has joined #angularjs
[15:37:38] <someone235> icebox, I don't. In my real life case I bind the controller to the view with $stateProvider. This is just for the example.
[15:38:15] <icebox> someone235: nice... so that article should give you some insights, I hope
[15:38:50] <F1LT3R> is it possible to inject my own service into a config? like: app.confg(function($stateProvider,FooBarService));
[15:39:48] *** rickhanl_ has joined #angularjs
[15:40:01] <someone235> icebox, I'm a big fan of "everything is a directive" idea, but unfortunately, my team isn't, and I have code in an agreed style.
[15:40:02] *** elsevero has joined #angularjs
[15:40:09] *** galileopy has quit IRC
[15:40:25] <someone235> icebox, so if I isolate the scope, is there a way to still use the innerhtml attached to a directive?
[15:40:38] <icebox> F1LT3R: maybe with $injector("myService"); // don't forjet to inject $injector
[15:40:49] <F1LT3R> icebox: ok thanks
[15:40:50] *** netameta__ has quit IRC
[15:41:49] <icebox> someone235: try with scope: true
[15:42:12] *** jtimon has joined #angularjs
[15:42:28] *** F1LT3R has quit IRC
[15:42:39] *** rickhanlonii has quit IRC
[15:44:21] <icebox> someone235: When scope is set to “true”, AngularJS will create a new scope by inheriting parent scope ( usually controller scope, otherwise the application’s rootScope ). Any changes made to this new scope will not reflect back to the parent scope. However, since the new scope is inherited from the parent scope, any changes made in the Ctrl1 ( the parent scope ) will be reflected in the directive scope.
[15:44:38] *** svycka has joined #angularjs
[15:46:04] <icebox> someone235: that should be your use case... the directive changes the isolated scope and the parent controller can pass info
[15:46:22] *** aks has quit IRC
[15:46:40] <icebox> someone235: that is hackish :)
[15:46:47] *** anil has joined #angularjs
[15:46:51] *** plekplek has quit IRC
[15:47:05] *** anil has quit IRC
[15:47:48] <someone235> icebox, yes, but I hate the idea that I'll have to pass data through my parent scope and not through the attributes. It just feels wrong to me..
[15:47:52] *** smccarthy has joined #angularjs
[15:47:56] *** aks has joined #angularjs
[15:49:01] <icebox> someone235: fair enough
[15:49:19] *** andricDu has joined #angularjs
[15:49:29] <someone235> icebox, thank you very much for your help though
[15:49:41] <icebox> someone235: but you need to follow best practice "at some point", otherwise you get and put only more mess :)
[15:50:04] *** CAPITANOOO has quit IRC
[15:50:04] *** italoacasas has quit IRC
[15:50:30] *** dszmaj has quit IRC
[15:51:17] *** dszmaj has joined #angularjs
[15:52:32] *** dimtruck is now known as zz_dimtruck
[15:53:27] *** zick has quit IRC
[15:55:24] *** rikkipitt has joined #angularjs
[15:55:26] *** junmin has quit IRC
[15:55:57] *** buzzedword has joined #angularjs
[15:57:30] *** logix812 has quit IRC
[15:58:37] *** Garfield-fr has quit IRC
[15:58:45] *** xtreamwayz has joined #angularjs
[15:59:02] *** raininja has quit IRC
[16:00:01] *** dman777_alter has joined #angularjs
[16:00:34] *** buzzedword has quit IRC
[16:01:37] *** DJDelusional has quit IRC
[16:01:53] *** annlewis has joined #angularjs
[16:02:27] *** jareddlc has joined #angularjs
[16:02:35] *** buzzedword has joined #angularjs
[16:03:05] *** mrkake has quit IRC
[16:03:19] *** davonrails_ has joined #angularjs
[16:03:31] *** soee has quit IRC
[16:03:39] *** davonrails has quit IRC
[16:03:39] *** davonrails_ is now known as davonrails
[16:03:57] *** jxv has joined #angularjs
[16:04:54] <egamonal> I created a service with "yo material-app:service hsLoginService" but angular can't find it. in index.html the generator added injectors, and it looks like I don't have to add js links manually there. what am I missing?
[16:05:09] <egamonal> "Error: [$injector:unpr] Unknown provider: HsLoginServiceProvider <- HsLoginService <- LoginController"
[16:05:16] *** iceball has quit IRC
[16:05:39] *** davonrails has quit IRC
[16:06:05] *** raininja has joined #angularjs
[16:06:07] *** mven has joined #angularjs
[16:06:19] *** mcfdez87 has quit IRC
[16:06:49] *** buzzedword has quit IRC
[16:06:50] *** jareddlc has quit IRC
[16:06:58] *** annlewis has quit IRC
[16:07:02] *** dob_ has joined #angularjs
[16:07:03] *** edm has joined #angularjs
[16:07:34] *** elrabin has quit IRC
[16:08:16] *** mrkake has joined #angularjs
[16:08:35] *** davonrails has joined #angularjs
[16:09:02] *** elsevero has quit IRC
[16:09:18] *** MrBaboon has joined #angularjs
[16:09:54] *** svycka has quit IRC
[16:10:10] *** mutsayu has quit IRC
[16:10:12] *** dob has quit IRC
[16:10:17] *** aks has quit IRC
[16:10:28] *** heythere has joined #angularjs
[16:10:42] *** miqid has quit IRC
[16:10:48] <heythere> hey there any ideas
[16:11:13] *** Mumpsimus has joined #angularjs
[16:11:27] *** frem has joined #angularjs
[16:12:14] *** elrabin has joined #angularjs
[16:12:22] *** jr3 has joined #angularjs
[16:12:50] *** mandric has quit IRC
[16:13:27] *** nanuko has joined #angularjs
[16:13:55] *** MrBaboon has quit IRC
[16:14:06] *** italoacasas has joined #angularjs
[16:14:31] *** wonder95 has joined #angularjs
[16:14:44] <egamonal> okay apparently the yeoman generator added a suffix "App" to the name of the module that the service I was creating belongs to. nice.
[16:14:52] *** dpicky_ has joined #angularjs
[16:14:53] *** andtorg has quit IRC
[16:14:54] *** juro has quit IRC
[16:14:57] *** erve has joined #angularjs
[16:14:58] *** junmin has joined #angularjs
[16:15:08] *** svycka has joined #angularjs
[16:15:44] *** fnx has joined #angularjs
[16:15:50] *** Mumpsimus has quit IRC
[16:16:51] *** fedenunez has quit IRC
[16:17:23] *** buzzedword has joined #angularjs
[16:17:32] *** iateadonut has joined #angularjs
[16:17:42] *** dpicky has quit IRC
[16:19:03] *** egamonal1 has joined #angularjs
[16:19:08] *** Ir1sh has joined #angularjs
[16:19:18] *** egamonal has quit IRC
[16:19:23] *** big|bad|wolf has quit IRC
[16:19:36] *** Ir1sh has quit IRC
[16:20:13] *** Ir1sh has joined #angularjs
[16:20:42] *** defendguin has joined #angularjs
[16:21:14] *** speeddragon has quit IRC
[16:22:04] *** mandric has joined #angularjs
[16:22:18] *** speeddragon has joined #angularjs
[16:22:53] *** big|bad|wolf has joined #angularjs
[16:23:15] *** soee has joined #angularjs
[16:23:34] *** zz_dimtruck is now known as dimtruck
[16:23:35] *** icebox has quit IRC
[16:24:07] *** elsevero has joined #angularjs
[16:24:22] *** aks has joined #angularjs
[16:25:52] *** elsevero has quit IRC
[16:26:06] *** sssilver has joined #angularjs
[16:26:24] *** buzzedword has quit IRC
[16:27:58] *** raininja has quit IRC
[16:28:22] *** aghiuru has joined #angularjs
[16:28:27] *** buzzedword has joined #angularjs
[16:29:20] *** BahamutWC|Work has quit IRC
[16:29:22] *** aks has joined #angularjs
[16:29:52] *** elton has joined #angularjs
[16:30:09] *** weihan has quit IRC
[16:30:44] *** VaticanCameos has joined #angularjs
[16:30:53] *** steeze has joined #angularjs
[16:30:56] *** dcherman has joined #angularjs
[16:32:10] *** ringzer0 has quit IRC
[16:32:37] <Takumo> Here's an odd question
[16:32:46] <Takumo> I want to include an angular module
[16:33:00] <Takumo> but the functionality it provides is non-essential
[16:33:17] <Takumo> so if that module can't be loaded, I'd just want to continue as normal, rather than have the app fail to initialize
[16:34:06] *** NonBackwards has joined #angularjs
[16:34:26] *** dcherman2 has joined #angularjs
[16:34:37] *** Es0teric has joined #angularjs
[16:34:54] *** ChanServ has quit IRC
[16:34:56] *** mspier has quit IRC
[16:34:56] *** NonBackwards has quit IRC
[16:34:58] *** fscala has quit IRC
[16:34:59] *** e7d has quit IRC
[16:35:00] *** Raven has quit IRC
[16:35:00] *** HansiHE has quit IRC
[16:35:01] *** pcmdt has quit IRC
[16:35:02] *** slo has quit IRC
[16:35:02] *** equilibriumuk has quit IRC
[16:35:03] *** OttoPi has quit IRC
[16:35:03] *** da_wunder has quit IRC
[16:35:04] *** zap has quit IRC
[16:35:05] *** Pagan has quit IRC
[16:35:06] *** joshtau has quit IRC
[16:35:06] *** Chewtoy has quit IRC
[16:35:07] *** Courgette has quit IRC
[16:35:12] *** jae has quit IRC
[16:35:13] *** b4rb0s4_ has quit IRC
[16:35:14] *** wrainbolt has quit IRC
[16:35:14] *** bradgignac has quit IRC
[16:35:15] *** erol has quit IRC
[16:35:17] *** Debnet has quit IRC
[16:35:18] *** someone235 has quit IRC
[16:35:20] *** quakephil has quit IRC
[16:35:21] *** itaipu has quit IRC
[16:35:22] *** bengilli_ has quit IRC
[16:35:22] *** iraj has quit IRC
[16:35:23] *** clivejo has quit IRC
[16:35:23] *** marr has quit IRC
[16:35:25] *** tobias47n9e_ has quit IRC
[16:35:25] *** leolrrj has quit IRC
[16:35:26] *** byge has quit IRC
[16:35:27] *** Imaginativeone has quit IRC
[16:35:27] *** lmatteis has quit IRC
[16:35:28] *** SET002 has quit IRC
[16:35:29] *** amitev has quit IRC
[16:35:30] *** cotko has quit IRC
[16:35:31] *** PeterBooker has quit IRC
[16:35:31] *** sbasso has quit IRC
[16:35:33] *** JBreit2 has quit IRC
[16:35:34] *** Ugolin has quit IRC
[16:35:34] *** Firo has quit IRC
[16:35:35] *** jdo_dk has quit IRC
[16:35:36] *** punknroll has quit IRC
[16:35:36] *** Stuffness has quit IRC
[16:35:38] *** s00pcan has quit IRC
[16:35:40] *** DoubleAW has quit IRC
[16:35:41] *** bcSquared has quit IRC
[16:35:41] *** Kindari has quit IRC
[16:35:42] *** MerlinDMC has quit IRC
[16:35:45] *** cornerman has quit IRC
[16:35:47] *** joshfinnie has quit IRC
[16:35:47] *** HarryHallman has quit IRC
[16:35:48] *** merpnderp has quit IRC
[16:35:48] *** roachiepoopoo has quit IRC
[16:35:49] *** krusty_ar has quit IRC
[16:35:52] *** obbs has quit IRC
[16:35:54] *** rud has quit IRC
[16:35:54] *** Klumben has quit IRC
[16:35:56] *** smtudor has quit IRC
[16:35:56] *** Rojtjo has quit IRC
[16:35:57] *** max_at has quit IRC
[16:35:57] *** Uptime has quit IRC
[16:35:58] *** BackEndCoder has quit IRC
[16:35:59] *** kc3 has quit IRC
[16:35:59] *** elxris has quit IRC
[16:35:59] *** jcool has quit IRC
[16:36:00] *** cj has quit IRC
[16:36:00] *** d10n has quit IRC
[16:36:01] *** kegster has quit IRC
[16:36:02] *** deg has quit IRC
[16:36:03] *** VeggieMeat_ has quit IRC
[16:36:04] *** demi` has quit IRC
[16:36:05] *** Dev0n has quit IRC
[16:36:05] *** simalexan has quit IRC
[16:36:06] *** busticated has quit IRC
[16:36:07] *** cc0_ has quit IRC
[16:36:08] *** rOOb has quit IRC
[16:36:09] *** zol has quit IRC
[16:36:10] *** Christer has quit IRC
[16:36:10] *** Keksike has quit IRC
[16:36:11] *** dcherman2 has quit IRC
[16:36:12] *** dcherman has quit IRC
[16:36:12] *** buzzedword has quit IRC
[16:36:13] *** aghiuru has quit IRC
[16:36:14] *** soee has quit IRC
[16:36:14] *** speeddragon has quit IRC
[16:36:15] *** mandric has quit IRC
[16:36:16] *** svycka has quit IRC
[16:36:16] *** junmin has quit IRC
[16:36:16] *** jr3 has quit IRC
[16:36:17] *** mrkake has quit IRC
[16:36:19] *** andricDu has quit IRC
[16:36:19] *** jtimon has quit IRC
[16:36:20] *** jhirley has quit IRC
[16:36:21] *** rho has quit IRC
[16:36:21] *** moep has quit IRC
[16:36:22] *** ahhhndi has quit IRC
[16:36:22] *** danielemm has quit IRC
[16:36:23] *** diosney has quit IRC
[16:36:23] *** CanyonMan has quit IRC
[16:36:23] *** scunc has quit IRC
[16:36:24] *** kuadrosx has quit IRC
[16:36:24] *** iraycohen has quit IRC
[16:36:25] *** hohl has quit IRC
[16:36:26] *** jlebrech has quit IRC
[16:36:26] *** jcara has quit IRC
[16:36:27] *** mellernoia has quit IRC
[16:36:28] *** elyssonmr has quit IRC
[16:36:28] *** atomicb0mb has quit IRC
[16:36:28] *** c00ljs has quit IRC
[16:36:29] *** squeakytoy has quit IRC
[16:36:30] *** asteele has quit IRC
[16:36:30] *** jenelizabeth_ has quit IRC
[16:36:30] *** ag0rex has quit IRC
[16:36:32] *** citizen-stig has quit IRC
[16:36:33] *** Sharaal1 has quit IRC
[16:36:33] *** Chinchill has quit IRC
[16:36:33] *** Duikb00t has quit IRC
[16:36:34] *** brodul has quit IRC
[16:36:35] *** george_v has quit IRC
[16:36:36] *** burzum2 has quit IRC
[16:36:36] *** b_rare has quit IRC
[16:36:37] *** angularjs_bot has quit IRC
[16:36:38] *** Sna4x8 has quit IRC
[16:36:39] *** IvailoStoianov has quit IRC
[16:36:39] *** ren0v0 has quit IRC
[16:36:40] *** bbarke has quit IRC
[16:36:42] *** digisky has quit IRC
[16:36:43] *** codegenie has quit IRC
[16:36:44] *** goodenough has quit IRC
[16:36:45] *** mikeones has quit IRC
[16:36:46] *** cgfbee has quit IRC
[16:36:48] *** RangerRick has quit IRC
[16:36:50] *** Zerot has quit IRC
[16:36:50] *** amergin has quit IRC
[16:36:51] *** jtymes__ has quit IRC
[16:36:52] *** strohalm has quit IRC
[16:36:52] *** Somatt has quit IRC
[16:36:53] *** medice has quit IRC
[16:36:54] *** fizbani has quit IRC
[16:36:54] *** kajstrom has quit IRC
[16:36:54] *** eparis has quit IRC
[16:36:55] *** oddalot has quit IRC
[16:36:56] *** ajpiano has quit IRC
[16:36:57] *** uly has quit IRC
[16:36:58] *** herme5 has quit IRC
[16:36:59] *** moop has quit IRC
[16:36:59] *** Jaycob has quit IRC
[16:37:02] *** TBSliver has quit IRC
[16:37:02] *** kent\n has quit IRC
[16:37:03] *** Gabriel403 has quit IRC
[16:37:03] *** roo has quit IRC
[16:37:05] *** sporkman_ has quit IRC
[16:37:05] *** Proditor has quit IRC
[16:37:08] *** xiaolin has quit IRC
[16:37:08] *** dmamills has quit IRC
[16:37:09] *** kborchers has quit IRC
[16:37:09] *** Mo0O has quit IRC
[16:37:09] *** suffice has quit IRC
[16:37:11] *** Kehet has quit IRC
[16:37:12] *** david__ has quit IRC
[16:37:12] *** jwanglof has quit IRC
[16:37:13] *** riku has quit IRC
[16:37:13] *** synta has quit IRC
[16:37:14] *** delian66 has quit IRC
[16:37:15] *** emk has quit IRC
[16:37:16] *** patsToms has quit IRC
[16:37:16] *** Helzibah has quit IRC
[16:37:18] *** Pookz has quit IRC
[16:37:20] *** jdorfman has quit IRC
[16:37:21] *** jcstewart has quit IRC
[16:37:22] *** JDorlus has quit IRC
[16:37:22] *** toin0u|away has quit IRC
[16:37:23] *** DrShoggoth has quit IRC
[16:38:29] *** echelog-2 has joined #angularjs
[16:39:10] *** venkat_330 has quit IRC
[16:39:13] *** heythere has quit IRC
[16:39:20] *** jae has joined #angularjs
[16:39:20] *** b4rb0s4_ has joined #angularjs
[16:39:21] *** wrainbolt has joined #angularjs
[16:39:21] *** bradgignac has joined #angularjs
[16:39:21] *** someone235 has joined #angularjs
[16:39:21] *** erol has joined #angularjs
[16:39:21] *** Debnet has joined #angularjs
[16:39:21] *** quakephil has joined #angularjs
[16:39:22] *** itaipu has joined #angularjs
[16:39:22] *** bengilli_ has joined #angularjs
[16:39:22] *** iraj has joined #angularjs
[16:39:22] *** clivejo has joined #angularjs
[16:39:22] *** marr has joined #angularjs
[16:39:22] *** tobias47n9e_ has joined #angularjs
[16:39:23] *** leolrrj has joined #angularjs
[16:39:23] *** byge has joined #angularjs
[16:39:23] *** Imaginativeone has joined #angularjs
[16:39:23] *** lmatteis has joined #angularjs
[16:39:23] *** SET002 has joined #angularjs
[16:39:23] *** amitev has joined #angularjs
[16:39:24] *** cotko has joined #angularjs
[16:39:24] *** PeterBooker has joined #angularjs
[16:39:24] *** sbasso has joined #angularjs
[16:39:24] *** JBreit2 has joined #angularjs
[16:39:24] *** Ugolin has joined #angularjs
[16:39:24] *** Firo has joined #angularjs
[16:39:25] *** jdo_dk has joined #angularjs
[16:39:25] *** punknroll has joined #angularjs
[16:39:25] *** Stuffness has joined #angularjs
[16:39:25] *** s00pcan has joined #angularjs
[16:39:25] *** DoubleAW has joined #angularjs
[16:39:26] *** bcSquared has joined #angularjs
[16:39:26] *** Kindari has joined #angularjs
[16:39:26] *** MerlinDMC has joined #angularjs
[16:39:26] *** cornerman has joined #angularjs
[16:39:26] *** joshfinnie has joined #angularjs
[16:39:27] *** HarryHallman has joined #angularjs
[16:39:27] *** merpnderp has joined #angularjs
[16:39:27] *** roachiepoopoo has joined #angularjs
[16:39:27] *** krusty_ar has joined #angularjs
[16:39:27] *** obbs has joined #angularjs
[16:39:27] *** rud has joined #angularjs
[16:39:28] *** Klumben has joined #angularjs
[16:39:28] *** smtudor has joined #angularjs
[16:39:28] *** Rojtjo has joined #angularjs
[16:39:28] *** max_at has joined #angularjs
[16:39:29] *** Uptime has joined #angularjs
[16:39:29] *** BackEndCoder has joined #angularjs
[16:39:29] *** elxris has joined #angularjs
[16:39:29] *** kc3 has joined #angularjs
[16:39:29] *** jcool has joined #angularjs
[16:39:30] *** cj has joined #angularjs
[16:39:30] *** d10n has joined #angularjs
[16:39:30] *** kegster has joined #angularjs
[16:39:30] *** deg has joined #angularjs
[16:39:30] *** VeggieMeat_ has joined #angularjs
[16:39:31] *** demi` has joined #angularjs
[16:39:31] *** Dev0n has joined #angularjs
[16:39:31] *** simalexan has joined #angularjs
[16:39:31] *** busticated has joined #angularjs
[16:39:32] *** cc0_ has joined #angularjs
[16:39:32] *** rOOb has joined #angularjs
[16:39:32] *** zol has joined #angularjs
[16:39:32] *** Christer has joined #angularjs
[16:39:32] *** Keksike has joined #angularjs
[16:39:36] *** Amnez777 has joined #angularjs
[16:39:45] *** VaticanCameos has joined #angularjs
[16:39:45] *** janez has joined #angularjs
[16:39:45] *** tomaw has joined #angularjs
[16:39:46] *** jcw has joined #angularjs
[16:39:46] *** gcds has joined #angularjs
[16:39:46] *** Pingless has joined #angularjs
[16:39:46] *** tuhoojabotti has joined #angularjs
[16:39:47] *** fleetfox has joined #angularjs
[16:39:47] *** th2389_______ has joined #angularjs
[16:39:47] *** edulix_ has joined #angularjs
[16:39:47] *** kschlesselmann_ has joined #angularjs
[16:39:48] *** romanovic has joined #angularjs
[16:39:48] *** Letze has joined #angularjs
[16:39:48] *** johnkpaul_ has joined #angularjs
[16:39:48] *** alanp_ has joined #angularjs
[16:39:49] *** rikkus has joined #angularjs
[16:39:49] *** soren has joined #angularjs
[16:39:49] *** elijah has joined #angularjs
[16:39:49] *** primepie has joined #angularjs
[16:39:49] *** M-ou-se has joined #angularjs
[16:39:50] *** krisd has joined #angularjs
[16:39:50] *** CaShY has joined #angularjs
[16:39:50] *** rsully has joined #angularjs
[16:39:50] *** andydrew has joined #angularjs
[16:39:51] *** kutenai has joined #angularjs
[16:39:51] *** micalm has joined #angularjs
[16:39:51] *** joepie91_ has joined #angularjs
[16:39:51] *** ekarlso has joined #angularjs
[16:39:52] *** adarshaj has joined #angularjs
[16:39:52] *** Deeewayne has joined #angularjs
[16:39:52] *** Zaran has joined #angularjs
[16:39:52] *** martinbjeldbak has joined #angularjs
[16:39:52] *** prettymuchbryce_ has joined #angularjs
[16:39:53] *** vlcn has joined #angularjs
[16:39:53] *** GuiltyLemon has joined #angularjs
[16:39:53] *** cdracars has joined #angularjs
[16:39:53] *** bradjones has joined #angularjs
[16:39:54] *** nomoremoney_ has joined #angularjs
[16:39:54] *** wizonesolutions has joined #angularjs
[16:39:54] *** jan_oelze___ has joined #angularjs
[16:39:54] *** ikevin_ has joined #angularjs
[16:39:55] *** ish has joined #angularjs
[16:39:55] *** prikk has joined #angularjs
[16:39:55] *** amtiskaw has joined #angularjs
[16:39:55] *** jga_ has joined #angularjs
[16:39:56] *** kweigand_ has joined #angularjs
[16:39:56] *** bc__ has joined #angularjs
[16:39:56] *** restless_being has joined #angularjs
[16:39:56] *** ArTiSTiX_ has joined #angularjs
[16:39:56] *** klobucar has joined #angularjs
[16:39:57] *** tombee has joined #angularjs
[16:39:57] *** wycats has joined #angularjs
[16:39:57] *** gweedo767 has joined #angularjs
[16:39:57] *** bjoops has joined #angularjs
[16:39:58] *** davesidious has joined #angularjs
[16:39:58] *** dboskovic has joined #angularjs
[16:39:58] *** K4j___ has joined #angularjs
[16:39:58] *** raytiley_ has joined #angularjs
[16:39:58] *** Sven_vB has joined #angularjs
[16:39:59] *** barum has joined #angularjs
[16:39:59] *** softinio has joined #angularjs
[16:39:59] *** dgrove has joined #angularjs
[16:40:00] *** Shoffner_____ has joined #angularjs
[16:40:00] *** Kesarr has joined #angularjs
[16:40:00] *** isacloud has joined #angularjs
[16:40:00] *** dance has joined #angularjs
[16:40:01] *** Nebukadneza has joined #angularjs
[16:40:01] *** cspotcode has joined #angularjs
[16:40:01] *** Ownix has joined #angularjs
[16:40:02] *** cynosure has joined #angularjs
[16:40:10] *** twisted` has joined #angularjs
[16:40:12] *** e7d has joined #angularjs
[16:40:12] *** fscala has joined #angularjs
[16:40:12] *** Raven has joined #angularjs
[16:40:12] *** HansiHE has joined #angularjs
[16:40:13] *** pcmdt has joined #angularjs
[16:40:13] *** slo has joined #angularjs
[16:40:13] *** b4rb0s4_ has quit IRC
[16:40:14] *** casf has quit IRC
[16:40:41] *** mspier has joined #angularjs
[16:40:56] *** skullcrasher has joined #angularjs
[16:40:56] *** christo_m has joined #angularjs
[16:40:56] *** verbgarden has joined #angularjs
[16:40:56] *** crusty has joined #angularjs
[16:40:57] *** atomi has joined #angularjs
[16:40:57] *** denisra has joined #angularjs
[16:40:57] *** r0kc4t has joined #angularjs
[16:40:57] *** el2ro has joined #angularjs
[16:40:58] *** Inge- has joined #angularjs
[16:40:58] *** emps has joined #angularjs
[16:40:58] *** torbjorn has joined #angularjs
[16:40:58] *** ninsei has joined #angularjs
[16:40:59] *** craisins_ has joined #angularjs
[16:40:59] *** SexualRickshaw has joined #angularjs
[16:40:59] *** lukegb has joined #angularjs
[16:40:59] *** sekrit has joined #angularjs
[16:41:00] *** Koopz has joined #angularjs
[16:41:00] *** drager has joined #angularjs
[16:41:00] *** rejerson69_ has joined #angularjs
[16:41:01] *** simp has joined #angularjs
[16:41:01] *** canine- has joined #angularjs
[16:41:01] *** cytrinox has joined #angularjs
[16:41:02] *** inoperable has joined #angularjs
[16:41:02] *** zomg has joined #angularjs
[16:41:02] *** titanomachy has joined #angularjs
[16:41:02] *** Guest52957 has joined #angularjs
[16:41:03] *** erry has joined #angularjs
[16:41:03] *** retornam has joined #angularjs
[16:41:03] *** feju_ has joined #angularjs
[16:41:03] *** enlightenmental has joined #angularjs
[16:41:04] *** u0m3_ has joined #angularjs
[16:41:04] *** ulkesh has joined #angularjs
[16:41:04] *** Voltasalt has joined #angularjs
[16:41:04] *** cruxeternus has joined #angularjs
[16:41:05] *** spriz has joined #angularjs
[16:41:05] *** chilversc has joined #angularjs
[16:41:05] *** Ankhers has joined #angularjs
[16:41:05] *** crankharder has joined #angularjs
[16:41:06] *** niko has joined #angularjs
[16:41:06] *** sakustar has joined #angularjs
[16:41:06] *** esko_ has joined #angularjs
[16:41:06] *** kmanning has joined #angularjs
[16:41:06] *** malps13 has joined #angularjs
[16:41:07] *** surfdue has joined #angularjs
[16:41:07] *** Tuxity has joined #angularjs
[16:41:07] *** Bennit_GRR has joined #angularjs
[16:41:07] *** abracadaniel has joined #angularjs
[16:41:08] *** jnylen has joined #angularjs
[16:41:08] *** nkuttler has joined #angularjs
[16:41:08] *** npgm_ has joined #angularjs
[16:41:08] *** teegee543 has joined #angularjs
[16:41:09] *** archon- has joined #angularjs
[16:41:20] *** u0m3_ has quit IRC
[16:41:21] *** jayne has joined #angularjs
[16:41:22] *** GitGud has joined #angularjs
[16:41:22] *** okrad has joined #angularjs
[16:41:23] *** tallsam has joined #angularjs
[16:41:23] *** fullstack has joined #angularjs
[16:41:29] *** cgfbee has joined #angularjs
[16:41:38] *** machty has joined #angularjs
[16:42:20] *** equilibriumuk has joined #angularjs
[16:42:20] *** OttoPi has joined #angularjs
[16:42:20] *** da_wunder has joined #angularjs
[16:42:21] *** zap has joined #angularjs
[16:42:21] *** Courgette has joined #angularjs
[16:42:21] *** Pagan has joined #angularjs
[16:42:21] *** joshtau has joined #angularjs
[16:42:21] *** Chewtoy has joined #angularjs
[16:42:56] *** deepy has joined #angularjs
[16:42:56] *** MadWasp has joined #angularjs
[16:42:57] *** Templarian has joined #angularjs
[16:42:57] *** olli- has joined #angularjs
[16:42:57] *** Eadaro has joined #angularjs
[16:42:57] *** roek has joined #angularjs
[16:42:58] *** Eleeleth has joined #angularjs
[16:42:58] *** moogumbo has joined #angularjs
[16:42:58] *** augustl has joined #angularjs
[16:42:59] *** ETBlue has joined #angularjs
[16:42:59] *** gojira_ has joined #angularjs
[16:42:59] *** JoshNang has joined #angularjs
[16:42:59] *** aendrew has joined #angularjs
[16:43:00] *** glamb has joined #angularjs
[16:43:00] *** kudos has joined #angularjs
[16:43:00] *** fuziontech has joined #angularjs
[16:43:00] *** merlinsbrain has joined #angularjs
[16:43:01] *** felipesabino has joined #angularjs
[16:43:01] *** Brak has joined #angularjs
[16:43:01] *** mickhansen has joined #angularjs
[16:43:01] *** Chepra has joined #angularjs
[16:43:02] *** remysharp has joined #angularjs
[16:43:02] *** kaseoga_ has joined #angularjs
[16:43:02] *** asilluron has joined #angularjs
[16:43:02] *** jpinnix______ has joined #angularjs
[16:43:08] *** deeb has joined #angularjs
[16:43:09] *** iamayam has joined #angularjs
[16:43:09] *** Razerglass has joined #angularjs
[16:43:09] *** AlexejK has joined #angularjs
[16:43:09] *** bacobart has joined #angularjs
[16:43:10] *** nausea has joined #angularjs
[16:43:10] *** MattWelch has joined #angularjs
[16:43:10] *** skakri has joined #angularjs
[16:43:10] *** ASUChander has joined #angularjs
[16:43:11] *** maxkon_ has joined #angularjs
[16:43:11] *** sixr420- has joined #angularjs
[16:43:11] *** atpa8a has joined #angularjs
[16:43:11] *** Johnny- has joined #angularjs
[16:43:12] *** Migs has joined #angularjs
[16:43:12] *** realz has joined #angularjs
[16:43:12] *** Kage has joined #angularjs
[16:43:12] *** caitp has joined #angularjs
[16:43:12] *** Helheim has joined #angularjs
[16:43:12] *** percY- has joined #angularjs
[16:43:13] *** mstypa has joined #angularjs
[16:43:13] *** pepijndevos has joined #angularjs
[16:43:13] *** ki__ has joined #angularjs
[16:43:13] *** xvlcwk has joined #angularjs
[16:43:13] *** _ds82 has joined #angularjs
[16:43:14] *** Blackshark has joined #angularjs
[16:43:14] *** Helheim has quit IRC
[16:44:31] *** zigzagzig has joined #angularjs
[16:44:31] *** codeman has joined #angularjs
[16:44:31] *** bchoate has joined #angularjs
[16:44:32] *** vrockai has joined #angularjs
[16:44:32] *** diffalot has joined #angularjs
[16:44:32] *** corioliss has joined #angularjs
[16:44:33] *** arkin has joined #angularjs
[16:44:33] *** paolo has joined #angularjs
[16:44:33] *** waspinator has joined #angularjs
[16:44:34] *** eshlox has joined #angularjs
[16:44:34] *** tae has joined #angularjs
[16:44:34] *** andersh has joined #angularjs
[16:44:35] *** pudo has joined #angularjs
[16:44:35] *** ludjer has joined #angularjs
[16:44:35] *** daredev has joined #angularjs
[16:44:35] *** lewq has joined #angularjs
[16:44:36] *** daxroc has joined #angularjs
[16:44:36] *** Spot__ has joined #angularjs
[16:44:36] *** clode_____ has joined #angularjs
[16:44:36] *** ManneW has joined #angularjs
[16:44:37] *** tortal has joined #angularjs
[16:44:37] *** tanepiper has joined #angularjs
[16:44:37] *** kwmiebach has joined #angularjs
[16:44:38] *** L42y has joined #angularjs
[16:44:38] *** braderhart has joined #angularjs
[16:44:38] *** joep_ has joined #angularjs
[16:44:38] *** dimtruck has joined #angularjs
[16:44:39] *** henrikbjorn has joined #angularjs
[16:44:39] *** apipkin has joined #angularjs
[16:44:39] *** KnightsOfNi has joined #angularjs
[16:44:39] *** tfnico has joined #angularjs
[16:44:40] *** AphelionZ has joined #angularjs
[16:44:40] *** nribeka has joined #angularjs
[16:44:40] *** NullSoldier_ has joined #angularjs
[16:44:40] *** Immutef has joined #angularjs
[16:44:41] *** Phtes_ has joined #angularjs
[16:44:41] *** lele has joined #angularjs
[16:44:41] *** nyandoge has joined #angularjs
[16:44:41] *** dotty has joined #angularjs
[16:44:42] *** jlyndon has joined #angularjs
[16:44:42] *** snkcld has joined #angularjs
[16:44:42] *** pkraeutli has joined #angularjs
[16:44:42] *** rtucker88 has joined #angularjs
[16:44:43] *** amatecha___ has joined #angularjs
[16:44:43] *** dulax has joined #angularjs
[16:44:43] *** cebor has joined #angularjs
[16:44:43] *** MJD has joined #angularjs
[16:44:44] *** Seich has joined #angularjs
[16:44:44] *** Circlefusion has joined #angularjs
[16:44:44] *** forrestv has joined #angularjs
[16:44:44] *** willeponken has joined #angularjs
[16:44:45] *** iooner has joined #angularjs
[16:44:45] *** Y_Ichiro has joined #angularjs
[16:44:45] *** nil1511 has joined #angularjs
[16:44:45] *** pagios has joined #angularjs
[16:44:46] *** kalz has joined #angularjs
[16:44:46] *** pokk has joined #angularjs
[16:44:46] *** eagles0513875_ has joined #angularjs
[16:44:46] *** anger_ has joined #angularjs
[16:44:47] *** cschneid has joined #angularjs
[16:44:47] *** grantsmith has joined #angularjs
[16:44:47] *** Liam` has joined #angularjs
[16:44:49] *** bayousoft has quit IRC
[16:45:13] *** Firo has quit IRC
[16:45:38] *** ggherdov has joined #angularjs
[16:46:57] *** fizbani has joined #angularjs
[16:46:58] *** steeze has quit IRC
[16:48:12] *** adharris has joined #angularjs
[16:48:19] *** icfantv has joined #angularjs
[16:48:40] *** Edward123 has joined #angularjs
[16:48:47] *** marr has quit IRC
[16:49:36] *** angular_mike__ has joined #angularjs
[16:49:44] *** thirdknife has quit IRC
[16:49:52] *** fedenunez has joined #angularjs
[16:50:13] *** steeze has joined #angularjs
[16:50:14] *** GitGud has quit IRC
[16:50:41] *** Camille_ has joined #angularjs
[16:51:02] *** adharris has quit IRC
[16:51:02] *** patsToms has joined #angularjs
[16:51:27] *** adharris has joined #angularjs
[16:51:50] *** zigzagzig has quit IRC
[16:52:18] *** Bent0_ has joined #angularjs
[16:52:22] *** kajstrom has joined #angularjs
[16:52:23] *** zigzagzig has joined #angularjs
[16:52:34] *** waldenraines has joined #angularjs
[16:52:48] <Camille_> Hello, has this been made with the purpose of asking questions?
[16:53:58] *** steeze has quit IRC
[16:53:59] *** obbs has quit IRC
[16:54:18] *** steeze has joined #angularjs
[16:54:44] *** steeze has quit IRC
[16:55:25] *** dshoreman has joined #angularjs
[16:56:24] *** big|bad|wolf has joined #angularjs
[16:57:04] *** jae has quit IRC
[16:58:59] *** jtymes__ has joined #angularjs
[16:59:14] *** chrisbirk has joined #angularjs
[16:59:22] *** 18VAADPHN has joined #angularjs
[16:59:22] *** idr0p has joined #angularjs
[16:59:22] *** aghiuru_ has joined #angularjs
[16:59:23] *** Helheim has joined #angularjs
[16:59:23] *** kinabalu has joined #angularjs
[16:59:23] *** jrist has joined #angularjs
[16:59:23] *** b_rare has joined #angularjs
[16:59:24] *** g3funk has joined #angularjs
[16:59:24] *** stevenroose has joined #angularjs
[16:59:24] *** renstrm has joined #angularjs
[16:59:24] *** diosney has joined #angularjs
[16:59:25] *** dcherman2 has joined #angularjs
[16:59:25] *** buzzedword has joined #angularjs
[16:59:25] *** mandric has joined #angularjs
[16:59:25] *** mrkake has joined #angularjs
[16:59:26] *** andricDu has joined #angularjs
[16:59:26] *** jtimon has joined #angularjs
[16:59:26] *** jhirley has joined #angularjs
[16:59:26] *** scunc has joined #angularjs
[16:59:27] *** rho has joined #angularjs
[16:59:27] *** moep has joined #angularjs
[16:59:27] *** ahhhndi has joined #angularjs
[16:59:28] *** CanyonMan has joined #angularjs
[16:59:28] *** iraycohen has joined #angularjs
[16:59:28] *** hohl has joined #angularjs
[16:59:28] *** jlebrech has joined #angularjs
[16:59:29] *** jcara has joined #angularjs
[16:59:29] *** mellernoia has joined #angularjs
[16:59:29] *** elyssonmr has joined #angularjs
[16:59:29] *** atomicb0mb has joined #angularjs
[16:59:30] *** moop has joined #angularjs
[16:59:30] *** c00ljs has joined #angularjs
[16:59:30] *** squeakytoy has joined #angularjs
[16:59:31] *** jenelizabeth_ has joined #angularjs
[16:59:31] *** ag0rex has joined #angularjs
[16:59:31] *** citizen-stig has joined #angularjs
[16:59:32] *** Sharaal1 has joined #angularjs
[16:59:32] *** brodul has joined #angularjs
[16:59:32] *** george_v has joined #angularjs
[16:59:33] *** burzum2 has joined #angularjs
[16:59:33] *** angularjs_bot has joined #angularjs
[16:59:33] *** Sna4x8 has joined #angularjs
[16:59:33] *** IvailoStoianov has joined #angularjs
[16:59:34] *** ren0v0 has joined #angularjs
[16:59:34] *** bbarke has joined #angularjs
[16:59:34] *** digisky has joined #angularjs
[16:59:35] *** codegenie has joined #angularjs
[16:59:35] *** goodenough has joined #angularjs
[16:59:35] *** mikeones has joined #angularjs
[16:59:35] *** Zerot has joined #angularjs
[16:59:36] *** strohalm has joined #angularjs
[16:59:36] *** Somatt has joined #angularjs
[16:59:36] *** oddalot has joined #angularjs
[16:59:36] *** ajpiano has joined #angularjs
[16:59:37] *** uly has joined #angularjs
[16:59:37] *** herme5 has joined #angularjs
[16:59:37] *** Jaycob has joined #angularjs
[16:59:38] *** TBSliver has joined #angularjs
[16:59:38] *** kent\n has joined #angularjs
[16:59:38] *** roo has joined #angularjs
[16:59:38] *** Gabriel403 has joined #angularjs
[16:59:39] *** sporkman_ has joined #angularjs
[16:59:39] *** Proditor has joined #angularjs
[16:59:39] *** xiaolin has joined #angularjs
[16:59:39] *** kborchers has joined #angularjs
[16:59:40] *** dmamills has joined #angularjs
[16:59:40] *** Mo0O has joined #angularjs
[16:59:40] *** suffice has joined #angularjs
[16:59:41] *** Kehet has joined #angularjs
[16:59:41] *** david__ has joined #angularjs
[16:59:41] *** jwanglof has joined #angularjs
[16:59:42] *** riku has joined #angularjs
[16:59:42] *** synta has joined #angularjs
[16:59:42] *** delian66 has joined #angularjs
[16:59:43] *** Bish has joined #angularjs
[16:59:43] *** emk has joined #angularjs
[16:59:43] *** Helzibah has joined #angularjs
[16:59:43] *** Pookz has joined #angularjs
[16:59:44] *** jcstewart has joined #angularjs
[16:59:44] *** jdorfman has joined #angularjs
[16:59:44] *** JDorlus has joined #angularjs
[16:59:44] *** toin0u|away has joined #angularjs
[16:59:45] *** DrShoggoth has joined #angularjs
[16:59:45] *** cfloare has joined #angularjs
[16:59:45] *** bd- has joined #angularjs
[16:59:45] *** ianp has joined #angularjs
[16:59:46] *** AciD` has joined #angularjs
[16:59:46] *** boubbin has joined #angularjs
[16:59:46] *** emaz has joined #angularjs
[16:59:47] *** ahel has joined #angularjs
[16:59:47] *** Theowning has joined #angularjs
[17:00:09] *** ahhhndi has quit IRC
[17:02:38] *** annlewis has joined #angularjs
[17:02:49] <adharris> i'm playing with multiple transclusion in 1.5, is being able to transclude multiple elements into the same slot supported/intentional? It appears to be crashing chrome at times
[17:03:10] *** sbasso has quit IRC
[17:05:08] *** eparis has joined #angularjs
[17:06:01] *** Voyage has joined #angularjs
[17:06:18] *** BahamutWC|Work has joined #angularjs
[17:07:34] *** nilsi has joined #angularjs
[17:07:36] *** Amnez777 has quit IRC
[17:07:38] *** annlewis has quit IRC
[17:07:52] *** edrocks has quit IRC
[17:08:22] *** masscrx has joined #angularjs
[17:09:04] *** Amnez777 has joined #angularjs
[17:09:31] *** 18VAADPHN has quit IRC
[17:09:31] *** idr0p has quit IRC
[17:09:32] *** aghiuru_ has quit IRC
[17:09:33] *** Helheim has quit IRC
[17:09:34] *** b_rare has quit IRC
[17:09:35] *** jrist has quit IRC
[17:09:35] *** stevenroose has quit IRC
[17:09:36] *** g3funk has quit IRC
[17:09:37] *** kinabalu has quit IRC
[17:09:38] *** renstrm has quit IRC
[17:09:39] *** diosney has quit IRC
[17:09:40] *** dcherman2 has quit IRC
[17:09:42] *** buzzedword has quit IRC
[17:09:43] *** mandric has quit IRC
[17:09:44] *** mrkake has quit IRC
[17:09:45] *** andricDu has quit IRC
[17:09:46] *** jtimon has quit IRC
[17:09:46] *** jhirley has quit IRC
[17:09:47] *** rho has quit IRC
[17:09:47] *** moep has quit IRC
[17:09:48] *** CanyonMan has quit IRC
[17:09:48] *** scunc has quit IRC
[17:09:49] *** iraycohen has quit IRC
[17:09:50] *** hohl has quit IRC
[17:09:50] *** jlebrech has quit IRC
[17:09:51] *** jcara has quit IRC
[17:09:51] *** mellernoia has quit IRC
[17:09:52] *** elyssonmr has quit IRC
[17:09:53] *** atomicb0mb has quit IRC
[17:09:53] *** c00ljs has quit IRC
[17:09:54] *** squeakytoy has quit IRC
[17:09:55] *** jenelizabeth_ has quit IRC
[17:09:55] *** ag0rex has quit IRC
[17:09:56] *** citizen-stig has quit IRC
[17:09:57] *** Sharaal1 has quit IRC
[17:09:57] *** brodul has quit IRC
[17:09:58] *** george_v has quit IRC
[17:09:59] *** burzum2 has quit IRC
[17:10:00] *** angularjs_bot has quit IRC
[17:10:01] *** Sna4x8 has quit IRC
[17:10:02] *** IvailoStoianov has quit IRC
[17:10:02] *** ren0v0 has quit IRC
[17:10:03] *** bbarke has quit IRC
[17:10:04] *** digisky has quit IRC
[17:10:06] *** codegenie has quit IRC
[17:10:07] *** goodenough has quit IRC
[17:10:07] *** mikeones has quit IRC
[17:10:12] *** Zerot has quit IRC
[17:10:13] *** strohalm has quit IRC
[17:10:14] *** Somatt has quit IRC
[17:10:15] *** oddalot has quit IRC
[17:10:16] *** ajpiano has quit IRC
[17:10:17] *** uly has quit IRC
[17:10:18] *** herme5 has quit IRC
[17:10:19] *** moop has quit IRC
[17:10:19] *** Jaycob has quit IRC
[17:10:21] *** TBSliver has quit IRC
[17:10:22] *** kent\n has quit IRC
[17:10:22] *** Gabriel403 has quit IRC
[17:10:22] *** roo has quit IRC
[17:10:24] *** sporkman_ has quit IRC
[17:10:24] *** Proditor has quit IRC
[17:10:27] *** xiaolin has quit IRC
[17:10:27] *** dmamills has quit IRC
[17:10:28] *** kborchers has quit IRC
[17:10:28] *** Mo0O has quit IRC
[17:10:29] *** suffice has quit IRC
[17:10:30] *** Kehet has quit IRC
[17:10:32] *** david__ has quit IRC
[17:10:32] *** jwanglof has quit IRC
[17:10:33] *** riku has quit IRC
[17:10:34] *** synta has quit IRC
[17:10:35] *** delian66 has quit IRC
[17:10:35] *** emk has quit IRC
[17:10:37] *** Helzibah has quit IRC
[17:10:39] *** Pookz has quit IRC
[17:10:40] *** jdorfman has quit IRC
[17:10:41] *** jcstewart has quit IRC
[17:10:42] *** JDorlus has quit IRC
[17:10:42] *** toin0u|away has quit IRC
[17:10:43] *** DrShoggoth has quit IRC
[17:10:44] *** cfloare has quit IRC
[17:10:45] *** bd- has quit IRC
[17:10:47] *** ianp has quit IRC
[17:10:47] *** AciD` has quit IRC
[17:10:48] *** boubbin has quit IRC
[17:10:49] *** Bish has quit IRC
[17:10:50] *** emaz has quit IRC
[17:10:50] *** ahel has quit IRC
[17:10:51] *** Theowning has quit IRC
[17:10:53] *** Amnez777 has quit IRC
[17:11:51] *** davonrails has quit IRC
[17:13:45] *** Affix_ has joined #angularjs
[17:13:58] <Affix_> hello
[17:14:18] <Affix_> someone can help me with an error?
[17:15:24] *** Affix_ has quit IRC
[17:16:05] <icfantv> Camille_: yes
[17:16:23] <icfantv> adharris: explain please
[17:19:55] *** lihaibh has joined #angularjs
[17:20:33] <adharris> icfantv: i have a directive that contains an input field, and some stock ng-messages, i put <div ng-transclude='messages'> and transclude: {ngMessage: 'messages'} in my directive
[17:20:37] *** mischat has quit IRC
[17:21:14] <icfantv> adharris: what behavior are you trying to accomplish?
[17:21:24] *** ton has joined #angularjs
[17:21:34] <icfantv> is this for an error message below a form field?
[17:22:10] <ton> hello, question about ui-router, what's the difference between using $state and $rootscope?
[17:22:16] *** fedenunez has quit IRC
[17:22:24] *** edrocks has joined #angularjs
[17:22:31] <adharris> yes, but the form field itself is in a directive's template, so the ngMessages directive and the input field are both in my directive template
[17:23:03] *** lihaibh has quit IRC
[17:23:05] <icfantv> adharris: not a problem. quick question: have you looked at formly?
[17:23:23] <icfantv> adharris: lets you create reusable form templates
[17:23:26] *** Voyage has quit IRC
[17:23:50] <icfantv> so you set up the ngMessages once and it's done
[17:24:06] *** h2baik has joined #angularjs
[17:24:07] <icfantv> and lemme check our code - not sure you even need transclude
[17:24:20] <adharris> yes, a while ago, but its a bit different for my use case
[17:25:05] <icfantv> ok. yea, you don't need another transclude
[17:25:10] <icfantv> w/ a formly template
[17:25:22] *** elton has quit IRC
[17:25:29] <adharris> im just trying to figure out if the new multiple transclude allows slots to be filled by more than 1 element
[17:25:45] <icfantv> can you gist the relevant HTML and JS portions? or create a plunker that shows the error?
[17:26:46] <adharris> lemme see, its a lot of code
[17:27:00] <icfantv> when you say multiple transclude, do you mean `transclude: { … }`?
[17:27:37] *** fedenunez has joined #angularjs
[17:27:49] <adharris> ya, new functionality in 1.5 that allows you to transclude different elements into different locations in the directive template
[17:27:51] <icfantv> i.e., the multi-slot transclusion
[17:27:58] <icfantv> ok
[17:28:32] *** ringzer0 has joined #angularjs
[17:28:40] <icfantv> what do you mean by "allow slots to be filled by more than one element?"
[17:29:14] <adharris> like if my directive template is <div ng-transclude='slotName'></div>
[17:29:30] *** morissette has joined #angularjs
[17:29:59] <adharris> and i use that like: <my-directive><slot-element>1</slot-element><slot-element>2</slot-element></my-directive>
[17:30:21] <adharris> it will transclude both elements 1 and 2 into the slot in my template
[17:30:42] *** rmichnik has joined #angularjs
[17:30:50] <adharris> is that intentional and supported or is it undefined behavoir that just happens to work atm?
[17:31:26] *** shinnya has quit IRC
[17:31:35] <icfantv> if i'm reading the docs correctly, and i understand you correctly, then yes
[17:32:23] <icfantv> at the bottom
[17:33:40] <icfantv> `<panel-title>` gets transcluded into the `ng-transclude="title"` <div> whereas `<panel-body>` gets transcluded into the `ng-transclude="body"` <div>
[17:34:56] *** bayousoft has joined #angularjs
[17:34:56] *** steeze has joined #angularjs
[17:34:57] *** thomas has joined #angularjs
[17:34:57] *** sethetter has joined #angularjs
[17:34:57] *** iszak has joined #angularjs
[17:34:57] *** scottalan has joined #angularjs
[17:34:58] *** geekthattweaks has joined #angularjs
[17:34:58] *** rigel has joined #angularjs
[17:34:59] *** aton` has joined #angularjs
[17:34:59] *** comboy has joined #angularjs
[17:34:59] *** boonkerz has joined #angularjs
[17:35:00] *** kstolen has joined #angularjs
[17:35:00] *** DylanJ has joined #angularjs
[17:35:01] *** tompaw has joined #angularjs
[17:35:01] *** pabloh007fcb has joined #angularjs
[17:35:01] *** F^3 has joined #angularjs
[17:35:02] *** G1eb has joined #angularjs
[17:35:02] *** tritian has joined #angularjs
[17:35:02] *** ch3mical has joined #angularjs
[17:35:03] *** Maxxed_ has joined #angularjs
[17:35:03] *** pkiller has joined #angularjs
[17:35:03] *** chovy has joined #angularjs
[17:35:04] *** mst has joined #angularjs
[17:35:04] *** Villae has joined #angularjs
[17:35:04] *** CyBerNetX has joined #angularjs
[17:35:04] *** juancate has joined #angularjs
[17:35:05] *** fold3 has joined #angularjs
[17:35:05] *** eMBee has joined #angularjs
[17:35:05] *** dean|away has joined #angularjs
[17:35:05] *** suspicious_e has joined #angularjs
[17:35:06] *** m_gol has joined #angularjs
[17:35:06] *** Armen has joined #angularjs
[17:35:06] *** matto2 has joined #angularjs
[17:35:07] *** monoprotic has joined #angularjs
[17:35:07] *** Fujk has joined #angularjs
[17:35:07] *** bc_ has joined #angularjs
[17:35:08] *** ubuntu3 has joined #angularjs
[17:35:08] *** DoctorDalek has joined #angularjs
[17:35:08] *** ootje_ has joined #angularjs
[17:35:09] *** __alex has joined #angularjs
[17:35:09] *** D-Boy has joined #angularjs
[17:35:09] *** riot has joined #angularjs
[17:35:09] *** JamesKZOO has joined #angularjs
[17:35:10] *** ekleog has joined #angularjs
[17:35:10] *** trepatud- has joined #angularjs
[17:35:10] *** matthew_r has joined #angularjs
[17:35:10] *** Defcronyke has joined #angularjs
[17:35:11] *** sharpper has joined #angularjs
[17:35:11] *** kadamwhite has joined #angularjs
[17:35:11] *** jbondhus has joined #angularjs
[17:35:12] *** mooncup has joined #angularjs
[17:35:12] *** tbrb has joined #angularjs
[17:35:12] *** tty32 has joined #angularjs
[17:35:12] *** Kussie has joined #angularjs
[17:35:13] *** DeusEx has joined #angularjs
[17:35:13] *** muh-die-kuh has joined #angularjs
[17:35:13] *** contradictioned has joined #angularjs
[17:35:13] *** ngladitz has joined #angularjs
[17:35:14] *** ciawal has joined #angularjs
[17:35:14] *** jaawerth has joined #angularjs
[17:35:14] *** krotscheck has joined #angularjs
[17:35:15] *** fly_boyz has joined #angularjs
[17:35:15] *** davlefou has joined #angularjs
[17:35:15] *** Rutix has joined #angularjs
[17:35:15] *** tumdedum has joined #angularjs
[17:35:16] *** bionikspoon has joined #angularjs
[17:35:16] *** cacts has joined #angularjs
[17:35:16] *** thrillgore has joined #angularjs
[17:35:16] *** _Penguin has joined #angularjs
[17:35:17] *** Shayanjm has joined #angularjs
[17:35:17] *** tubaman has joined #angularjs
[17:35:17] *** marthinal has joined #angularjs
[17:35:17] *** bender314 has joined #angularjs
[17:35:18] *** Lzrbeak has joined #angularjs
[17:35:18] *** zeioth has joined #angularjs
[17:35:18] *** aslate has joined #angularjs
[17:35:18] *** kk_drop has joined #angularjs
[17:35:19] *** erms has joined #angularjs
[17:35:19] *** HarunTy has joined #angularjs
[17:35:19] *** jslootbeek has joined #angularjs
[17:35:20] *** tangorri has joined #angularjs
[17:35:20] *** Jardayn has joined #angularjs
[17:35:20] *** storresi has joined #angularjs
[17:35:21] *** uNki has joined #angularjs
[17:35:21] *** zero_coder has joined #angularjs
[17:35:21] *** xtreamwayz has joined #angularjs
[17:35:21] *** dman777_alter has joined #angularjs
[17:35:22] *** dob_ has joined #angularjs
[17:35:22] *** elrabin has joined #angularjs
[17:35:22] *** nanuko has joined #angularjs
[17:35:22] *** WillMoogle has joined #angularjs
[17:35:23] *** kuadrosx_ has joined #angularjs
[17:35:23] *** PiotrekR has joined #angularjs
[17:35:23] *** mnaser has joined #angularjs
[17:35:23] *** mellernoia has joined #angularjs
[17:35:24] *** zeezey has joined #angularjs
[17:35:24] *** mary5030 has joined #angularjs
[17:35:24] *** andtorg has joined #angularjs
[17:35:24] *** ahhhndi has joined #angularjs
[17:35:25] *** mven has joined #angularjs
[17:35:25] *** phrozensilver has joined #angularjs
[17:35:25] *** 18VAADPHN has joined #angularjs
[17:35:25] *** idr0p has joined #angularjs
[17:35:26] *** aghiuru_ has joined #angularjs
[17:35:26] *** Helheim has joined #angularjs
[17:35:26] *** kinabalu has joined #angularjs
[17:35:26] *** jrist has joined #angularjs
[17:35:27] *** b_rare has joined #angularjs
[17:35:27] *** g3funk has joined #angularjs
[17:35:27] *** stevenroose has joined #angularjs
[17:35:28] *** renstrm has joined #angularjs
[17:35:28] *** diosney has joined #angularjs
[17:35:28] *** dcherman2 has joined #angularjs
[17:35:29] *** buzzedword has joined #angularjs
[17:35:29] *** mandric has joined #angularjs
[17:35:29] *** mrkake has joined #angularjs
[17:35:30] *** andricDu has joined #angularjs
[17:35:30] *** jtimon has joined #angularjs
[17:35:30] *** jhirley has joined #angularjs
[17:35:31] *** scunc has joined #angularjs
[17:35:31] *** rho has joined #angularjs
[17:35:31] *** moep has joined #angularjs
[17:35:32] *** CanyonMan has joined #angularjs
[17:35:32] *** iraycohen has joined #angularjs
[17:35:32] *** hohl has joined #angularjs
[17:35:33] *** jlebrech has joined #angularjs
[17:35:33] *** jcara has joined #angularjs
[17:35:33] *** elyssonmr has joined #angularjs
[17:35:34] *** c00ljs has joined #angularjs
[17:35:34] *** squeakytoy has joined #angularjs
[17:35:34] *** jenelizabeth_ has joined #angularjs
[17:35:34] *** ag0rex has joined #angularjs
[17:35:35] *** citizen-stig has joined #angularjs
[17:35:35] *** Sharaal1 has joined #angularjs
[17:35:35] *** brodul has joined #angularjs
[17:35:35] *** george_v has joined #angularjs
[17:35:36] *** burzum2 has joined #angularjs
[17:35:36] *** angularjs_bot has joined #angularjs
[17:35:36] *** Sna4x8 has joined #angularjs
[17:35:36] *** IvailoStoianov has joined #angularjs
[17:35:37] *** ren0v0 has joined #angularjs
[17:35:37] *** bbarke has joined #angularjs
[17:35:37] *** digisky has joined #angularjs
[17:35:37] *** codegenie has joined #angularjs
[17:35:38] *** goodenough has joined #angularjs
[17:35:38] *** mikeones has joined #angularjs
[17:35:38] *** strohalm has joined #angularjs
[17:35:38] *** Somatt has joined #angularjs
[17:35:39] *** oddalot has joined #angularjs
[17:35:39] *** ajpiano has joined #angularjs
[17:35:39] *** uly has joined #angularjs
[17:35:39] *** herme5 has joined #angularjs
[17:35:40] *** Jaycob has joined #angularjs
[17:35:40] *** TBSliver has joined #angularjs
[17:35:40] *** kent\n has joined #angularjs
[17:35:40] *** roo has joined #angularjs
[17:35:41] *** Gabriel403 has joined #angularjs
[17:35:41] *** sporkman_ has joined #angularjs
[17:35:41] *** Proditor has joined #angularjs
[17:35:41] *** xiaolin has joined #angularjs
[17:35:42] *** kborchers has joined #angularjs
[17:35:42] *** dmamills has joined #angularjs
[17:35:42] *** Mo0O has joined #angularjs
[17:35:42] *** suffice has joined #angularjs
[17:35:43] *** Kehet has joined #angularjs
[17:35:43] *** david__ has joined #angularjs
[17:35:43] *** jwanglof has joined #angularjs
[17:35:43] *** riku has joined #angularjs
[17:35:44] *** synta has joined #angularjs
[17:35:44] *** delian66 has joined #angularjs
[17:35:44] *** Bish has joined #angularjs
[17:35:45] *** emk has joined #angularjs
[17:35:45] *** Helzibah has joined #angularjs
[17:35:45] *** jcstewart has joined #angularjs
[17:35:46] *** jdorfman has joined #angularjs
[17:35:46] *** JDorlus has joined #angularjs
[17:35:46] *** toin0u|away has joined #angularjs
[17:35:46] *** DrShoggoth has joined #angularjs
[17:35:47] *** cfloare has joined #angularjs
[17:35:47] *** bd- has joined #angularjs
[17:35:47] *** ianp has joined #angularjs
[17:35:47] *** AciD` has joined #angularjs
[17:35:48] *** boubbin has joined #angularjs
[17:35:48] *** emaz has joined #angularjs
[17:35:48] *** ahel has joined #angularjs
[17:35:48] *** Theowning has joined #angularjs
[17:36:29] *** morissette has quit IRC
[17:36:29] <adharris> it does transclude both
[17:36:30] <icfantv> it's supposed to clone them, no?
[17:36:31] <adharris> i just didnt see it mentioned in the docs that you could do 2 of the same slot like that
[17:36:31] <icfantv> the transcluded elements
[17:36:32] <icfantv> i don't see why not, why you couldn't
[17:36:32] <icfantv> think if you had used an ng-repeat
[17:36:32] <icfantv> same concept applies
[17:36:53] *** byge has quit IRC
[17:37:31] *** dpicky_ has quit IRC
[17:37:43] <icfantv> one sec, lemme ask one of the angular devs (if he's online atm)
[17:38:04] *** dpicky has joined #angularjs
[17:38:08] *** liamonade has joined #angularjs
[17:38:39] *** Judis has joined #angularjs
[17:39:38] <adharris> icfantv: i agree, it seems like it is doing what it should, i was just trying to make sure
[17:40:27] *** Zerot has joined #angularjs
[17:40:28] <icfantv> you could post a question to SO and tag it to get to a wider audience.
[17:40:46] <egamonal1> do you know when you have a caret down next to your username, to suggest "click here", and a panel is unfolded? kind of a submenu? how do you build that with angular material? I was thinking of adding an md-card but maybe there is something that works out-of-the-box?
[17:40:47] <icfantv> don't enter an issue though - leave that for bugs.
[17:40:47] *** casf has joined #angularjs
[17:41:05] <icfantv> egamonal1: dropdown?
[17:41:55] <icfantv> hmmm, material doesn't have dropdowns as a component
[17:41:58] <egamonal1> I just started with angular material today, but it looks like there is no dropdown class
[17:42:05] *** Judis has quit IRC
[17:42:07] <icfantv> shameless plug, you should look at angular UI bootstrap
[17:42:10] *** VBCanuck has joined #angularjs
[17:42:24] <egamonal1> haha I know, I worked with it last year and it has everything
[17:42:38] *** dpicky has quit IRC
[17:42:39] *** VBCanuck has quit IRC
[17:42:44] <icfantv> well, not _everything_ - just ask our users
[17:43:04] <egamonal1> yeah but I built a frontend without much pain
[17:43:14] <egamonal1> md has an open issue regarding the dropdown menu
[17:43:29] *** b4rb0s4_ has joined #angularjs
[17:43:43] *** stevenroose|BNC has joined #angularjs
[17:43:48] *** renstrm_ has joined #angularjs
[17:44:05] <egamonal1> cool, I can use md-menu
[17:44:40] <icfantv> i was looking at menu
[17:44:41] *** cotko has quit IRC
[17:44:50] *** vell has joined #angularjs
[17:44:52] <icfantv> but it's not really a menu….per se
[17:44:56] *** big|bad|wolf has quit IRC
[17:45:01] *** mary5030 has quit IRC
[17:45:02] *** andtorg has quit IRC
[17:45:03] *** ahhhndi has quit IRC
[17:45:03] *** mven has quit IRC
[17:45:04] *** phrozensilver has quit IRC
[17:45:05] *** 18VAADPHN has quit IRC
[17:45:05] *** idr0p has quit IRC
[17:45:06] *** aghiuru_ has quit IRC
[17:45:06] *** Helheim has quit IRC
[17:45:07] *** b_rare has quit IRC
[17:45:07] *** jrist has quit IRC
[17:45:08] *** stevenroose has quit IRC
[17:45:09] *** g3funk has quit IRC
[17:45:09] *** kinabalu has quit IRC
[17:45:10] *** renstrm has quit IRC
[17:45:11] *** diosney has quit IRC
[17:45:13] *** dcherman2 has quit IRC
[17:45:14] *** buzzedword has quit IRC
[17:45:16] *** mandric has quit IRC
[17:45:17] *** mrkake has quit IRC
[17:45:18] *** andricDu has quit IRC
[17:45:18] *** jtimon has quit IRC
[17:45:19] *** jhirley has quit IRC
[17:45:19] *** rho has quit IRC
[17:45:20] *** moep has quit IRC
[17:45:20] *** CanyonMan has quit IRC
[17:45:21] *** scunc has quit IRC
[17:45:21] *** iraycohen has quit IRC
[17:45:22] *** hohl has quit IRC
[17:45:23] *** jlebrech has quit IRC
[17:45:23] *** jcara has quit IRC
[17:45:24] *** elyssonmr has quit IRC
[17:45:25] *** c00ljs has quit IRC
[17:45:25] *** squeakytoy has quit IRC
[17:45:26] *** jenelizabeth_ has quit IRC
[17:45:26] *** ag0rex has quit IRC
[17:45:27] *** citizen-stig has quit IRC
[17:45:28] *** Sharaal1 has quit IRC
[17:45:28] *** brodul has quit IRC
[17:45:28] *** george_v has quit IRC
[17:45:29] *** burzum2 has quit IRC
[17:45:30] *** angularjs_bot has quit IRC
[17:45:31] *** Sna4x8 has quit IRC
[17:45:32] *** IvailoStoianov has quit IRC
[17:45:32] *** ren0v0 has quit IRC
[17:45:33] *** bbarke has quit IRC
[17:45:34] *** digisky has quit IRC
[17:45:36] *** codegenie has quit IRC
[17:45:36] *** goodenough has quit IRC
[17:45:37] *** mikeones has quit IRC
[17:45:41] *** strohalm has quit IRC
[17:45:41] *** Somatt has quit IRC
[17:45:42] *** oddalot has quit IRC
[17:45:44] *** ajpiano has quit IRC
[17:45:44] *** uly has quit IRC
[17:45:45] *** herme5 has quit IRC
[17:45:46] *** Jaycob has quit IRC
[17:45:48] *** TBSliver has quit IRC
[17:45:48] *** kent\n has quit IRC
[17:45:49] *** Gabriel403 has quit IRC
[17:45:49] *** roo has quit IRC
[17:45:50] *** sporkman_ has quit IRC
[17:45:51] *** Proditor has quit IRC
[17:45:54] *** xiaolin has quit IRC
[17:45:54] *** dmamills has quit IRC
[17:45:55] *** kborchers has quit IRC
[17:45:55] *** Mo0O has quit IRC
[17:45:56] *** suffice has quit IRC
[17:45:57] *** Kehet has quit IRC
[17:45:58] *** david__ has quit IRC
[17:45:59] *** jwanglof has quit IRC
[17:45:59] *** riku has quit IRC
[17:46:00] *** synta has quit IRC
[17:46:01] *** delian66 has quit IRC
[17:46:01] *** emk has quit IRC
[17:46:03] *** Helzibah has quit IRC
[17:46:06] *** jdorfman has quit IRC
[17:46:06] *** jcstewart has quit IRC
[17:46:07] *** JDorlus has quit IRC
[17:46:08] *** toin0u|away has quit IRC
[17:46:08] *** DrShoggoth has quit IRC
[17:46:09] *** cfloare has quit IRC
[17:46:10] *** bd- has quit IRC
[17:46:12] *** ianp has quit IRC
[17:46:12] *** AciD` has quit IRC
[17:46:13] *** boubbin has quit IRC
[17:46:14] *** Bish has quit IRC
[17:46:15] *** emaz has quit IRC
[17:46:15] *** ahel has quit IRC
[17:46:16] *** Theowning has quit IRC
[17:46:17] *** bayousoft has quit IRC
[17:46:18] *** steeze has quit IRC
[17:46:19] *** zeezey has quit IRC
[17:46:19] *** mellernoia has quit IRC
[17:46:20] *** PiotrekR has quit IRC
[17:46:21] *** kuadrosx_ has quit IRC
[17:46:21] *** WillMoogle has quit IRC
[17:46:22] *** mnaser has quit IRC
[17:46:24] *** nanuko has quit IRC
[17:46:25] *** elrabin has quit IRC
[17:46:25] *** dob_ has quit IRC
[17:46:26] *** dman777_alter has quit IRC
[17:46:26] *** xtreamwayz has quit IRC
[17:46:27] *** uNki has quit IRC
[17:46:27] *** storresi has quit IRC
[17:46:28] *** Jardayn has quit IRC
[17:46:29] *** tangorri has quit IRC
[17:46:29] *** jslootbeek has quit IRC
[17:46:31] *** HarunTy has quit IRC
[17:46:31] *** erms has quit IRC
[17:46:32] *** kk_drop has quit IRC
[17:46:32] *** aslate has quit IRC
[17:46:33] *** zeioth has quit IRC
[17:46:33] *** Lzrbeak has quit IRC
[17:46:34] *** bender314 has quit IRC
[17:46:35] *** marthinal has quit IRC
[17:46:37] *** Shayanjm has quit IRC
[17:46:39] *** _Penguin has quit IRC
[17:46:41] *** thrillgore has quit IRC
[17:46:42] *** cacts has quit IRC
[17:46:44] *** bionikspoon has quit IRC
[17:46:45] *** zero_coder has quit IRC
[17:46:46] *** tumdedum has quit IRC
[17:46:47] *** Rutix has quit IRC
[17:46:48] *** davlefou has quit IRC
[17:46:49] *** fly_boyz has quit IRC
[17:46:50] *** krotscheck has quit IRC
[17:46:50] *** jaawerth has quit IRC
[17:46:51] *** ciawal has quit IRC
[17:46:51] *** ngladitz has quit IRC
[17:46:52] *** contradictioned has quit IRC
[17:46:53] *** muh-die-kuh has quit IRC
[17:46:53] *** DeusEx has quit IRC
[17:46:54] *** Kussie has quit IRC
[17:46:56] *** tty32 has quit IRC
[17:46:58] *** tbrb has quit IRC
[17:46:58] *** mooncup has quit IRC
[17:47:00] *** jbondhus has quit IRC
[17:47:00] *** tubaman has quit IRC
[17:47:01] *** kadamwhite has quit IRC
[17:47:02] *** sharpper has quit IRC
[17:47:03] *** Defcronyke has quit IRC
[17:47:05] *** matthew_r has quit IRC
[17:47:05] *** trepatud- has quit IRC
[17:47:06] *** ekleog has quit IRC
[17:47:07] *** JamesKZOO has quit IRC
[17:47:08] *** D-Boy has quit IRC
[17:47:08] *** __alex has quit IRC
[17:47:09] *** ootje_ has quit IRC
[17:47:09] *** DoctorDalek has quit IRC
[17:47:10] *** ubuntu3 has quit IRC
[17:47:10] *** riot has quit IRC
[17:47:11] *** bc_ has quit IRC
[17:47:14] *** Fujk has quit IRC
[17:47:14] *** monoprotic has quit IRC
[17:47:15] *** matto2 has quit IRC
[17:47:15] *** Armen has quit IRC
[17:47:17] *** m_gol has quit IRC
[17:47:17] *** suspicious_e has quit IRC
[17:47:18] *** dean|away has quit IRC
[17:47:18] *** eMBee has quit IRC
[17:47:18] *** fold3 has quit IRC
[17:47:20] *** juancate has quit IRC
[17:47:21] *** CyBerNetX has quit IRC
[17:47:21] *** Villae has quit IRC
[17:47:23] *** mst has quit IRC
[17:47:24] *** pkiller has quit IRC
[17:47:26] *** Maxxed_ has quit IRC
[17:47:26] *** ch3mical has quit IRC
[17:47:28] *** chovy has quit IRC
[17:47:29] *** G1eb has quit IRC
[17:47:30] *** F^3 has quit IRC
[17:47:30] *** pabloh007fcb has quit IRC
[17:47:31] *** tritian has quit IRC
[17:47:32] *** DylanJ has quit IRC
[17:47:33] *** kstolen has quit IRC
[17:47:33] *** boonkerz has quit IRC
[17:47:33] *** comboy has quit IRC
[17:47:34] *** tompaw has quit IRC
[17:47:34] *** aton` has quit IRC
[17:47:35] *** rigel has quit IRC
[17:47:35] *** geekthattweaks has quit IRC
[17:47:35] *** scottalan has quit IRC
[17:47:36] *** iszak has quit IRC
[17:47:37] *** sethetter has quit IRC
[17:47:38] *** thomas has quit IRC
[17:47:39] *** codeman has quit IRC
[17:47:40] <icfantv> adharris: i think the multi-slot is really just an extension of having multiple ng-transcludes present in a normal tempalte
[17:47:41] <icfantv> *regular template
[17:47:52] *** moop has joined #angularjs
[17:48:45] *** CptClever has joined #angularjs
[17:48:45] *** medice has joined #angularjs
[17:48:46] *** mary5030_ has joined #angularjs
[17:48:46] *** junmin has joined #angularjs
[17:48:46] *** steeze has joined #angularjs
[17:48:46] *** turbolihis has joined #angularjs
[17:48:47] *** Sky[x] has joined #angularjs
[17:48:47] *** bayousoft has joined #angularjs
[17:48:47] *** Theowning has joined #angularjs
[17:48:47] *** ahel has joined #angularjs
[17:48:48] *** emaz has joined #angularjs
[17:48:48] *** boubbin has joined #angularjs
[17:48:48] *** AciD` has joined #angularjs
[17:48:48] *** ianp has joined #angularjs
[17:48:49] *** bd- has joined #angularjs
[17:48:49] *** cfloare has joined #angularjs
[17:48:49] *** DrShoggoth has joined #angularjs
[17:48:49] *** toin0u|away has joined #angularjs
[17:48:50] *** JDorlus has joined #angularjs
[17:48:50] *** jdorfman has joined #angularjs
[17:48:50] *** jcstewart has joined #angularjs
[17:48:50] *** Helzibah has joined #angularjs
[17:48:51] *** emk has joined #angularjs
[17:48:51] *** Bish has joined #angularjs
[17:48:51] *** delian66 has joined #angularjs
[17:48:52] *** synta has joined #angularjs
[17:48:52] *** riku has joined #angularjs
[17:48:52] *** jwanglof has joined #angularjs
[17:48:53] *** david__ has joined #angularjs
[17:48:53] *** Kehet has joined #angularjs
[17:48:53] *** suffice has joined #angularjs
[17:48:54] *** Mo0O has joined #angularjs
[17:48:54] *** dmamills has joined #angularjs
[17:48:54] *** kborchers has joined #angularjs
[17:48:55] *** xiaolin has joined #angularjs
[17:48:55] *** Proditor has joined #angularjs
[17:48:55] *** sporkman_ has joined #angularjs
[17:48:56] *** Gabriel403 has joined #angularjs
[17:48:56] *** roo has joined #angularjs
[17:48:56] *** kent\n has joined #angularjs
[17:48:56] *** TBSliver has joined #angularjs
[17:48:57] *** Jaycob has joined #angularjs
[17:48:57] *** herme5 has joined #angularjs
[17:48:57] *** uly has joined #angularjs
[17:48:58] *** ajpiano has joined #angularjs
[17:48:58] *** oddalot has joined #angularjs
[17:48:58] *** Somatt has joined #angularjs
[17:48:59] *** strohalm has joined #angularjs
[17:48:59] *** mikeones has joined #angularjs
[17:48:59] *** goodenough has joined #angularjs
[17:48:59] *** codegenie has joined #angularjs
[17:49:00] *** digisky has joined #angularjs
[17:49:00] *** bbarke has joined #angularjs
[17:49:00] *** ren0v0 has joined #angularjs
[17:49:00] *** IvailoStoianov has joined #angularjs
[17:49:01] *** Sna4x8 has joined #angularjs
[17:49:01] *** angularjs_bot has joined #angularjs
[17:49:01] *** burzum2 has joined #angularjs
[17:49:01] *** brodul has joined #angularjs
[17:49:02] *** Sharaal1 has joined #angularjs
[17:49:02] *** citizen-stig has joined #angularjs
[17:49:02] *** ag0rex has joined #angularjs
[17:49:02] *** jenelizabeth_ has joined #angularjs
[17:49:03] *** squeakytoy has joined #angularjs
[17:49:03] *** c00ljs has joined #angularjs
[17:49:03] *** elyssonmr has joined #angularjs
[17:49:03] *** jlebrech has joined #angularjs
[17:49:04] *** hohl has joined #angularjs
[17:49:04] *** iraycohen has joined #angularjs
[17:49:04] *** CanyonMan has joined #angularjs
[17:49:05] *** moep has joined #angularjs
[17:49:05] *** rho has joined #angularjs
[17:49:05] *** jhirley has joined #angularjs
[17:49:05] *** jtimon has joined #angularjs
[17:49:06] *** andricDu has joined #angularjs
[17:49:06] *** mrkake has joined #angularjs
[17:49:06] *** mandric has joined #angularjs
[17:49:06] *** buzzedword has joined #angularjs
[17:49:07] *** dcherman2 has joined #angularjs
[17:49:07] *** diosney has joined #angularjs
[17:49:07] *** g3funk has joined #angularjs
[17:49:07] *** b_rare has joined #angularjs
[17:49:08] *** jrist has joined #angularjs
[17:49:08] *** kinabalu has joined #angularjs
[17:49:08] *** Helheim has joined #angularjs
[17:49:08] *** aghiuru_ has joined #angularjs
[17:49:09] *** idr0p has joined #angularjs
[17:49:09] *** phrozensilver has joined #angularjs
[17:49:09] *** mven has joined #angularjs
[17:49:09] *** ahhhndi has joined #angularjs
[17:49:10] *** andtorg has joined #angularjs
[17:49:10] *** zeezey has joined #angularjs
[17:49:10] *** mellernoia has joined #angularjs
[17:49:10] *** mnaser has joined #angularjs
[17:49:11] *** PiotrekR has joined #angularjs
[17:49:11] *** kuadrosx_ has joined #angularjs
[17:49:11] *** WillMoogle has joined #angularjs
[17:49:11] *** nanuko has joined #angularjs
[17:49:12] *** elrabin has joined #angularjs
[17:49:12] *** dob_ has joined #angularjs
[17:49:12] *** dman777_alter has joined #angularjs
[17:49:13] *** xtreamwayz has joined #angularjs
[17:49:13] *** zero_coder has joined #angularjs
[17:49:13] *** uNki has joined #angularjs
[17:49:14] *** storresi has joined #angularjs
[17:49:14] *** tangorri has joined #angularjs
[17:49:14] *** jslootbeek has joined #angularjs
[17:49:14] *** HarunTy has joined #angularjs
[17:49:15] *** erms has joined #angularjs
[17:49:15] *** kk_drop has joined #angularjs
[17:49:15] *** aslate has joined #angularjs
[17:49:15] *** zeioth has joined #angularjs
[17:49:16] *** Lzrbeak has joined #angularjs
[17:49:16] *** bender314 has joined #angularjs
[17:49:16] *** marthinal has joined #angularjs
[17:49:16] *** tubaman has joined #angularjs
[17:49:22] *** Shayanjm has joined #angularjs
[17:49:22] *** _Penguin has joined #angularjs
[17:49:22] *** thrillgore has joined #angularjs
[17:49:23] *** cacts has joined #angularjs
[17:49:23] *** bionikspoon has joined #angularjs
[17:49:23] *** tumdedum has joined #angularjs
[17:49:23] *** Rutix has joined #angularjs
[17:49:24] *** davlefou has joined #angularjs
[17:49:24] *** fly_boyz has joined #angularjs
[17:49:24] *** krotscheck has joined #angularjs
[17:49:25] *** jaawerth has joined #angularjs
[17:49:25] *** ciawal has joined #angularjs
[17:49:25] *** ngladitz has joined #angularjs
[17:49:25] *** contradictioned has joined #angularjs
[17:49:26] *** muh-die-kuh has joined #angularjs
[17:49:26] *** DeusEx has joined #angularjs
[17:49:26] *** Kussie has joined #angularjs
[17:49:27] *** tty32 has joined #angularjs
[17:49:27] *** tbrb has joined #angularjs
[17:49:27] *** mooncup has joined #angularjs
[17:49:27] *** jbondhus has joined #angularjs
[17:49:28] *** kadamwhite has joined #angularjs
[17:49:28] *** sharpper has joined #angularjs
[17:49:28] *** Defcronyke has joined #angularjs
[17:49:28] *** matthew_r has joined #angularjs
[17:49:29] *** trepatud- has joined #angularjs
[17:49:29] *** ekleog has joined #angularjs
[17:49:29] *** JamesKZOO has joined #angularjs
[17:49:30] *** riot has joined #angularjs
[17:49:30] *** D-Boy has joined #angularjs
[17:49:30] *** __alex has joined #angularjs
[17:49:31] *** ootje_ has joined #angularjs
[17:49:31] *** DoctorDalek has joined #angularjs
[17:49:31] *** ubuntu3 has joined #angularjs
[17:49:31] *** bc_ has joined #angularjs
[17:49:32] *** Fujk has joined #angularjs
[17:49:32] *** monoprotic has joined #angularjs
[17:49:32] *** matto2 has joined #angularjs
[17:49:32] *** Armen has joined #angularjs
[17:49:33] *** m_gol has joined #angularjs
[17:49:33] *** suspicious_e has joined #angularjs
[17:49:33] *** dean|away has joined #angularjs
[17:49:33] *** eMBee has joined #angularjs
[17:49:34] *** fold3 has joined #angularjs
[17:49:34] *** juancate has joined #angularjs
[17:49:34] *** CyBerNetX has joined #angularjs
[17:49:34] *** Villae has joined #angularjs
[17:49:35] *** mst has joined #angularjs
[17:49:35] *** chovy has joined #angularjs
[17:49:35] *** pkiller has joined #angularjs
[17:49:35] *** Maxxed_ has joined #angularjs
[17:49:36] *** ch3mical has joined #angularjs
[17:49:36] *** tritian has joined #angularjs
[17:49:36] *** G1eb has joined #angularjs
[17:49:37] *** F^3 has joined #angularjs
[17:49:37] *** pabloh007fcb has joined #angularjs
[17:49:37] *** tompaw has joined #angularjs
[17:49:37] *** DylanJ has joined #angularjs
[17:49:38] *** kstolen has joined #angularjs
[17:49:38] *** boonkerz has joined #angularjs
[17:49:38] *** comboy has joined #angularjs
[17:49:38] *** aton` has joined #angularjs
[17:49:39] *** rigel has joined #angularjs
[17:49:39] *** geekthattweaks has joined #angularjs
[17:49:39] *** scottalan has joined #angularjs
[17:49:39] *** iszak has joined #angularjs
[17:49:40] *** sethetter has joined #angularjs
[17:49:40] *** thomas has joined #angularjs
[17:49:40] *** mary5030_ has quit IRC
[17:49:41] *** buzzedword has quit IRC
[17:49:41] *** b4rb0s4_ has quit IRC
[17:49:41] *** machty has quit IRC
[17:49:42] *** machty has joined #angularjs
[17:49:42] *** twisted` has quit IRC
[17:49:42] *** twisted` has joined #angularjs
[17:49:43] *** angular_mike__ has quit IRC
[17:49:43] *** angular_mike__ has joined #angularjs
[17:49:44] *** ggherdov has quit IRC
[17:49:44] *** ggherdov has joined #angularjs
[17:49:45] *** spaceonline has joined #angularjs
[17:49:45] <vell> hello all. I am new to angular. I am curious if anyone knows of any tutorials on how to set up my environment so that I can write angular code in coffeescript. I see tutorials that show the code in coffeescript but none of them actually show how the implemented their enviroment to work with coffeescript.
[17:49:46] <ton> use type script
[17:49:46] *** kuadrosx_ has quit IRC
[17:49:47] *** Shayanjm has quit IRC
[17:49:49] *** Camille_ has quit IRC
[17:49:49] *** Camille_ has joined #angularjs
[17:49:50] *** adharris has quit IRC
[17:49:50] *** adharris has joined #angularjs
[17:49:50] *** waldenraines has quit IRC
[17:49:51] *** waldenraines has joined #angularjs
[17:49:53] *** jtymes__ has quit IRC
[17:49:53] *** jtymes__ has joined #angularjs
[17:49:54] *** eparis has quit IRC
[17:49:54] *** eparis has joined #angularjs
[17:49:55] *** ton has quit IRC
[17:49:55] *** ton has joined #angularjs
[17:49:55] *** rmichnik has quit IRC
[17:49:55] *** rmichnik has joined #angularjs
[17:49:56] *** vell has quit IRC
[17:49:56] *** vell has joined #angularjs
[17:49:56] *** amergin has joined #angularjs
[17:50:09] *** buzzedword has joined #angularjs
[17:50:40] *** mnzaki has joined #angularjs
[17:50:50] *** roo has quit IRC
[17:51:12] *** vrockai has quit IRC
[17:51:47] *** kuadrosx has joined #angularjs
[17:51:59] <icfantv> vell: what version of angular are you using?
[17:52:10] *** Camille_ has quit IRC
[17:52:13] <icfantv> ton: well, that's a subjective answer, really
[17:52:16] *** morissette has joined #angularjs
[17:52:26] *** rclanan has quit IRC
[17:52:29] *** citizen-stig has quit IRC
[17:52:36] <ton> icfantv i guess what it comes down to is why does "state" make sense?
[17:52:49] <ton> i'm having trouble understanding what should go into state and what should not
[17:52:51] <icfantv> huh?
[17:52:57] *** iateadonut has quit IRC
[17:52:57] *** dpicky has joined #angularjs
[17:53:13] <ton> so most of the articles i've read say to share "state" through services
[17:53:23] *** CptClever has quit IRC
[17:53:30] <ton> but now with ui-router it seems like you just throw everything into $state
[17:53:34] *** SomeKittens has joined #angularjs
[17:53:44] *** dpicky has quit IRC
[17:53:45] *** bluezone has joined #angularjs
[17:54:01] *** mary5030 has joined #angularjs
[17:54:18] *** dpicky has joined #angularjs
[17:54:20] *** buzzedword has quit IRC
[17:54:38] *** vell has left #angularjs
[17:54:45] <Edward123> hey
[17:55:39] <icfantv> ton: oh. yea, you can use services for that. i don't use ui-router so i can't speak to that
[17:55:47] <icfantv> but if that's what its for, then that's what it's for
[17:56:15] <ton> :[ i guess i'll keep on reading the 2.0 design doc then
[17:56:24] <ton> i was hopping fox was on
[17:56:38] *** ringzer0 has quit IRC
[17:57:22] *** codeman has joined #angularjs
[17:57:23] *** Mumpsimus has joined #angularjs
[17:58:02] <icfantv> i can ask him. what's your ?
[17:58:17] *** byge has joined #angularjs
[17:58:35] <ton> well same thing i asked, its more seeking direction on how $state should be used
[17:58:42] *** fedenunez1 has joined #angularjs
[17:58:42] <icfantv> i just pinged him to join
[17:58:57] <ton> oh wow thanks
[17:59:23] <icfantv> dunno if he's available ATM, don't thank me yet
[17:59:33] <ton> LOL weaknesses: Conceptual overhead re: understanding your UI as a state machine -from the ng2 design doc
[17:59:38] *** dcherman has joined #angularjs
[17:59:40] <ton> icfantv its the thought that counts
[18:00:00] *** soee has joined #angularjs
[18:00:19] <icfantv> ton: he's on his mobile right now, can't join
[18:00:23] <ton> wow all the "issues" i'm thinking of seems to be listed in the ng2 doc, maybe i will have more specific questions
[18:00:35] *** mandric has quit IRC
[18:00:36] *** jsheely has joined #angularjs
[18:00:43] <ton> icfantv that's okay, i'm just starting my research anyway, its helpful to have someone to bounce questions off but not a necessity
[18:00:43] <jsheely> So is NickServ like dead?
[18:01:05] <icfantv> ton: he'll be back in 30 mins
[18:01:14] <ton> perfect, thanks
[18:01:18] *** fedenunez has quit IRC
[18:01:25] *** dcherman2 has quit IRC
[18:01:35] *** buzzedword has joined #angularjs
[18:01:37] *** uNki has quit IRC
[18:01:45] <adharris> ton: are you asking about $state in 1.x ui-router or in 2?
[18:01:49] *** mven_ has joined #angularjs
[18:01:56] <ton> 1.x
[18:01:56] *** uNki has joined #angularjs
[18:02:09] <ton> i'm just trying to understand the reasoning behind using $state
[18:02:14] <adharris> I store very, very little in state
[18:02:33] *** mven_ has joined #angularjs
[18:02:41] <adharris> $state is just the name of the service that you use to interact with the ui router
[18:02:50] <adharris> its not really for passing around global state
[18:03:10] <ton> its featured pretty prominently in the docs and at least when i read it, implied that its one of the main reasons to use it
[18:03:19] <ton> so its my misunderstanding then?
[18:03:20] <adharris> can you point me to that?
[18:03:33] *** annlewis has joined #angularjs
[18:03:37] <ton> sure give me a moment to find it in my history
[18:03:59] <ton> i have like 30 tabs open with stuff relating to ui-router right now :D
[18:04:06] <adharris> know that feeling
[18:04:11] *** waldenraines is now known as walden
[18:04:37] *** dimtruck is now known as zz_dimtruck
[18:04:37] *** othll0 has joined #angularjs
[18:04:45] *** mven has quit IRC
[18:04:49] *** elrabin has quit IRC
[18:04:59] *** ChanServ has joined #angularjs
[18:04:59] *** wolfe.freenode.net sets mode: +o ChanServ
[18:05:14] *** dshoreman has quit IRC
[18:05:14] *** dshoreman has joined #angularjs
[18:05:15] *** Edward123 has quit IRC
[18:05:15] *** Edward123 has joined #angularjs
[18:05:16] *** mnaser has quit IRC
[18:05:17] *** mnaser has joined #angularjs
[18:05:20] *** felixn has joined #angularjs
[18:05:21] *** MawGoomba has joined #angularjs
[18:05:24] *** logix812 has joined #angularjs
[18:05:24] *** JamesMGr_ has joined #angularjs
[18:05:24] *** ril has joined #angularjs
[18:05:25] *** juro has joined #angularjs
[18:05:25] *** u0m3 has joined #angularjs
[18:05:25] *** Shayanjm has joined #angularjs
[18:05:25] *** GitGud has joined #angularjs
[18:05:26] *** Edward123 is now known as EdwardIII
[18:05:26] *** rikkipitt has joined #angularjs
[18:05:26] *** elrabin has joined #angularjs
[18:05:27] *** Zalabinsky has joined #angularjs
[18:05:32] *** cacts|works has joined #angularjs
[18:05:39] *** mandric has joined #angularjs
[18:05:39] *** joshontheweb has joined #angularjs
[18:05:40] *** RangerRick has joined #angularjs
[18:06:36] *** cromulent has joined #angularjs
[18:06:43] *** rickhanlonii has joined #angularjs
[18:06:47] *** Jardayn has joined #angularjs
[18:06:58] *** conan_the_destro has joined #angularjs
[18:07:14] *** speeddragon has joined #angularjs
[18:07:31] <ton> okay, so it looks like its my understanding
[18:07:55] <ton> i was reading the source on the sample site and the first big comment mentioned attaching $state to $rootScope
[18:08:04] *** jcara has joined #angularjs
[18:08:12] <ton> "// It's very handy to add references to $state and $stateParams to the $rootScope"
[18:08:18] *** annlewis has quit IRC
[18:08:19] *** rickhanl_ has quit IRC
[18:08:29] <ton> taken out of context that seems like a bad thing to do
[18:08:55] * icfantv has 30 tabs open with stuff he's been meaning to read for several months
[18:09:14] <ton> LOL
[18:09:23] <ton> i use onetab for that
[18:09:26] <CanyonMan> I have that problem now, too. I have been told there are plug-ins for managing that sort of thing so you can have hundreds and hundreds of tabs open
[18:09:31] <icfantv> ton, in general, it's bad practice to add anything mutable to $rootScope
[18:09:34] <ton> one tab
[18:09:44] <CanyonMan> but I have a feeling that if I had a plug-in like that, it would just make this terrible behavior worse
[18:09:46] *** zz_dimtruck is now known as dimtruck
[18:09:59] *** TyrfingMjolnir has joined #angularjs
[18:10:04] <ton> icfantv that was my gut reaction, also
[18:10:10] *** elrabin has quit IRC
[18:10:17] <icfantv> CanyonMan: yea. humans have gone from physical pack rats to digital ones.
[18:10:21] *** soee_ has joined #angularjs
[18:10:24] <adharris> you never directly mutate $state
[18:10:32] *** Ronyrun has joined #angularjs
[18:10:37] <icfantv> and the latter is far worse, IMO, because you never get a real sense of just how bad it is
[18:10:41] <CanyonMan> icfantv: definitely
[18:10:55] *** MrBaboon has joined #angularjs
[18:11:26] <icfantv> save to pocket seems quite popular
[18:11:36] *** nilsi has quit IRC
[18:11:56] <adharris> putting it on $rootScope allows you to use $state.currentState, $state.go, etc from any template anywhere
[18:12:00] <icfantv> but then you have to remember to go back and read it
[18:12:08] <adharris> never necessary, occasionally useful
[18:12:23] *** step1step2 has joined #angularjs
[18:12:40] *** soee has quit IRC
[18:12:46] *** fedenunez has joined #angularjs
[18:12:49] <icfantv> adharris: there's a difference between doing say `$rootScope.mood = "happy";` and storing a service on $rootScope
[18:13:02] <ton> oh okay, the never mutate state was what i needed to know
[18:13:17] <icfantv> the service is mutable
[18:13:26] <icfantv> but the reference stored on rootScope is not
[18:13:33] *** fedenunez1 has quit IRC
[18:13:55] <icfantv> this is kind of like doing $rootScope.Math = Math - to store the JS Math object so it's available in templates
[18:14:09] <adharris> icfantv: right
[18:14:10] <ton> oh nice, something that's a nugget that i would have never thought of
[18:14:14] <icfantv> of course, i don't think that works in isolate scope directives.
[18:15:11] *** zigzagzig has quit IRC
[18:15:47] *** MrBaboon has quit IRC
[18:15:47] *** zigzagzig has joined #angularjs
[18:15:50] <adharris> it does not, but you can do {{ $root.$state }} from an isolate scope
[18:15:53] *** mary5030 has quit IRC
[18:16:05] <adharris> probably shouldnt though
[18:16:26] *** ilmgb has joined #angularjs
[18:16:47] *** mary5030 has joined #angularjs
[18:16:47] *** tangorri has quit IRC
[18:17:01] <icfantv> angular 1.x seems to be filled with those…."just because you CAN do something, doesn't mean you SHOULD"
[18:17:19] *** Debnet has quit IRC
[18:17:25] *** JamesMGr_ has quit IRC
[18:18:14] *** Sky[x] has quit IRC
[18:18:23] <ton> yes yes yes
[18:18:33] <ton> its part of the reason why the learning curve is more like a learning cliff
[18:19:23] *** Z3R0 has joined #angularjs
[18:19:57] *** fedenunez1 has joined #angularjs
[18:20:29] *** mischat has joined #angularjs
[18:20:59] *** MattWelch has quit IRC
[18:21:01] *** LeBlaaanc has joined #angularjs
[18:21:02] *** Amnez777 has joined #angularjs
[18:21:22] *** LeBlaaanc has quit IRC
[18:21:24] *** senayar has quit IRC
[18:21:25] *** mchammer has quit IRC
[18:21:35] *** Amnez777 has joined #angularjs
[18:21:35] *** Amnez777 has joined #angularjs
[18:21:51] *** fedenunez has quit IRC
[18:22:51] *** LeBlaaanc has joined #angularjs
[18:23:11] *** phrozensilver has quit IRC
[18:23:26] *** phrozensilver has joined #angularjs
[18:24:02] *** w00tner has joined #angularjs
[18:24:04] <w00tner> hello
[18:24:09] *** buzzedword has quit IRC
[18:24:27] *** wrainbolt has quit IRC
[18:25:58] *** atomicb0mb has joined #angularjs
[18:26:16] *** davi has joined #angularjs
[18:26:17] *** davi has joined #angularjs
[18:26:30] *** OtherAllan has joined #angularjs
[18:26:31] *** buzzedword has joined #angularjs
[18:26:39] *** charlie_sanders has joined #angularjs
[18:27:55] *** phrozensilver has quit IRC
[18:28:16] *** punknroll has quit IRC
[18:28:17] *** speeddragon has quit IRC
[18:28:21] <ton> now that i got past the whole $state is not mutated thing ui-router is pretty sweet
[18:28:47] <ton> i'm still having trouble thinking about how to use it but that's my own problem
[18:28:50] *** Z3R0 has quit IRC
[18:29:24] <ton> icfantv i think i'm good now, so i'll be out. thanks for pinging fox, i can handle it from here
[18:29:37] *** zigzagzig has quit IRC
[18:29:46] *** LeBlaaanc has quit IRC
[18:30:12] *** zigzagzig has joined #angularjs
[18:30:31] *** ton has quit IRC
[18:31:24] *** mven has joined #angularjs
[18:32:06] *** d0gmata has quit IRC
[18:32:53] *** aghiuru_ has quit IRC
[18:33:15] *** aghiuru has joined #angularjs
[18:33:55] *** mven_ has quit IRC
[18:34:45] *** hohl has quit IRC
[18:36:49] *** Foxandxss has joined #angularjs
[18:37:01] *** ChanServ sets mode: +o Foxandxss
[18:37:10] *** freshrecipe has joined #angularjs
[18:37:22] *** LeBlaaanc has joined #angularjs
[18:38:14] *** speeddragon has joined #angularjs
[18:38:45] *** venkat_330 has joined #angularjs
[18:38:58] *** liamonade has quit IRC
[18:39:16] *** LeBlaaanc has quit IRC
[18:40:00] *** LeBlaaanc has joined #angularjs
[18:40:07] *** sbellina has joined #angularjs
[18:40:20] *** ahhhndi has quit IRC
[18:42:39] *** italoacasas has quit IRC
[18:43:55] <ekarlso> Foxandxss: how is your stuff going for ng-bootstrap ? :D
[18:44:11] <Foxandxss> moving forward, but we need angular to make some changes
[18:44:37] <ekarlso> Foxandxss: oh, what kinds ? :)
[18:44:57] <Foxandxss> add extra features
[18:45:10] <ekarlso> Foxandxss: mhmms, any eta ? :D
[18:45:18] <Foxandxss> no
[18:45:25] <ekarlso> awe :)
[18:45:36] <ekarlso> Foxandxss: within a month ish ?
[18:45:39] <Foxandxss> they don't have any eta for what we need so hardly we can have any eta
[18:45:42] <Foxandxss> no, definitely not
[18:45:46] *** empyreanx has joined #angularjs
[18:45:52] <Foxandxss> there are some things that are impossible to make as today
[18:46:07] <ekarlso> doh :(
[18:46:14] <Foxandxss> so there is no way in hell to have a ng-bootstrap ready even in two months
[18:46:14] <ekarlso> angular 1 it is for now then :D
[18:46:33] <Foxandxss> that for sure
[18:46:48] <Foxandxss> ng2 is not read for use, not yet, won't be until a few months, imo
[18:46:58] *** JamesMGr_ has joined #angularjs
[18:47:16] *** vandyk has joined #angularjs
[18:47:21] <ekarlso> need to make a door access control system ui so :)
[18:48:10] *** elrabin has joined #angularjs
[18:48:17] *** jcooke has joined #angularjs
[18:48:53] *** buzzedword has quit IRC
[18:50:21] *** CptClever has joined #angularjs
[18:50:49] *** big|bad|wolf has joined #angularjs
[18:50:58] *** kinabalu has quit IRC
[18:50:58] *** kinabalu has joined #angularjs
[18:51:13] *** thirdknife has joined #angularjs
[18:51:27] *** MattWelch has joined #angularjs
[18:51:33] *** jareddlc has joined #angularjs
[18:51:57] *** buzzedword has joined #angularjs
[18:52:00] <pagios> We make live audio simple.
[18:53:12] *** rossk has joined #angularjs
[18:53:29] *** jareddlc_ has joined #angularjs
[18:53:46] *** jareddlc has quit IRC
[18:54:23] *** davlefou_ has joined #angularjs
[18:54:23] *** charlie_sanders has quit IRC
[18:54:32] *** MawGoomba_ has joined #angularjs
[18:55:25] *** comfroels has joined #angularjs
[18:55:26] *** MawGoomba has quit IRC
[18:55:29] <icfantv> ekarlso: ng2 is in such a volatile state it's quite hard to do library develoment against it.
[18:55:59] *** egamonal1 has quit IRC
[18:56:03] <icfantv> ekarlso: my gut tells me they're targeting ng-conf in may for an ng2 release
[18:56:10] *** JamesMGr_ is now known as JamesMGreeneAway
[18:56:10] *** sonofdirt has joined #angularjs
[18:56:25] *** buzzedword has quit IRC
[18:57:19] *** davlefou has quit IRC
[18:57:29] *** LeBlaaanc has quit IRC
[18:57:49] *** syzygy_ has joined #angularjs
[18:57:59] *** iraycohen has quit IRC
[18:58:04] *** LeBlaaanc has joined #angularjs
[18:58:40] *** JamesMGreeneAway is now known as JamesMGr_
[18:58:53] <comfroels> The beta milestone does say 66% done
[18:58:57] <comfroels> I checked today
[18:59:05] *** conan_the_destro has quit IRC
[18:59:15] *** italoacasas has joined #angularjs
[18:59:45] *** VaticanCameos has quit IRC
[18:59:54] *** danmulvey has joined #angularjs
[19:00:17] *** roonie has joined #angularjs
[19:00:40] *** DJDelusional has joined #angularjs
[19:02:21] *** nanuko has quit IRC
[19:02:23] *** cocao has joined #angularjs
[19:02:51] *** MawGoomba_ has quit IRC
[19:03:31] *** bayousoft has quit IRC
[19:03:58] *** LeBlaaanc has quit IRC
[19:04:10] *** annlewis has joined #angularjs
[19:04:21] *** LeBlaaanc has joined #angularjs
[19:04:51] *** Garfield-fr has joined #angularjs
[19:05:37] *** fresh-recipe has joined #angularjs
[19:05:41] *** fresh-recipe has left #angularjs
[19:06:02] *** rikkipitt has quit IRC
[19:06:22] *** sbasso has joined #angularjs
[19:06:35] *** aks has quit IRC
[19:06:38] *** fresh-recipe has joined #angularjs
[19:06:49] *** atomicb0mb has quit IRC
[19:07:08] *** fresh-recipe has left #angularjs
[19:07:21] *** Respek has joined #angularjs
[19:07:38] *** freshrecipe has quit IRC
[19:07:48] *** Mr-label has joined #angularjs
[19:08:25] <wafflejock> OnkelTem: nice thanks for sharing the solution so this will work when 0.2.16 is released without the patch it seems right?
[19:08:43] *** bender314 has quit IRC
[19:08:58] *** annlewis has quit IRC
[19:09:04] *** steeze has quit IRC
[19:09:20] *** Sharaal1 has quit IRC
[19:09:35] *** codeitloadit has joined #angularjs
[19:09:45] *** itaipu has quit IRC
[19:10:16] *** JamesMGr_ has quit IRC
[19:10:27] *** Sharaal has joined #angularjs
[19:10:47] *** vandyk has quit IRC
[19:10:48] *** Sky[x] has joined #angularjs
[19:11:25] *** mrkake has quit IRC
[19:11:33] <w00tner> what do you recommend to pass to my controller ? a factory, service o provider ?
[19:11:41] *** dev310per has joined #angularjs
[19:11:41] *** davlefou_ has quit IRC
[19:11:51] <w00tner> im using amcharts
[19:11:52] *** davlefou has joined #angularjs
[19:12:27] *** mutsayu has joined #angularjs
[19:12:41] <wafflejock> w00tner: is it static data or is it being loaded from an endpoint
[19:13:01] <w00tner> is being loaded from an endpoint
[19:13:55] *** skunkz has quit IRC
[19:13:58] *** mrkake has joined #angularjs
[19:14:42] *** mary5030 has quit IRC
[19:15:02] *** Hounddog has quit IRC
[19:15:11] *** mary5030 has joined #angularjs
[19:15:13] <wafflejock> w00tner: well you probably don't need a raw provider cause you just need that if you want it to have some things done during config before the instance is created for injection, so I'd say service or factory, if you want to define the thing as an object that gets constructed then use .service otherwise use .factory
[19:16:01] *** freshrecipe has joined #angularjs
[19:16:24] <w00tner> i will go with the service
[19:16:43] <w00tner> thanks wafflejock for the explanation, very clear.
[19:16:53] <wafflejock> no problem
[19:16:54] *** Hounddog has joined #angularjs
[19:17:00] <w00tner> The most verbose, but also the most comprehensive one is a Provider recipe. The remaining four recipe types — Value, Factory, Service and Constant — are just syntactic sugar on top of a provider recipe.
[19:17:15] <wafflejock> indeed
[19:17:28] *** Ronyrun has quit IRC
[19:17:36] <w00tner> gotcha
[19:17:52] *** fedenunez has joined #angularjs
[19:18:19] *** fedenunez1 has quit IRC
[19:18:21] <freshrecipe> hi all has anyone experienced connecting to sage account 50 Sdata service. Restful service with atom+xml
[19:18:28] *** deeb has quit IRC
[19:18:35] *** uNki has quit IRC
[19:19:10] *** conan_the_destro has joined #angularjs
[19:20:13] *** titanomachy has quit IRC
[19:21:07] *** jcooke has quit IRC
[19:23:07] *** geoid has joined #angularjs
[19:23:17] *** phrozensilver has joined #angularjs
[19:27:02] *** p0k0 has joined #angularjs
[19:28:23] *** guilbep has quit IRC
[19:29:58] *** titanomachy has joined #angularjs
[19:30:41] *** jlebrech has quit IRC
[19:31:01] *** annlewis has joined #angularjs
[19:32:40] *** baweaver has joined #angularjs
[19:32:47] *** mischat_ has joined #angularjs
[19:33:17] *** buzzedword has joined #angularjs
[19:33:38] *** CAPITANOOO has joined #angularjs
[19:34:05] *** MattWelch has quit IRC
[19:34:10] *** Hounddog has quit IRC
[19:34:11] *** MrBaboon has joined #angularjs
[19:35:22] <OnkelTem> wafflejock: yeah. I wonder why the release is so delayed
[19:36:03] *** mischat has quit IRC
[19:36:51] *** ilmgb has quit IRC
[19:37:04] *** nanuko has joined #angularjs
[19:37:27] *** mischat_ has quit IRC
[19:37:34] *** ilmgb has joined #angularjs
[19:38:04] *** elsevero has joined #angularjs
[19:38:13] *** bengilli_ has quit IRC
[19:38:51] *** MrBaboon has quit IRC
[19:38:54] *** aphprentice has joined #angularjs
[19:39:17] *** Aliks has joined #angularjs
[19:40:43] *** danmulvey has quit IRC
[19:40:45] *** moop has quit IRC
[19:41:25] *** speeddragon has quit IRC
[19:41:39] *** annlewis has quit IRC
[19:41:48] *** Respek has quit IRC
[19:41:50] *** ilmgb has quit IRC
[19:41:52] *** ams_ has quit IRC
[19:41:53] *** dsteplight______ has quit IRC
[19:41:53] *** jnap has quit IRC
[19:41:54] *** machty has quit IRC
[19:41:54] *** iamstef has quit IRC
[19:41:54] *** kcunning has quit IRC
[19:41:55] *** iamblue_cloud___ has quit IRC
[19:41:56] *** joep_ has quit IRC
[19:41:57] *** raytiley_ has quit IRC
[19:41:57] *** tae has quit IRC
[19:41:58] *** nribeka has quit IRC
[19:41:59] *** dulax has quit IRC
[19:41:59] *** rmichnik has quit IRC
[19:42:00] *** snkcld has quit IRC
[19:42:00] *** lewq has quit IRC
[19:42:00] *** Letze has quit IRC
[19:42:01] *** isacloud has quit IRC
[19:42:02] *** K4j___ has quit IRC
[19:42:02] *** elijah has quit IRC
[19:42:03] *** th2389_______ has quit IRC
[19:42:03] *** dgrove has quit IRC
[19:42:03] *** dboskovic has quit IRC
[19:42:03] *** Shoffner_____ has quit IRC
[19:42:04] *** Kesarr has quit IRC
[19:42:04] *** softinio has quit IRC
[19:42:04] *** moop has joined #angularjs
[19:42:26] *** Jardayn_two has joined #angularjs
[19:42:28] *** elsevero has quit IRC
[19:43:03] *** sbellina has quit IRC
[19:44:02] *** LeBlaaanc has quit IRC
[19:44:10] *** Respek has joined #angularjs
[19:45:04] *** Z3R0 has joined #angularjs
[19:45:35] *** amergin has quit IRC
[19:45:40] *** Jardayn_two has quit IRC
[19:45:51] *** Jardayn_two has joined #angularjs
[19:46:18] *** Jardayn has quit IRC
[19:46:19] *** turbolihis has quit IRC
[19:46:34] *** Jardayn_two has quit IRC
[19:47:56] *** zigzagzig has quit IRC
[19:48:04] *** mekhami has quit IRC
[19:48:24] *** Z3R0 has quit IRC
[19:48:32] *** zigzagzig has joined #angularjs
[19:49:17] *** compeman has joined #angularjs
[19:49:32] *** Chinchill has joined #angularjs
[19:52:23] *** cornerma1 has joined #angularjs
[19:54:13] *** compeman_ has joined #angularjs
[19:54:39] *** sbasso has quit IRC
[19:55:33] *** cornerman has quit IRC
[19:55:33] *** nribeka has joined #angularjs
[19:55:35] *** cornerma1 is now known as cornerman
[19:55:56] *** Jardayn has joined #angularjs
[19:56:06] *** compeman has quit IRC
[19:56:54] *** dboskovic has joined #angularjs
[19:57:29] *** iamstef has joined #angularjs
[19:57:39] *** iamblue_cloud___ has joined #angularjs
[19:57:40] *** idr0p has quit IRC
[19:57:53] *** isacloud has joined #angularjs
[19:57:56] *** raytiley_ has joined #angularjs
[19:59:01] *** sbellina has joined #angularjs
[19:59:14] *** Kesarr has joined #angularjs
[20:00:13] *** italoacasas has quit IRC
[20:00:38] *** idr0p has joined #angularjs
[20:00:45] *** baweaver has quit IRC
[20:00:56] *** kcunning has joined #angularjs
[20:01:12] *** dsteplight______ has joined #angularjs
[20:01:17] *** rocky1138 has joined #angularjs
[20:01:40] *** baweaver has joined #angularjs
[20:01:42] *** rmichnik has joined #angularjs
[20:01:58] *** go_newb has joined #angularjs
[20:02:25] *** skjorrface has joined #angularjs
[20:02:31] *** machty has joined #angularjs
[20:02:57] <skjorrface> hello. Anybody knowing an automatized tool for testing websites in all possible different versions of most common browsers?
[20:03:04] *** Shoffner_____ has joined #angularjs
[20:03:30] *** elijah has joined #angularjs
[20:03:47] *** go_newb has quit IRC
[20:04:22] *** th2389_______ has joined #angularjs
[20:04:30] *** edm has quit IRC
[20:04:47] *** jcooke has joined #angularjs
[20:05:15] *** K4j___ has joined #angularjs
[20:05:21] *** asteele has joined #angularjs
[20:05:33] *** sonofdir_ has joined #angularjs
[20:07:16] *** ASTP001 has joined #angularjs
[20:07:47] *** MrBaboon has joined #angularjs
[20:08:13] *** dgrove has joined #angularjs
[20:08:14] *** baweaver has quit IRC
[20:08:15] *** \du has quit IRC
[20:09:49] *** bayousoft has joined #angularjs
[20:10:48] *** jnap has joined #angularjs
[20:10:48] *** jetpackjoe has joined #angularjs
[20:11:31] *** mandric has quit IRC
[20:11:39] *** lmatteis has quit IRC
[20:12:48] *** edm has joined #angularjs
[20:13:20] *** ams_ has joined #angularjs
[20:14:18] *** fedenunez has quit IRC
[20:14:36] *** baweaver has joined #angularjs
[20:15:00] *** wrainbolt has joined #angularjs
[20:15:05] *** juddey has joined #angularjs
[20:15:10] <cacts|works> browserstack is one
[20:15:11] *** ag0rex has quit IRC
[20:15:21] *** illume has joined #angularjs
[20:15:43] *** comfroels has quit IRC
[20:15:46] *** Ir1sh has quit IRC
[20:16:05] *** mekhami has joined #angularjs
[20:16:07] *** fedenunez has joined #angularjs
[20:16:54] <mekhami> so i have a form. one input, just 'code'. when someone enters the 'code' i want it to take them to a form they need to fill out. how can i create this new form based on the info the api returns for that code? i'm sorry if i'm asking this question wrong, i'm struggling to understand how to ask it
[20:17:13] *** tayfun has quit IRC
[20:17:18] *** snkcld has joined #angularjs
[20:17:34] *** ringzer0 has joined #angularjs
[20:17:46] *** aks has joined #angularjs
[20:19:07] *** MattWelch has joined #angularjs
[20:19:29] *** illume has quit IRC
[20:19:40] *** dulax has joined #angularjs
[20:20:00] *** softinio has joined #angularjs
[20:20:12] *** baweaver has quit IRC
[20:20:13] *** buzzedword has quit IRC
[20:21:21] *** LeBlaaanc has joined #angularjs
[20:21:26] *** Letze has joined #angularjs
[20:21:50] *** aks has quit IRC
[20:23:16] *** rmichnik has quit IRC
[20:23:37] *** ilmgb has joined #angularjs
[20:23:39] *** mandric has joined #angularjs
[20:23:51] *** benwaffle has left #angularjs
[20:23:58] *** chrisbirk has quit IRC
[20:24:35] *** speeddragon has joined #angularjs
[20:25:24] *** codeman has quit IRC
[20:25:30] *** rikkipitt has joined #angularjs
[20:25:48] *** speeddragon has quit IRC
[20:25:52] *** italoacasas has joined #angularjs
[20:26:52] *** LeBlaaanc has quit IRC
[20:27:00] *** lewq has joined #angularjs
[20:27:21] *** LeBlaaanc has joined #angularjs
[20:27:22] *** big|bad|wolf has quit IRC
[20:27:42] *** aghiuru has quit IRC
[20:27:52] *** Wouter0100 has joined #angularjs
[20:28:17] *** yky has joined #angularjs
[20:28:42] *** yky is now known as Guest98707
[20:28:45] *** Coldblackice has joined #angularjs
[20:29:18] *** bayousoft has quit IRC
[20:29:31] *** uNki has joined #angularjs
[20:29:37] *** atomicb0mb has joined #angularjs
[20:29:37] *** buzzedwo_ has joined #angularjs
[20:29:42] *** sergey has joined #angularjs
[20:30:18] *** speeddragon has joined #angularjs
[20:30:22] *** aghiuru has joined #angularjs
[20:30:48] *** senayar has joined #angularjs
[20:30:49] *** senayar has joined #angularjs
[20:30:50] *** aghiuru has quit IRC
[20:30:56] *** Jardayn has quit IRC
[20:32:03] *** Aliks has quit IRC
[20:33:30] *** Lowell has quit IRC
[20:33:33] *** Ironlink has quit IRC
[20:33:33] *** syphar has quit IRC
[20:33:34] *** clode_____ has quit IRC
[20:33:34] *** frem has quit IRC
[20:33:35] *** prettymuchbryce_ has quit IRC
[20:33:36] *** merlinsbrain has quit IRC
[20:33:36] *** kwmiebach has quit IRC
[20:33:37] *** johnkpaul_ has quit IRC
[20:33:37] *** daredev has quit IRC
[20:33:38] *** lebster has quit IRC
[20:33:39] *** barum has quit IRC
[20:33:39] *** asilluron has quit IRC
[20:33:39] *** Immutef has quit IRC
[20:33:40] *** joshtau has quit IRC
[20:33:40] *** kaseoga_ has quit IRC
[20:33:40] *** jga_ has quit IRC
[20:33:41] *** dotty has quit IRC
[20:33:42] *** andydrew has quit IRC
[20:33:43] *** pudo has quit IRC
[20:33:43] *** SomeKittens has quit IRC
[20:33:43] *** merpnderp has quit IRC
[20:33:44] *** jan_oelze___ has quit IRC
[20:33:44] *** astrahsburg___ has quit IRC
[20:33:44] *** nyandoge has quit IRC
[20:33:45] *** ikevin_ has quit IRC
[20:33:45] *** amtiskaw has quit IRC
[20:33:45] *** felipesabino has quit IRC
[20:33:46] *** aendrew has quit IRC
[20:33:53] *** chrisbirk has joined #angularjs
[20:33:55] *** uNki has quit IRC
[20:34:01] *** bengillies has joined #angularjs
[20:34:51] *** davlefou has quit IRC
[20:37:21] *** ggherdov has quit IRC
[20:37:32] *** tae has joined #angularjs
[20:38:10] *** annlewis has joined #angularjs
[20:38:35] *** bengillies has quit IRC
[20:38:47] *** joep_ has joined #angularjs
[20:38:55] *** Voyage has joined #angularjs
[20:40:14] *** CodeMonkey has joined #angularjs
[20:42:34] *** atomicb0mb has quit IRC
[20:42:35] *** LeBlaaanc has quit IRC
[20:42:58] *** LeBlaaanc has joined #angularjs
[20:43:03] *** Siraris has joined #angularjs
[20:43:14] *** annlewis has quit IRC
[20:43:23] <Siraris> Is there a way to set a property on an isolate scope on a directive from a unit test?
[20:43:38] *** iraj has quit IRC
[20:44:00] <Siraris> Or does it have to be through an attribute before compilation?
[20:44:08] *** turbolihis has joined #angularjs
[20:44:47] *** mylord has left #angularjs
[20:45:13] *** Ir1sh has joined #angularjs
[20:45:52] *** Siraris has quit IRC
[20:47:22] *** amergin has joined #angularjs
[20:50:13] *** davlefou has joined #angularjs
[20:51:10] *** davi has quit IRC
[20:51:39] *** jcooke has quit IRC
[20:51:42] *** Aliks has joined #angularjs
[20:52:42] *** Voyage has left #angularjs
[20:53:08] *** edm23 has joined #angularjs
[20:53:18]
<mutsayu> why does my nodejs server output { authorised: 200 } (it should be 200!) and when I get it with $http it returns { authorised: 401 } (this is done by myself --> http://i.imgur.com/QEou4WO.png)
[20:53:26] *** Aliks has quit IRC
[20:53:31] *** dob_ has quit IRC
[20:54:01] *** benjamingr_ has quit IRC
[20:54:01] *** hkeide has quit IRC
[20:54:02] *** shennyg has quit IRC
[20:54:03] *** p0k0 has quit IRC
[20:54:03] *** cstipkovic____ has quit IRC
[20:54:04] *** fuziontech has quit IRC
[20:54:04] *** remysharp has quit IRC
[20:54:04] *** Brak has quit IRC
[20:54:05] *** Eleeleth has quit IRC
[20:54:05] *** jpinnix______ has quit IRC
[20:54:06] *** Templarian has quit IRC
[20:54:06] *** moogumbo has quit IRC
[20:54:07] *** apipkin has quit IRC
[20:54:08] *** jlyndon has quit IRC
[20:54:08] *** daxroc has quit IRC
[20:54:09] *** Phtes_ has quit IRC
[20:54:10] *** Ownix has quit IRC
[20:54:10] *** kweigand_ has quit IRC
[20:54:11] *** kutenai has quit IRC
[20:54:11] *** ish has quit IRC
[20:54:12] *** corioliss has quit IRC
[20:54:13] *** prikk has quit IRC
[20:54:13] *** mickhansen has quit IRC
[20:54:43] *** dpicky has quit IRC
[20:55:26] *** Aliks has joined #angularjs
[20:55:40] *** thatslifeson has joined #angularjs
[20:55:50] *** edm has quit IRC
[20:56:37] *** Aliks has quit IRC
[20:56:53] *** Garfield-fr has quit IRC
[20:57:21] *** Garfield-fr has joined #angularjs
[20:57:51] *** rickhanlonii has quit IRC
[20:59:15] *** phishy has quit IRC
[20:59:15] *** eyebraus__ has quit IRC
[20:59:16] *** MalteJ has quit IRC
[20:59:16] *** pchittum has quit IRC
[20:59:16] *** jmfcool has quit IRC
[20:59:17] *** n3ssi3 has quit IRC
[20:59:17] *** angular_mike__ has quit IRC
[20:59:18] *** alphonse23__ has quit IRC
[20:59:18] *** glamb has quit IRC
[20:59:18] *** kudos has quit IRC
[20:59:19] *** roek has quit IRC
[20:59:19] *** augustl has quit IRC
[20:59:20] *** L42y has quit IRC
[20:59:20] *** tfnico has quit IRC
[20:59:20] *** tanepiper has quit IRC
[20:59:21] *** amatecha___ has quit IRC
[20:59:22] *** henrikbjorn has quit IRC
[20:59:23] *** AphelionZ has quit IRC
[20:59:23] *** Spot__ has quit IRC
[20:59:24] *** twisted` has quit IRC
[20:59:25] *** ETBlue has quit IRC
[20:59:25] *** wizonesolutions has quit IRC
[20:59:25] *** wycats has quit IRC
[20:59:26] *** cspotcode has quit IRC
[21:00:11] *** rikkipitt has quit IRC
[21:00:31] *** juro has quit IRC
[21:00:41] *** cocao has quit IRC
[21:00:43] *** jcooke has joined #angularjs
[21:00:44] *** erms has quit IRC
[21:00:57] *** wrainbolt has quit IRC
[21:01:00] *** mnzaki has quit IRC
[21:01:07] *** dpicky has joined #angularjs
[21:01:27] *** ish has joined #angularjs
[21:01:58] *** jpinnix______ has joined #angularjs
[21:02:00] *** Ironlink has joined #angularjs
[21:02:05] *** zigzagzig has quit IRC
[21:02:06] *** syphar has joined #angularjs
[21:02:16] *** ngbot has joined #angularjs
[21:02:17] <ngbot> angular.js/master 77419cf Martin Staffa: fix(ngAnimate): ignore children without animation data when closing them...
[21:02:17] *** ngbot has left #angularjs
[21:02:27] *** conan_the_destro has quit IRC
[21:02:28] *** merpnderp has joined #angularjs
[21:02:29] *** ikevin_ has joined #angularjs
[21:02:37] *** ngbot has joined #angularjs
[21:02:38] <ngbot> angular.js/v1.4.x be01ceb Martin Staffa: fix(ngAnimate): ignore children without animation data when closing them...
[21:02:38] *** ngbot has left #angularjs
[21:02:38] *** zigzagzig has joined #angularjs
[21:02:39] *** asilluron has joined #angularjs
[21:02:40] *** turbolihis has quit IRC
[21:03:00] *** frem has joined #angularjs
[21:03:02] *** pudo has joined #angularjs
[21:03:15] *** tanepiper has joined #angularjs
[21:03:19] *** amergin has quit IRC
[21:03:29] *** wycats has joined #angularjs
[21:03:30] *** juro has joined #angularjs
[21:03:32] *** lebster has joined #angularjs
[21:03:33] *** kwmiebach has joined #angularjs
[21:04:04] *** remysharp has joined #angularjs
[21:04:04] *** tfnico has joined #angularjs
[21:04:11] *** shennyg has joined #angularjs
[21:04:19] <softinio> In one of my controllers a $scope variable gets updated but change is not shown in UI any ideas what I could cause this problem?
[21:04:20] *** mandric has quit IRC
[21:04:33] *** felipesabino has joined #angularjs
[21:05:01] <CanyonMan> What is doing the updating?
[21:05:09] *** Immutef has joined #angularjs
[21:05:10] *** merlinsbrain has joined #angularjs
[21:05:20] *** speakingcode has quit IRC
[21:05:44] *** joshtau has joined #angularjs
[21:06:13] *** cstipkovic____ has joined #angularjs
[21:06:22] *** defendguin has quit IRC
[21:06:33] *** amtiskaw has joined #angularjs
[21:06:57] *** mickhansen has joined #angularjs
[21:07:05] *** owenjones has joined #angularjs
[21:07:08] *** n3ssi3 has joined #angularjs
[21:07:12] *** Templarian has joined #angularjs
[21:07:31] *** mandric has joined #angularjs
[21:07:34] *** iceball has joined #angularjs
[21:07:34] *** kudos has joined #angularjs
[21:08:03] *** iceball has quit IRC
[21:08:05] *** davlefou has quit IRC
[21:08:23] *** comfroels has joined #angularjs
[21:08:51] *** jmfcool has joined #angularjs
[21:08:55] *** othll0 has quit IRC
[21:09:09] *** augustl has joined #angularjs
[21:09:35] *** L42y has joined #angularjs
[21:09:40] *** fuziontech has joined #angularjs
[21:10:09] *** amatecha___ has joined #angularjs
[21:10:28] *** twisted` has joined #angularjs
[21:10:28] *** zigzagzig has quit IRC
[21:10:29] *** elrabin has quit IRC
[21:10:30] *** adiman has quit IRC
[21:10:36] *** jlyndon has joined #angularjs
[21:11:02] *** zigzagzig has joined #angularjs
[21:11:03] *** corioliss has joined #angularjs
[21:11:23] *** ETBlue has joined #angularjs
[21:11:25] *** owenjones has quit IRC
[21:11:29] *** henrikbjorn has joined #angularjs
[21:11:30] <softinio> @CanyonMan found out what was the issue. There was a filter in the template that I needed to remove for the results to show ... I am an idiot :-)
[21:12:03] <CanyonMan> ahhhhhhhhhhhhhhhhhhhhhhhhhhh
[21:12:13] *** Ownix has joined #angularjs
[21:12:24] *** AphelionZ has joined #angularjs
[21:12:25] *** johnkpaul_ has joined #angularjs
[21:12:58] *** jan_oelze___ has joined #angularjs
[21:13:08] *** phrozensilver has left #angularjs
[21:13:22] *** Ugolin has quit IRC
[21:13:44] *** elrabin has joined #angularjs
[21:13:50] *** roek has joined #angularjs
[21:14:01] *** eyebraus__ has joined #angularjs
[21:14:36] *** SomeKittens has joined #angularjs
[21:14:55] *** Chewtoy has quit IRC
[21:15:31] *** diegoaguilar has joined #angularjs
[21:15:32] *** doginal has joined #angularjs
[21:15:57] *** diegoaguilar has quit IRC
[21:16:07] *** glamb has joined #angularjs
[21:16:37] *** safzouf has joined #angularjs
[21:17:11] *** dpicky has quit IRC
[21:17:15] *** diegoaguilar has joined #angularjs
[21:17:32] *** pchittum has joined #angularjs
[21:17:37] *** jga_ has joined #angularjs
[21:18:15] <safzouf> Hello Guys
[21:18:30] *** ggherdov has joined #angularjs
[21:18:48] <safzouf> How to use simpleSAMLphp in AngularJs
[21:19:02] <safzouf> did anyone worked on that before ?
[21:19:13] *** citizen-stig has joined #angularjs
[21:19:17] *** dotty has joined #angularjs
[21:19:18] *** wizonesolutions has joined #angularjs
[21:19:28] *** Spot__ has joined #angularjs
[21:19:32] *** diegoaguilar has quit IRC
[21:19:42] <safzouf> simplesamlphp is Kit for providing SAML authentication between the client, the SP (service provider) and the IDP (ID provider)
[21:19:49] *** Sky[x] has quit IRC
[21:19:52] *** speakingcode has joined #angularjs
[21:19:56] *** daredev has joined #angularjs
[21:20:02] *** phrozensilver has joined #angularjs
[21:20:11] *** clode_____ has joined #angularjs
[21:20:36] *** nyandoge has joined #angularjs
[21:20:39] *** Lowell has joined #angularjs
[21:20:50] *** davlefou has joined #angularjs
[21:20:53] *** diegoaguilar has joined #angularjs
[21:20:54] *** baweaver has joined #angularjs
[21:21:05] *** phishy has joined #angularjs
[21:21:50] *** chrisbirk has quit IRC
[21:21:55] *** senayar has quit IRC
[21:22:27] *** apipkin has joined #angularjs
[21:23:31] *** davlefou has quit IRC
[21:23:34] *** alphonse23__ has joined #angularjs
[21:23:51] *** zigzagzig has quit IRC
[21:23:57] *** davlefou has joined #angularjs
[21:24:27] *** zigzagzig has joined #angularjs
[21:24:40] *** eago has joined #angularjs
[21:25:12] *** mnzaki has joined #angularjs
[21:25:35] *** baweaver has quit IRC
[21:25:37] *** fees is now known as fees_
[21:25:37] *** mandric has quit IRC
[21:26:24] *** kaseoga_ has joined #angularjs
[21:26:30] *** prettymuchbryce_ has joined #angularjs
[21:27:07] *** benjamingr_ has joined #angularjs
[21:27:17] *** dpicky has joined #angularjs
[21:27:22] *** Brak has joined #angularjs
[21:27:25] <safzouf> simpleSAMLphp and AngularJs ?
[21:27:28] *** chrisbirk has joined #angularjs
[21:27:36] <safzouf> Have somene tried them together ?
[21:27:37] <ekarlso> Foxandxss: do you use bootstrap or material ? :P
[21:27:39] *** baweaver has joined #angularjs
[21:27:44] <Foxandxss> neither
[21:27:49] *** ril has quit IRC
[21:27:52] <safzouf> yes, n, maybe ? :)
[21:28:01] *** ukko has left #angularjs
[21:28:03] <Foxandxss> I haven't
[21:28:16] *** Chewtoy has joined #angularjs
[21:28:29] *** Garfield-fr has quit IRC
[21:28:50] *** clivejo has quit IRC
[21:28:55] *** Zalabinsky has quit IRC
[21:29:18] *** nanuko has quit IRC
[21:29:24] *** MalteJ has joined #angularjs
[21:29:28] <icfantv> ekarlso: what's your ?
[21:29:59] *** diegoaguilar has quit IRC
[21:30:37] *** andydrew has joined #angularjs
[21:30:42] <ekarlso> heh, just wondering what's hot these days icfantv ;p
[21:31:12] *** diegoaguilar has joined #angularjs
[21:31:17] *** hkeide has joined #angularjs
[21:31:21] *** astrahsburg___ has joined #angularjs
[21:31:47] *** storresi has quit IRC
[21:32:19] *** atomicb0mb has joined #angularjs
[21:32:57] *** mutsayu has left #angularjs
[21:33:05] *** frem has quit IRC
[21:33:31] *** frem has joined #angularjs
[21:33:43] *** arizzo has joined #angularjs
[21:34:16] *** atomicb0mb has quit IRC
[21:35:05] *** rickhanlonii has joined #angularjs
[21:35:07] *** Aliks has joined #angularjs
[21:35:19] *** lemur has joined #angularjs
[21:35:36] *** bchoate has quit IRC
[21:35:42] *** barum has joined #angularjs
[21:36:02] *** amergin has joined #angularjs
[21:36:20] <icfantv> shameless plug?
[21:36:25] <icfantv> angular ui bootstrap
[21:36:30] *** zlalanne has joined #angularjs
[21:36:45] *** diegoaguilar has quit IRC
[21:36:54] *** qdk has joined #angularjs
[21:37:00] *** bchoate has joined #angularjs
[21:37:41] *** diegoaguilar has joined #angularjs
[21:37:55] <icfantv> 89,000+ ppl can't be wrong
[21:38:01] *** turbolihis has joined #angularjs
[21:38:02] <icfantv> plus 10k for UIBS
[21:38:09] *** moogumbo has joined #angularjs
[21:38:46] *** comfroels has quit IRC
[21:38:49] <icfantv> material has _only_ 11k
[21:38:58] *** annlewis has joined #angularjs
[21:38:59] *** BahamutWC|Work has quit IRC
[21:38:59] <icfantv> uibs should pass material in a few months
[21:39:19] *** Oog has joined #angularjs
[21:39:33] *** lemur has quit IRC
[21:39:33] *** BahamutWC|Work has joined #angularjs
[21:40:10] *** angularjs_bot has quit IRC
[21:40:19] *** angular_mike__ has joined #angularjs
[21:40:28] *** geoid has quit IRC
[21:40:46] *** storresi has joined #angularjs
[21:41:21] *** prikk has joined #angularjs
[21:41:44] *** geoid has joined #angularjs
[21:41:50] *** buzzedwo_ has quit IRC
[21:41:51] *** daxroc has joined #angularjs
[21:43:01] *** aubsrey_ has joined #angularjs
[21:43:54] *** annlewis has quit IRC
[21:44:01] *** rickhanlonii has quit IRC
[21:44:02] *** cspotcode has joined #angularjs
[21:44:06] *** buzzedword has joined #angularjs
[21:44:07] *** Phtes_ has joined #angularjs
[21:46:06] *** geoid has quit IRC
[21:46:17] *** mellernoia has quit IRC
[21:48:16] *** thirdknife has quit IRC
[21:48:22] *** Eleeleth has joined #angularjs
[21:49:05] *** buzzedword has quit IRC
[21:49:55] *** aendrew has joined #angularjs
[21:50:27] *** spacenomad has joined #angularjs
[21:50:29] *** iamstef has quit IRC
[21:50:58] *** iamstef has joined #angularjs
[21:52:25] *** deg has left #angularjs
[21:52:51] *** Oog has quit IRC
[21:54:04] *** Aliks has quit IRC
[21:55:07] *** MattWelch has quit IRC
[21:55:07] *** rho has quit IRC
[21:55:42] *** MattWelch has joined #angularjs
[21:56:45] *** p0k0 has joined #angularjs
[21:57:25] *** BlinkyBill has joined #angularjs
[21:57:35] *** elrabin has quit IRC
[21:58:11] *** elrabin has joined #angularjs
[21:58:17] *** nanuko has joined #angularjs
[21:58:18] *** elrabin has quit IRC
[21:58:30] *** Aliks has joined #angularjs
[21:58:37] *** elrabin has joined #angularjs
[21:59:18] *** baweaver has quit IRC
[22:01:43] *** nanuko has quit IRC
[22:02:14] *** mandric has joined #angularjs
[22:02:24] *** baweaver has joined #angularjs
[22:04:18] *** geoid has joined #angularjs
[22:06:28] *** juro has quit IRC
[22:07:36] *** tkdaj1 has joined #angularjs
[22:07:59] <tkdaj1> Could someone tell me what I'm doing wrong here? I want to make the template that loads with my directive depend on an attr
[22:08:15]
<Respek> icfantv Hey I built this animation for the annoying angularstrap dropdowns, figured you might like em http://pastebin.com/Cm3X0iVM
[22:08:36] *** cacts|works has quit IRC
[22:08:44] *** rickhanlonii has joined #angularjs
[22:08:45] <tkdaj1> I'm guessing the problem is that I'm trying to determine what template to load in the link function when the template should already be loaded by the time the link function runs?
[22:08:57] <tkdaj1> if so, how do I do what I am trying to do the right way, then/
[22:09:02] <icfantv> Respek: i don't know jack about animations
[22:09:24] *** buzzedword has joined #angularjs
[22:09:47] *** arizzo has quit IRC
[22:10:38] *** cacts|works has joined #angularjs
[22:11:00] <Respek> icfantv do you all want to implement some interaction? or are you leaving it to other libs
[22:11:30] *** atomicb0mb has joined #angularjs
[22:12:00] *** test has joined #angularjs
[22:12:23] *** test is now known as Guest86546
[22:12:39] <Guest86546> hello - when is the next release for angular-ui/bootstrap project? thanks!
[22:12:41] *** intellix has joined #angularjs
[22:13:52] *** rickhanlonii has quit IRC
[22:14:20] *** kutenai has joined #angularjs
[22:15:13] *** sbellina has quit IRC
[22:15:39] <tkdaj1> Anyone know why this directive won't load the template?
[22:15:41] <tkdaj1> oops
[22:16:01] <icfantv> Respek: i don't follow
[22:16:22] <icfantv> Guest86546: the next release is 1.0 and we don't have a date yet, but are targeting by the end of the year
[22:16:44] <Respek> within UI bootstrap I mean? I notice there isn't much interaction design, animations et
[22:16:45] <Respek> *etc
[22:16:58] <icfantv> Guest86546: feel free to pull `master` and do an `npm install` followed by `grunt` to get all the tasty goodness. the built files will be in the `dist` directory.
[22:17:14] *** Freas has joined #angularjs
[22:17:14] *** reduce has joined #angularjs
[22:17:27] <icfantv> Guest86546: but i'm not going to lie, there are a LOT of breaking changes.
[22:17:28] <Guest86546> icfantv - thank you!
[22:17:36] <icfantv> yup
[22:17:52] <icfantv> Respek: that's because we use ngAnimate if it's available
[22:18:21] * Freas slaps askhader around a bit with a large fishbot
[22:18:26] *** Freas has quit IRC
[22:18:39] <icfantv> Respek: and if it's not, then we don't. our library has no CSS (well save for something specific to CSP)
[22:18:50] <icfantv> Respek: and no other dependencies other than angular core and bootstrap css
[22:18:51] *** conan_the_destro has joined #angularjs
[22:18:55] *** buzzedword has quit IRC
[22:19:35] <icfantv> Respek: however, in order to excise `replace: true` on our directives, we will need a CSS file eventually.
[22:20:24] <icfantv> Guest86546: those breaking changes will be in the CHANGELOG.md file when you do a build - er, they _should_ be.
[22:20:40] *** arizzo has joined #angularjs
[22:20:41] *** doppio|Laptop has joined #angularjs
[22:20:55] * icfantv checks to make sure he's not talking out of his ...
[22:21:33] *** TyrfingMjolnir has quit IRC
[22:21:34] <icfantv> damn. i lied
[22:21:48] <icfantv> you'll need to look at the closed issues/PRs for those.
[22:21:56] <icfantv> wiat
[22:22:07] *** danmulvey has joined #angularjs
[22:22:09] *** Respek has quit IRC
[22:22:51] <icfantv> wait. we have a task to build that
[22:22:52] <icfantv> one sec
[22:23:38] *** Respek has joined #angularjs
[22:24:25] *** Guest86546 has quit IRC
[22:24:34] *** atomicb0mb has quit IRC
[22:24:39] *** dszmaj has quit IRC
[22:24:52] *** bayousoft has joined #angularjs
[22:26:40] *** Guest86546 has joined #angularjs
[22:27:32] *** Guest86546 has quit IRC
[22:27:46] *** buzzedword has joined #angularjs
[22:29:38] *** empyreanx has quit IRC
[22:29:59] *** sbellina has joined #angularjs
[22:31:18] *** kweigand_ has joined #angularjs
[22:31:52] *** safzouf has quit IRC
[22:32:18] <icfantv> `grunt conventionalChangelog` will build it.
[22:32:57] *** zigzagzig has quit IRC
[22:33:36] *** zigzagzig has joined #angularjs
[22:33:44] *** zeezey has quit IRC
[22:33:44] *** zeezey has joined #angularjs
[22:34:50] *** marr has joined #angularjs
[22:36:16] *** soee has joined #angularjs
[22:36:23] *** soee_ has quit IRC
[22:36:25] *** aubsrey_ has quit IRC
[22:36:53] *** Scubao has joined #angularjs
[22:38:25] *** TyrfingMjolnir has joined #angularjs
[22:39:27] *** davlefou has quit IRC
[22:39:42] *** annlewis has joined #angularjs
[22:40:25] *** sergey has quit IRC
[22:40:29] *** elsevero has joined #angularjs
[22:41:05] *** jdo_dk has quit IRC
[22:42:17] *** CodeTroth has joined #angularjs
[22:42:43] *** kk_drop has quit IRC
[22:43:07] *** encryptd_fractal has quit IRC
[22:43:38] *** fedenunez has quit IRC
[22:43:39] *** CodeMonkey has quit IRC
[22:43:39] *** encryptd_fractal has joined #angularjs
[22:44:24] <tkdaj1> anyone know how to share a single variable between all directives of the same type?
[22:44:34] <tkdaj1> similar to how a static variable works in other languages?
[22:44:34] *** annlewis has quit IRC
[22:45:55] *** davlefou has joined #angularjs
[22:46:40] *** atomicb0mb has joined #angularjs
[22:46:55] *** morissette has quit IRC
[22:47:58] *** xtreamwayz has quit IRC
[22:48:46] *** danmulvey has quit IRC
[22:49:04] *** conan_the_destro has quit IRC
[22:50:56] *** diegoaguilar has quit IRC
[22:51:36] *** Mr-label has quit IRC
[22:51:36] *** nanuko has joined #angularjs
[22:53:00] *** yakizushi has joined #angularjs
[22:53:40] *** thatslifeson has quit IRC
[22:53:55] *** citizen-stig has quit IRC
[22:54:06] *** conan_the_destro has joined #angularjs
[22:56:09] *** sterns has quit IRC
[22:56:22] *** mary5030 has quit IRC
[22:59:41] *** CanyonMan has quit IRC
[23:00:32] *** max11 has joined #angularjs
[23:01:40] *** buzzedword has quit IRC
[23:02:01] *** max11 has quit IRC
[23:02:24] *** danmulvey has joined #angularjs
[23:02:25] *** Respek has quit IRC
[23:03:46] *** Sky[x] has joined #angularjs
[23:03:48] *** atomicb0mb has quit IRC
[23:03:55] *** diosney has quit IRC
[23:04:06] *** italoacasas has quit IRC
[23:04:36] *** mischat has joined #angularjs
[23:06:10] *** steeze has joined #angularjs
[23:06:40] *** doppio|Laptop has quit IRC
[23:06:43] <icfantv> tkdaj1: store it in a service and then inject that service into your directive
[23:06:59] *** ciawal has quit IRC
[23:07:32] *** rikkipitt has joined #angularjs
[23:07:50] *** drej has joined #angularjs
[23:08:43] *** ron_frown has joined #angularjs
[23:09:00] *** ciawal has joined #angularjs
[23:09:28] *** arizzo has quit IRC
[23:11:45] *** andtorg has quit IRC
[23:11:51] *** jetpackjoe has quit IRC
[23:11:55] *** erol has quit IRC
[23:12:06] *** CodeTroth has quit IRC
[23:13:05] *** jareddlc_ has quit IRC
[23:13:14] *** kriskropd has quit IRC
[23:13:15] *** kriskropd has joined #angularjs
[23:13:18] *** jareddlc has joined #angularjs
[23:14:00] *** baweaver has quit IRC
[23:14:09] *** steeze has quit IRC
[23:14:20] *** ron_frown has quit IRC
[23:14:28] *** rickhanlonii has joined #angularjs
[23:14:28] *** bayousoft has quit IRC
[23:14:52] *** erol has joined #angularjs
[23:15:21] *** CodeMonkey has joined #angularjs
[23:15:23] *** w00tner has quit IRC
[23:16:04] *** dimtruck is now known as zz_dimtruck
[23:16:45] *** elyssonmr has quit IRC
[23:17:15] *** eago has quit IRC
[23:18:47] *** fnx has quit IRC
[23:19:11] *** rickhanlonii has quit IRC
[23:19:43] *** bayousoft has joined #angularjs
[23:21:58] *** atomicb0mb has joined #angularjs
[23:23:53] *** intellix has quit IRC
[23:24:35] *** steeze has joined #angularjs
[23:24:46] *** OtherAllan has quit IRC
[23:25:54] *** dev310per has quit IRC
[23:26:34] *** elrabin has quit IRC
[23:27:04] *** nanuko has quit IRC
[23:27:04] *** elrabin has joined #angularjs
[23:27:14] *** steeze has quit IRC
[23:27:36] *** nanuko has joined #angularjs
[23:27:38] *** steeze has joined #angularjs
[23:28:55] *** ilmgb has quit IRC
[23:29:12] *** steeze has joined #angularjs
[23:30:27] *** steeze has quit IRC
[23:31:00] *** steeze has joined #angularjs
[23:31:08] *** jlebrech has joined #angularjs
[23:31:47] *** andricDu has quit IRC
[23:31:54] *** CAPITANOOO has quit IRC
[23:32:18] *** lindenle has joined #angularjs
[23:32:48] <lindenle> Hi all how can I catch a rootScope broadcast in a service?
[23:33:04] *** Scubao has quit IRC
[23:33:18] *** jxv has joined #angularjs
[23:34:42] *** PeterBooker has quit IRC
[23:34:42] <lindenle> i.e. in a factory?
[23:34:45] *** ren0v0 has quit IRC
[23:34:48] *** bayousoft has quit IRC
[23:35:53] *** ren0v0 has joined #angularjs
[23:35:59] *** jlebrech has quit IRC
[23:36:00] *** baweaver has joined #angularjs
[23:36:19] *** sobol has joined #angularjs
[23:37:13] <icfantv> lindenle: you can't and shouldn't
[23:37:28] <icfantv> events are for scope hierarchy only
[23:37:35] <icfantv> lindenle: what are you trying to do?
[23:37:48] *** intellix has joined #angularjs
[23:38:03] *** CAPITANOOO has joined #angularjs
[23:38:09] *** encryptd_fractal has quit IRC
[23:38:54] *** CAPITANOOO has quit IRC
[23:39:03] *** intellix has quit IRC
[23:39:09] *** CAPITANOOO has joined #angularjs
[23:39:29] <Foxandxss> he can but he shouldn't
[23:39:54] <Foxandxss> you normally shouldn't use events
[23:40:06] *** zigzagzig has quit IRC
[23:40:34] *** baweaver has quit IRC
[23:40:35] *** lindenle has quit IRC
[23:40:40] *** annlewis has joined #angularjs
[23:41:00] <icfantv> no. he can't.
[23:41:01] <icfantv> :-)
[23:45:10] *** annlewis has quit IRC
[23:45:18] <icfantv> we shouldn't be teaching people how to design an app badly
[23:46:03] *** marie1972 has joined #angularjs
[23:46:27] *** greengriminal has joined #angularjs
[23:46:33] *** buzzedword has joined #angularjs
[23:47:23] *** sonofdirt has quit IRC
[23:47:34] *** sobol has quit IRC
[23:48:54] *** mellernoia has joined #angularjs
[23:49:18] *** dev310per has joined #angularjs
[23:49:22] *** atomicb0mb has quit IRC
[23:49:33] *** dev310per has quit IRC
[23:49:38] *** obbs has joined #angularjs
[23:50:25] *** greengriminal has quit IRC
[23:50:51] *** atomicb0mb has joined #angularjs
[23:51:04] *** erol has quit IRC
[23:51:25] *** buzzedword has quit IRC
[23:52:05] *** syzygy_ has quit IRC
[23:52:13] *** marie1972 has left #angularjs
[23:53:13] *** CAPITANOOO has quit IRC
[23:56:11] *** doginal_ has joined #angularjs
[23:57:14] *** Sna4x8 has quit IRC
[23:57:15] *** doginal has quit IRC
[23:57:15] *** doginal_ is now known as doginal
[23:57:39] *** Sna4x8 has joined #angularjs
[23:58:30] *** ringzer0 has quit IRC
[23:58:57] *** empyreanx has joined #angularjs
[23:59:13] *** chrisbirk has quit IRC
[23:59:26] *** ringzer0 has joined #angularjs