[00:00:03] *** aoeu256 has joined #angularjs
[00:00:32] *** AxldenieD has quit IRC
[00:02:06] *** syzygy_ has quit IRC
[00:02:36] *** luckyLucke has left #angularjs
[00:03:22] *** s3shs has joined #angularjs
[00:04:02] *** Aliks has joined #angularjs
[00:05:16] *** kramer65 has quit IRC
[00:05:58] *** dpicky has joined #angularjs
[00:06:08] *** ethlor has joined #angularjs
[00:06:40] <nurp> "anybody know"
[00:08:26] *** Bomber4Chats has quit IRC
[00:08:36] *** Aliks has quit IRC
[00:09:01] *** leolrrj has quit IRC
[00:09:29] *** leolrrj has joined #angularjs
[00:10:10] *** nurp has quit IRC
[00:12:24] *** encryptd_fractal has joined #angularjs
[00:12:42] *** encryptd_fractal has joined #angularjs
[00:13:00] *** jspeck has quit IRC
[00:14:10] *** airtonix_ has joined #angularjs
[00:14:58] *** airtonix has quit IRC
[00:15:55] *** dpicky has quit IRC
[00:17:24] <ycon_> hi all, Im stiill stuck. Angular isnt seeing my pages as 'different' to eachother. EG x.com/id/3 & x.com/id/9 shows the same content
[00:18:15] *** morissette has quit IRC
[00:21:14] *** encryptd_fractal has quit IRC
[00:21:27] *** bcSquared has quit IRC
[00:21:37] *** max_dev has quit IRC
[00:21:59] *** LeBlaaanc has quit IRC
[00:22:08] *** nerium has joined #angularjs
[00:22:28] *** italoacasas has quit IRC
[00:22:56] *** Poeticode has joined #angularjs
[00:22:59] <nerium> Would angular be a good fit for a complex single page UI wuthout any routes? We’re talknig about states that doesn’t have to be persised in the url
[00:23:13] <da_wunder> ycon_: for starter you should do that $http call within route resolve
[00:23:31] <da_wunder> so that controller is hit when you have that data
[00:23:35] *** mv79 has joined #angularjs
[00:23:48] *** Bomber4Chats has joined #angularjs
[00:24:25] *** jspeck has joined #angularjs
[00:26:31] *** bayousoft has quit IRC
[00:26:58] <da_wunder> that doesn't seem like it should be
[00:27:24] *** dan2k3k4 has quit IRC
[00:28:36] *** leolrrj-alt has joined #angularjs
[00:28:38] *** leolrrj has quit IRC
[00:29:10] *** leolrrj-alt has quit IRC
[00:29:44] *** leolrrj has joined #angularjs
[00:30:50] *** swordfish has joined #angularjs
[00:31:35] *** mv79 has quit IRC
[00:32:54] *** MrTost has joined #angularjs
[00:32:55] *** jbarket has joined #angularjs
[00:33:22] <Poeticode> Yeah, @ nerium. You don't need to mess with url routing at all. Just set up controllers for all the modules on your site, and persist data with services.
[00:33:34] *** cvander has joined #angularjs
[00:33:42] *** bbankes has quit IRC
[00:34:14] <da_wunder> ycon_: also that factory that contains that parsing seems a bit weird
[00:34:49] *** skcin7 has joined #angularjs
[00:35:57] *** mary5030 has quit IRC
[00:36:38] *** macabre has quit IRC
[00:36:45] *** swordfish has quit IRC
[00:37:57]
<ycon_> da_wunder: What do you mean by wierd? I tried your route example, Guessing its pretty wrong http://dpaste.com/3HE5FB2
[00:38:16] *** encryptd_fractal has joined #angularjs
[00:38:17] <MrTost> hi, i am using angular 2.0. When i use this: <a href="" (click)="toogleMenu()" "></a> ... it causes and page refresh, there is an way to use the "a" tag and not reload the page, using router and angular 2.0?
[00:38:27] *** baweaver has joined #angularjs
[00:38:45] <da_wunder> ycon_: and you're not injecting that _book to your controller...
[00:39:05] *** skcin7 has quit IRC
[00:39:21] *** c00ljs has joined #angularjs
[00:39:29] <da_wunder> ycon_: and your factory is bit a weird, you're doing that parameter parsing there which is just wrong
[00:39:54] <ycon_> da_wunder: the split bit?
[00:40:19] <da_wunder> yep, because you have that param in your $stateParam
[00:40:27] <da_wunder> which you should handle in your route
[00:40:34] *** mocx has joined #angularjs
[00:40:53] <da_wunder> resolve section there
[00:40:55] *** chairmanmow has quit IRC
[00:41:05] <mocx> does anyone know of an example using ngMessages with the mongoosejs browser component?
[00:41:22] <ycon_> Poeticode: Ok- I wont touch the routes. Can you give me an example of controllers for all modules and how to persist data with services?
[00:42:35] *** fees has quit IRC
[00:43:16] *** nanuko has quit IRC
[00:43:50] *** baweaver has quit IRC
[00:44:25] <da_wunder> ycon_: and in your paste "//Is this the module" no, it's service that resolve function uses
[00:44:48] <da_wunder> and if you use that code like that you should get a numerous errors in your console
[00:44:51] <Poeticode> ycon_: that's a bit too general of a question... You'll likely need to use routes if you're wanting to load an entirely new template. and creating controllers for every module should be self-evident once you go through the beginner tutorial for them.
[00:45:01] *** miqid has joined #angularjs
[00:45:14] *** deadlock has joined #angularjs
[00:45:15] *** deadlock is now known as lastson
[00:45:46] <Poeticode> persisting data with services is just a matter of injecting the service into each controller with getters/setters for the shared data
[00:46:18] *** Jardayn has quit IRC
[00:47:19]
<ycon_> da_wunder: Ok, I think Ive done what you've suggested. No errors- but page doesn't actuall appear (see a brief URL change, then goes back). http://dpaste.com/2XEE8CR
[00:48:08] <da_wunder> ycon_: and again you don't have that Product service what you're calling in your resolve
[00:48:24] <da_wunder> and that should get some error
[00:48:49] <da_wunder> also not sure if your index.html is constructed as the way in my app
[00:48:54] *** jspeck has quit IRC
[00:49:04] <ycon_> da_wunder: I thought it belonged in the controller? Productview in the controller?
[00:49:13] <da_wunder> which will affect that routing.js views config
[00:49:26] *** nanuko has joined #angularjs
[00:49:48] *** mv79 has joined #angularjs
[00:49:58] <da_wunder> ycon_: "Product.fetch($stateParams.id, {product: 'id'});" where is that "Product" service?
[00:50:54] <ycon_> I was using it like a directive- what is that part looking for?
[00:50:58] <itaipu> Hi, I'm new to angular, I noted there is already a 2.0 beta; but most of tutorials I've seem so far is using 1.4; and I downloaded the 1.4; All 1.4 is supported for 2.0 ? And where I can find the changelog (user friendly one) :) ?
[00:51:23] <da_wunder> that has nothing to do with directives
[00:54:29] *** fscala has quit IRC
[00:55:23] *** ahhhndi has joined #angularjs
[00:55:40] *** ahhhndi has quit IRC
[00:55:48] *** italoacasas has joined #angularjs
[00:55:53] *** senayar has quit IRC
[00:57:21] *** fscala has joined #angularjs
[00:59:00] *** antiPoP has quit IRC
[00:59:14] *** mv79 has left #angularjs
[01:00:48] *** jspeck has joined #angularjs
[01:02:00] *** MrTost has quit IRC
[01:02:13] *** jr3 has quit IRC
[01:02:32] *** rubyronin has joined #angularjs
[01:05:30] *** clearcut__ has quit IRC
[01:05:52] *** dpicky has joined #angularjs
[01:06:16] *** saberbabertwo has quit IRC
[01:06:36] *** dcherman has joined #angularjs
[01:06:54] *** s00pcan_ has joined #angularjs
[01:07:54] *** gladely has joined #angularjs
[01:07:58] *** rubyronin has quit IRC
[01:08:25] *** nanuko has quit IRC
[01:09:20] *** antiPoP has joined #angularjs
[01:09:39] *** mac_ified has quit IRC
[01:10:47] *** s3shs has quit IRC
[01:11:51] *** dcherman2 has joined #angularjs
[01:12:05] *** dpicky has quit IRC
[01:12:35] <i_am_banana> anyone done javascript inheritance with angualr js services?
[01:14:07] *** Eadaro has quit IRC
[01:14:13] *** swordfish has joined #angularjs
[01:14:33] *** dcherman has quit IRC
[01:14:35] *** ethlor has quit IRC
[01:14:51] *** beckyconning_ has quit IRC
[01:15:16] *** ethlor has joined #angularjs
[01:17:22] *** encryptd_fractal has quit IRC
[01:17:24] *** dcherman2 has quit IRC
[01:18:49] *** tobias47n9e__ has joined #angularjs
[01:19:01] *** Kwoth has quit IRC
[01:20:22] *** tiwest has quit IRC
[01:20:22] *** tiwest has joined #angularjs
[01:20:52] <G1eb> Poeticode thanks :)
[01:20:53] *** swordfish has quit IRC
[01:21:41] *** Eadaro has joined #angularjs
[01:22:03] *** schneider has quit IRC
[01:22:36] *** tobias47n9e_ has quit IRC
[01:22:59] *** edrocks_ has joined #angularjs
[01:23:50] *** edrocks has quit IRC
[01:23:50] *** regedit-work has quit IRC
[01:23:50] *** empyreany has quit IRC
[01:25:21] *** ron_frown has joined #angularjs
[01:26:01] *** geiltalasdair has joined #angularjs
[01:26:20] *** geilt has quit IRC
[01:26:41] *** Eadaro has quit IRC
[01:28:05] *** s3shs has joined #angularjs
[01:28:50] *** ome has joined #angularjs
[01:29:28] *** ron_frown has quit IRC
[01:29:41] *** sbellina has joined #angularjs
[01:31:17] *** mary5030 has joined #angularjs
[01:32:07]
<ycon_> I'm still not able to get resolve working- my routing doesnt direct to the page. For a split second the url changes, but the pages doesnt move. http://dpaste.com/0F1BJS4
[01:32:14] *** p0k0 has joined #angularjs
[01:33:28] *** lastson has quit IRC
[01:37:00] *** speeddragon has joined #angularjs
[01:38:32] *** hefox has quit IRC
[01:39:28] *** baweaver has joined #angularjs
[01:40:34] *** s00pcan_ has quit IRC
[01:41:20] *** speeddragon has quit IRC
[01:42:34] *** s00pcan_ has joined #angularjs
[01:44:03] *** swordfish has joined #angularjs
[01:44:15] *** baweaver has quit IRC
[01:46:37] *** juddey has quit IRC
[01:47:02] *** ilmgb has joined #angularjs
[01:47:21] *** dan2k3k4 has joined #angularjs
[01:48:01] *** italoacasas has quit IRC
[01:49:24] *** Eadaro has joined #angularjs
[01:49:25] *** Bomber4Chats has quit IRC
[01:49:53] *** i_am_banana has quit IRC
[01:49:58] *** mary5030 has quit IRC
[01:51:17] *** ilmgb has quit IRC
[01:51:40] *** tayfun has quit IRC
[01:52:50] *** vandyk has joined #angularjs
[01:54:01] *** tayfun has joined #angularjs
[01:55:15] *** soee_ has quit IRC
[01:55:29] *** dimtruck is now known as zz_dimtruck
[01:56:07] *** s00pcan_ has quit IRC
[01:57:46] *** Mediogre has joined #angularjs
[01:58:24] *** ad0le has joined #angularjs
[01:59:02] *** ethlor has joined #angularjs
[01:59:32] *** step1step2 has joined #angularjs
[02:00:19]
<ycon_> da_wunder: I've sone as you advised- the URL seems to change for a split second, but the page doesnt move. Any suggestion? http://dpaste.com/388514P
[02:00:46]
<ad0le> Evening everyone, I'm working on my first angular app (c# background). Trying to figure out how to create an event that fires (only) after all the modules have loaded their REST data, then reads the query string so it can act upon that data if necessary. App can be found here : http://kwizical.com
[02:02:11] *** Razerglass has quit IRC
[02:02:25] <ad0le> can I just put an on event in the root scope that listens for a onDataLoadComplete that then parses the query string?
[02:03:18] *** Razerglass has joined #angularjs
[02:03:30] *** rickmak has joined #angularjs
[02:04:14] *** mnzaki has quit IRC
[02:07:02] *** hefox has joined #angularjs
[02:07:38] *** www has joined #angularjs
[02:07:57] <www> like
[02:08:02] *** www is now known as Guest75631
[02:08:14] <ad0le> like what?
[02:08:19] <ad0le> a rolling stone?
[02:08:34] *** vandyk has quit IRC
[02:08:50] *** eivindr has joined #angularjs
[02:09:09] *** JackFruh has joined #angularjs
[02:09:16] *** eivindr has quit IRC
[02:09:25] *** dpicky has joined #angularjs
[02:10:01] *** FIFOd has joined #angularjs
[02:10:15] *** iraj has quit IRC
[02:10:20] *** marr has quit IRC
[02:11:04] <ad0le> promisify is a nice word
[02:11:57] *** coderzm has joined #angularjs
[02:12:27] *** kgee has joined #angularjs
[02:12:50] *** s00pcan_ has joined #angularjs
[02:13:00] *** Guest75631 has left #angularjs
[02:14:06] *** dpicky has quit IRC
[02:14:47] *** bayousoft has joined #angularjs
[02:15:25] *** rickmak has quit IRC
[02:15:47] *** senayar has joined #angularjs
[02:15:48] *** senayar has joined #angularjs
[02:17:36] *** max_dev has joined #angularjs
[02:18:23] <Lansana> ycon_ how is your code set up? You'd probably want to use some kind of state params and if you are not using ui-router then you want to catch the params in the url and use that value to fetch certain data that is binded to the view
[02:20:03] <Lansana> ycon_ it seems you are using ui-router. Add a params: {id: null} to your route, and in the controller injext $stateParams and use $stateParams.id to fetch the id of the state, and then use that value in your service to fetch certain data
[02:20:14] <Lansana> inject*
[02:20:14] *** Jammy_Work has joined #angularjs
[02:21:25] <Lansana> so you can do something in your controller such as: vm.id or $scope.id = $stateParams.id. Then in your service (making one up) you can have a method that takes a id param and in your controller do myService.fetchData($scope.id)
[02:21:31] <Lansana> that's just an example
[02:21:37] *** swordfish has quit IRC
[02:22:00] <Lansana> and that'll show the proper "page" based on what the id is in the state
[02:22:46] *** vandyk has joined #angularjs
[02:23:16] *** Lansana has quit IRC
[02:23:41] *** Lansana has joined #angularjs
[02:23:48] *** Hammy_Work has quit IRC
[02:24:59] *** hefox has quit IRC
[02:25:46] *** vandyk has quit IRC
[02:28:23] *** swordfish has joined #angularjs
[02:28:43] *** s3shs has quit IRC
[02:30:50] *** nk121 has quit IRC
[02:32:06] *** italoacasas has joined #angularjs
[02:32:51] *** italoacasas has quit IRC
[02:33:30] *** italoacasas has joined #angularjs
[02:35:02] *** ico has quit IRC
[02:38:57] *** CAPITANOOO has joined #angularjs
[02:40:59] *** empyreanx has joined #angularjs
[02:41:09] *** FIFOd has quit IRC
[02:41:39] *** Lansana has quit IRC
[02:42:09] *** encryptd_fractal has joined #angularjs
[02:42:12] *** kgee has quit IRC
[02:43:49] *** ad0le has quit IRC
[02:44:37] <Ragnar> What is the secret to ensuring ios 9 safari hides the url bar when building a website?
[02:48:36] *** brunex has joined #angularjs
[02:48:47] *** antiPoP has quit IRC
[02:49:01] *** brunex is now known as Guest20459
[02:49:34] *** Dmitri has joined #angularjs
[02:50:47] *** joshontheweb has joined #angularjs
[02:50:55] *** Guest20459 has quit IRC
[02:51:19] *** brunex has joined #angularjs
[02:53:12] *** encryptd_fractal has quit IRC
[02:54:12] *** Dmitri has quit IRC
[02:57:47] *** LabCoatNomad has joined #angularjs
[02:58:08] *** node9 has joined #angularjs
[02:59:17] *** bayousoft has quit IRC
[02:59:48] *** LabCoatNomad has quit IRC
[03:02:10] *** diegoaguilar has quit IRC
[03:02:57] *** leolrrj has quit IRC
[03:03:12] *** CAPITANOOO has quit IRC
[03:04:18] *** rickmak_ has joined #angularjs
[03:04:29] *** s00pcan_ has quit IRC
[03:05:54] *** cocao has joined #angularjs
[03:09:00] *** baweaver has joined #angularjs
[03:10:45] *** Rou has joined #angularjs
[03:10:52] *** dpicky has joined #angularjs
[03:10:52] *** diegoaguilar has joined #angularjs
[03:11:27] *** skcin7 has joined #angularjs
[03:12:27] *** JackFruh has quit IRC
[03:12:45] *** macabre has joined #angularjs
[03:13:15] *** glitch-hat has joined #angularjs
[03:14:52] *** baweaver has quit IRC
[03:15:47] *** dpicky has quit IRC
[03:16:36] *** zz_dimtruck is now known as dimtruck
[03:17:17] *** JackFruh has joined #angularjs
[03:18:52] *** hackel has joined #angularjs
[03:19:32] *** diegoaguilar has quit IRC
[03:19:35] *** zdman135 has quit IRC
[03:20:09] <hackel> Is there an easy way to combine ng-if and ng-bind into a single directive? e.g. instead of <p ng-if="asdf" ng-bind="asdf"> you could just do <p ng-bind-if="asdf">
[03:20:49] *** LeBlaaanc has joined #angularjs
[03:20:50] *** Rou has quit IRC
[03:21:07] *** saberbabertwo has joined #angularjs
[03:21:52] *** anks has joined #angularjs
[03:22:26] *** bayousoft has joined #angularjs
[03:23:08] *** italoacasas has quit IRC
[03:23:17] <anks> I got JSON object array from JSP page but the haskKey for array is missing and ng-repeat is not working thereon
[03:25:38] *** LeBlaaanc has quit IRC
[03:28:17] *** glitch-hat has quit IRC
[03:29:04] *** coderzm has quit IRC
[03:29:06] *** Kwoth has joined #angularjs
[03:29:08] *** hrusti has quit IRC
[03:29:28] <Kwoth> Hello, i cannot figure out how to include normal .js files and use them with angular2, i tried everything...
[03:29:56] <Kwoth> I tried to put it in src at the beginning of the file and use it in angular component - nope
[03:30:37] <Kwoth> Tried import * as x from 'x', import from 'node_modules/x/src/x', impoty from 'node_modules/x/src/x.js'
[03:30:45] <Kwoth> none work, what the hell do i do?
[03:33:45] *** gambl0re has joined #angularjs
[03:34:16] *** zeezey has quit IRC
[03:34:17] *** zeezey has joined #angularjs
[03:37:12] *** gladely has quit IRC
[03:37:41] *** adavia has quit IRC
[03:37:51] *** cocao has quit IRC
[03:37:52] *** speeddragon has joined #angularjs
[03:38:04] *** rickmak_ has quit IRC
[03:40:42] *** burzum has joined #angularjs
[03:41:26] *** bayousoft has quit IRC
[03:41:42] *** bayousoft has joined #angularjs
[03:42:17] *** dan2k3k4 has quit IRC
[03:42:23] *** rickmak_ has joined #angularjs
[03:42:31] *** speeddragon has quit IRC
[03:42:33] *** p0k0 has quit IRC
[03:43:02] *** burzum2 has quit IRC
[03:43:16] *** rickmak_ has joined #angularjs
[03:43:50] *** adavia has joined #angularjs
[03:44:35] *** mellernoia has quit IRC
[03:44:48] *** rickmak_ has quit IRC
[03:45:35] *** fedenunez has joined #angularjs
[03:47:00] *** JackFruh has quit IRC
[03:47:39] *** ilmgb has joined #angularjs
[03:48:42] *** juddey has joined #angularjs
[03:49:38] *** rickmak has joined #angularjs
[03:52:30] *** ilmgb has quit IRC
[03:54:11] *** hackel has quit IRC
[03:55:00] *** bayousoft has quit IRC
[03:55:28] *** speeddragon has joined #angularjs
[03:55:36] *** beakman has quit IRC
[03:56:03] *** s00pcan_ has joined #angularjs
[03:56:12] *** anks has quit IRC
[03:56:15] *** p0k0 has joined #angularjs
[03:57:48]
<ycon_> Hi, my server only gets an empty dict, but chrome inspector shows this sending json data. Is my JS acutally sending it ? http://dpaste.com/19R2V2S
[03:58:27] *** rickmak has quit IRC
[03:59:32] *** JackFruh has joined #angularjs
[03:59:38] *** macabre has quit IRC
[04:00:02] *** charuru has quit IRC
[04:00:07] *** AlpacaOasis has quit IRC
[04:00:11] *** italoacasas has joined #angularjs
[04:00:11] *** speeddragon has quit IRC
[04:00:48] *** italoacasas has quit IRC
[04:01:22] *** rickmak has joined #angularjs
[04:01:27] *** italoacasas has joined #angularjs
[04:02:40] *** italoacasas has joined #angularjs
[04:04:04] *** macabre has joined #angularjs
[04:04:17] *** s00pcan_ has quit IRC
[04:07:42] *** italoacasas has quit IRC
[04:08:10] *** italoacasas has joined #angularjs
[04:09:46] *** gambl0re has quit IRC
[04:09:58] *** LeBlaaanc has joined #angularjs
[04:10:29] *** s00pcan_ has joined #angularjs
[04:10:43] *** Juanchito has quit IRC
[04:12:17] *** dpicky has joined #angularjs
[04:12:57] *** LeBlaaanc has quit IRC
[04:14:33] *** s3shs has joined #angularjs
[04:16:32] *** FIFOd has joined #angularjs
[04:18:00] *** dpicky has quit IRC
[04:18:09] *** shiriru has joined #angularjs
[04:18:28] <Kwoth> Also, i have no idea why can't i just do import {MyThingie} from ./mycomponent
[04:18:33] <Kwoth> i have to do ./mycomponent .js
[04:20:35] *** jrist has quit IRC
[04:20:54] *** s00pcan_ has quit IRC
[04:22:15] *** rickmak has quit IRC
[04:22:42] *** gladely has joined #angularjs
[04:23:22] *** brunex has quit IRC
[04:24:13] *** italoacasas has quit IRC
[04:25:25] *** swordfish has quit IRC
[04:27:35] *** s00pcan_ has joined #angularjs
[04:28:49] *** glitch-hat has joined #angularjs
[04:31:10] *** regedit has joined #angularjs
[04:31:45] <ycon_> Hi, my $http API is keeping data from the previous page (even though the API call keeps being done- ie I'm seeing new API data, but using the variable from another page)
[04:32:10] *** swordfish has joined #angularjs
[04:33:22] *** fakingfantastic has joined #angularjs
[04:33:25] *** left80 has joined #angularjs
[04:34:10] *** glitch-hat has quit IRC
[04:34:34] *** jrist has joined #angularjs
[04:35:41]
<ycon_> My question was confusing - this should show what I'm trying to do. Get my URL to show the passed variable when a new page opens. http://dpaste.com/23QAF9P
[04:36:47] *** itaipu has quit IRC
[04:37:34] *** left80 has left #angularjs
[04:38:13] *** beakman has joined #angularjs
[04:38:25] *** s00pcan_ has quit IRC
[04:38:28] *** quakephil has quit IRC
[04:38:32] *** ThuyNguyen has joined #angularjs
[04:41:41] <ThuyNguyen> Hi all, I am learning angular2 and es6, but I don't know should be use "traceur" or "babel" to compile es6?
[04:41:52] *** macabre has quit IRC
[04:44:07] *** s00pcan_ has joined #angularjs
[04:45:51] *** fakingfantastic has quit IRC
[04:47:45] *** FIFOd has quit IRC
[04:48:45] *** itaipu has joined #angularjs
[04:48:54] *** gambl0re has joined #angularjs
[04:49:58] *** swordfish has quit IRC
[04:50:32] *** bayousoft has joined #angularjs
[04:53:37] *** regedit has quit IRC
[04:54:52] *** rickmak has joined #angularjs
[04:54:52] *** shiriru has quit IRC
[04:55:42] *** squeakytoy has joined #angularjs
[04:56:05] *** rickmak has quit IRC
[04:57:55] *** gladely has quit IRC
[04:58:04] *** queakytoy has quit IRC
[04:58:35] *** gladely has joined #angularjs
[05:01:59] *** beakman has quit IRC
[05:02:09] *** rickmak has joined #angularjs
[05:07:02] *** bayousoft has quit IRC
[05:07:25] *** beakman has joined #angularjs
[05:08:52] *** swordfish has joined #angularjs
[05:09:46] *** yes`r has quit IRC
[05:12:15] *** s00pcan_ has quit IRC
[05:13:50] *** dpicky has joined #angularjs
[05:15:28] *** JoshGlzBrk has joined #angularjs
[05:17:41] *** joshontheweb has quit IRC
[05:18:26] *** ron_frown has joined #angularjs
[05:19:20] *** dpicky has quit IRC
[05:21:44] *** yes`r has joined #angularjs
[05:23:42] *** saberbabertwo has quit IRC
[05:26:23] *** swordfish has quit IRC
[05:28:24] *** miqid has quit IRC
[05:28:56] *** saberbabertwo has joined #angularjs
[05:30:16] *** [psy] has joined #angularjs
[05:30:31] *** taxilian has joined #angularjs
[05:30:45] <taxilian> does anyone know if there is anything current which illustrates best practices for angular 1.5 components in typescript? I've found a few articles that seem almost contradictory, and I'm not sure if that's just multiple ways of doing the same thing or if something has changed
[05:33:43] *** psy_ has joined #angularjs
[05:36:13] *** JackFruh has quit IRC
[05:36:38] *** [psy] has quit IRC
[05:40:47] *** hackel has joined #angularjs
[05:41:25] *** yes`r has quit IRC
[05:45:19] *** swordfish has joined #angularjs
[05:48:25] *** ilmgb has joined #angularjs
[05:48:41] *** speeddragon has joined #angularjs
[05:53:08] *** ilmgb has quit IRC
[05:53:32] *** speeddragon has quit IRC
[05:55:18] *** s3shs has quit IRC
[05:55:32] *** beakman has quit IRC
[05:56:24] *** gambl0re has quit IRC
[05:57:15] *** ciawal has quit IRC
[05:57:22] *** swordfish has quit IRC
[05:57:34] *** gambl0re has joined #angularjs
[05:58:40] *** swordfish has joined #angularjs
[06:02:12] *** fedenunez1 has joined #angularjs
[06:02:13] *** beakman has joined #angularjs
[06:03:43] *** nanuko has joined #angularjs
[06:04:08] *** erve has joined #angularjs
[06:04:59] *** fedenunez has quit IRC
[06:06:42] *** rickmak has quit IRC
[06:06:51] *** dimtruck is now known as zz_dimtruck
[06:07:21] *** rickmak has joined #angularjs
[06:08:42] *** u0m3 has quit IRC
[06:09:34] *** u0m3 has joined #angularjs
[06:10:56] *** zz_dimtruck is now known as dimtruck
[06:12:40] *** jspeck has quit IRC
[06:12:42] *** senayar has quit IRC
[06:14:53] *** jspeck has joined #angularjs
[06:15:12] *** dpicky has joined #angularjs
[06:15:35] *** conan_the_destro has quit IRC
[06:16:16] *** jhirley has quit IRC
[06:17:34] *** jr3 has joined #angularjs
[06:19:57] *** webo has joined #angularjs
[06:20:26] *** dpicky has quit IRC
[06:23:16] <webo> lmk if you have any feedback
[06:24:34] *** aoeu256 has quit IRC
[06:24:57] *** BigBangUDR has joined #angularjs
[06:26:15] *** prasanna has joined #angularjs
[06:26:47] *** rickmak has quit IRC
[06:27:20] *** ron_frown has quit IRC
[06:27:29] *** baweaver has joined #angularjs
[06:27:57] *** swordfish has quit IRC
[06:28:39] *** max_dev has quit IRC
[06:29:20] *** max_dev has joined #angularjs
[06:30:02] *** Rebirth has joined #angularjs
[06:30:17] *** glitch-hat has joined #angularjs
[06:34:42] *** swordfish has joined #angularjs
[06:35:08] *** glitch-hat has quit IRC
[06:36:20] *** Ozd has joined #angularjs
[06:38:46] *** juddey has quit IRC
[06:39:14] *** c1v0 has joined #angularjs
[06:40:04] *** Aces_Charles has joined #angularjs
[06:40:47] *** Poeticode has quit IRC
[06:41:36] *** yes`r has joined #angularjs
[06:44:47] *** swordfish has quit IRC
[06:46:08] *** beakman has quit IRC
[06:47:27] *** swordfish has joined #angularjs
[06:48:27] *** nanuko has quit IRC
[06:49:32] *** juddey has joined #angularjs
[06:50:41] *** max_dev has quit IRC
[06:50:59] *** max_dev has joined #angularjs
[06:51:08] *** beakman has joined #angularjs
[06:52:21] *** Kwoth has quit IRC
[06:52:52] *** Ganesh has joined #angularjs
[06:53:16] *** Ganesh is now known as Guest9878
[06:54:21] *** swordfish has quit IRC
[06:54:49] *** swordfish has joined #angularjs
[06:55:41] *** one_zero has joined #angularjs
[06:55:41] *** jr3 has quit IRC
[06:57:38] *** sarvesh has joined #angularjs
[06:57:47] *** jr3 has joined #angularjs
[06:58:50] <sarvesh> hey hi all i want to store information into json using angular any one please help me out\
[07:00:05] *** swordfish has quit IRC
[07:02:30] *** webo has quit IRC
[07:03:26] *** sarvesh has quit IRC
[07:04:45] *** one_zero has quit IRC
[07:05:44] *** Tangy has joined #angularjs
[07:06:42] *** Tangy has left #angularjs
[07:07:09] *** swordfish has joined #angularjs
[07:07:58] *** Aliks has joined #angularjs
[07:12:25] *** Aliks has quit IRC
[07:12:43] *** gladely has quit IRC
[07:13:05] *** senayar has joined #angularjs
[07:13:25] *** one_zero has joined #angularjs
[07:16:00] *** Denis has joined #angularjs
[07:16:02] *** one_zero has quit IRC
[07:16:03] <Denis> Hey !
[07:16:13] <Denis> is anyone here ?
[07:16:24] *** Denis is now known as Guest91489
[07:16:51] *** dpicky has joined #angularjs
[07:17:27] <Guest91489> Anybody can tell me about file protocol features in angular js ?
[07:18:08] *** senayar has quit IRC
[07:18:12] <Guest91489> is there any feature to disable cors ?
[07:19:59] *** knownasilya has quit IRC
[07:20:21] *** saberbabertwo has left #angularjs
[07:21:34] *** chinmaychinmay has joined #angularjs
[07:22:11] *** dpicky has quit IRC
[07:25:59] *** sbellina has quit IRC
[07:26:56] *** hefox has joined #angularjs
[07:30:43] *** george_v has joined #angularjs
[07:31:02] *** smccarthy has quit IRC
[07:31:36] *** glitch-hat has joined #angularjs
[07:31:39] *** sbellina has joined #angularjs
[07:33:21] *** siba has quit IRC
[07:35:24] *** brockfredin has joined #angularjs
[07:35:36] *** c1v0 has quit IRC
[07:35:49] *** punknroll has joined #angularjs
[07:36:08] *** glitch-hat has quit IRC
[07:36:13] *** Burgerz has quit IRC
[07:36:16] *** rickmak has joined #angularjs
[07:38:00] *** adavia has quit IRC
[07:38:00] *** empyreanx has quit IRC
[07:38:43] *** marthinal has joined #angularjs
[07:39:17] *** Burgerz has joined #angularjs
[07:39:52] *** smuttepawar has joined #angularjs
[07:39:58] *** beakman has quit IRC
[07:40:10] *** one_zero has joined #angularjs
[07:40:39] <smuttepawar> Is there any way to call angular2 method from plain JavaScript
[07:42:05] *** squeakytoy has quit IRC
[07:43:18] *** Anil__ has joined #angularjs
[07:43:36] *** Heerok has joined #angularjs
[07:43:45] *** chairmanmow has joined #angularjs
[07:44:16] <Heerok> I am using input type="number" but it's allowing char 'e'
[07:44:32] <Ozd> heerok e is a number
[07:44:40] <Ozd> like pi
[07:44:41] <Ozd> or i
[07:44:52] <Heerok> ok
[07:45:27] <smuttepawar> Is there any way to call angular2 method from plain JavaScript
[07:45:54] *** marthinal has quit IRC
[07:46:05] <Heerok> Thanks ozd
[07:48:36] *** marthinal has joined #angularjs
[07:48:37] <Guest91489>
[07:48:42] *** Guest91489 has left #angularjs
[07:49:16] *** ilmgb has joined #angularjs
[07:51:16] *** swordfish has quit IRC
[07:51:27] *** swordfish has joined #angularjs
[07:52:56] *** Heerok has quit IRC
[07:53:28] *** smuttepawar has quit IRC
[07:53:55] *** ilmgb has quit IRC
[07:54:51] *** siba has joined #angularjs
[07:58:45] *** psy_ has quit IRC
[07:59:10] *** psy_ has joined #angularjs
[07:59:13] *** swordfish has quit IRC
[07:59:16] *** ilmgb has joined #angularjs
[08:00:33] *** swordfish has joined #angularjs
[08:00:50] *** juddey has quit IRC
[08:01:24] *** truckfondue has joined #angularjs
[08:01:52] *** Danielyan has joined #angularjs
[08:03:00] *** webo has joined #angularjs
[08:03:55] *** BigBangUDR has quit IRC
[08:04:39] *** truckfondue has quit IRC
[08:05:14] *** MacDaddy has joined #angularjs
[08:06:38] *** Aliks has joined #angularjs
[08:07:27] *** ome has quit IRC
[08:08:40] *** webo has quit IRC
[08:09:21] *** juddey has joined #angularjs
[08:10:17] *** punknroll has quit IRC
[08:12:52] *** Aliks_ has joined #angularjs
[08:12:58] *** diegoaguilar has joined #angularjs
[08:13:57] *** Dmitri has joined #angularjs
[08:14:07] *** rickmak has quit IRC
[08:14:27] *** senayar has joined #angularjs
[08:14:43] *** swordfish has quit IRC
[08:15:38] *** ycon_ has quit IRC
[08:15:43] *** Burgerz has quit IRC
[08:15:46] *** sigurding has joined #angularjs
[08:15:57] <sigurding> has anyone here used lodash with Angular 2?
[08:16:33] *** Aliks has quit IRC
[08:16:35] *** jr3 has quit IRC
[08:16:48] *** dan2k3k4 has joined #angularjs
[08:17:56] *** speeddragon has joined #angularjs
[08:18:22] *** dpicky has joined #angularjs
[08:18:44] *** senayar has quit IRC
[08:18:54] *** Dmitri has quit IRC
[08:21:26] *** swordfish has joined #angularjs
[08:21:51] *** chinmaychinmay has quit IRC
[08:22:14] *** speeddragon has quit IRC
[08:23:28] *** dpicky has quit IRC
[08:25:04] *** Burgerz has joined #angularjs
[08:26:21] *** rickmak has joined #angularjs
[08:26:34] *** Danielyan has quit IRC
[08:28:44] *** svycka has joined #angularjs
[08:28:49] *** Surfer has joined #angularjs
[08:29:21] *** swordfish has quit IRC
[08:29:56] *** Surfer has quit IRC
[08:30:25] *** nerium has quit IRC
[08:30:46] *** brownish has joined #angularjs
[08:31:38] *** brownish has quit IRC
[08:32:07] *** glitch-hat has joined #angularjs
[08:33:22] *** zivester has quit IRC
[08:33:51] *** drag0niu1 has joined #angularjs
[08:34:39] *** Burgerz has quit IRC
[08:34:47] <sigurding> no one?
[08:34:50] <sigurding> :-(
[08:35:09] *** dan2k3k4 has quit IRC
[08:35:40] *** dan2k3k4 has joined #angularjs
[08:36:53] *** drag0nius has quit IRC
[08:36:59] *** glitch-hat has quit IRC
[08:37:30] *** leolrrj has joined #angularjs
[08:37:36] *** joshontheweb has joined #angularjs
[08:38:48] *** erol has joined #angularjs
[08:39:16] *** iraj has joined #angularjs
[08:43:14] *** itaipu has quit IRC
[08:44:06] *** mary5030 has joined #angularjs
[08:45:05] *** Burgerz has joined #angularjs
[08:45:48] *** JoshGlzBrk has quit IRC
[08:45:48] *** dbclk has quit IRC
[08:48:09] *** baweaver has quit IRC
[08:48:15] *** swordfish has joined #angularjs
[08:48:43] *** fedenunez has joined #angularjs
[08:49:07] *** mary5030 has quit IRC
[08:50:14] *** danielemm has joined #angularjs
[08:50:35] *** fedenunez1 has quit IRC
[08:52:32] *** p0k0 has quit IRC
[08:54:06] *** hackel has quit IRC
[08:54:58] *** tarnus has quit IRC
[08:55:12] *** itaipu has joined #angularjs
[08:55:16] *** punknroll has joined #angularjs
[08:55:17] *** Aliks has joined #angularjs
[08:57:41] *** kerneldev has joined #angularjs
[08:57:44] *** tilen has joined #angularjs
[08:57:55] *** Aliks_ has quit IRC
[08:59:56] *** swordfish has quit IRC
[09:01:30] *** yes`r has quit IRC
[09:02:40] *** juddey has quit IRC
[09:03:07] *** glosoli has joined #angularjs
[09:04:34] *** marthinal has quit IRC
[09:04:46] *** mynameiswhat has joined #angularjs
[09:05:38] *** Aliks has quit IRC
[09:06:02] *** Dmitri has joined #angularjs
[09:06:58] *** Aliks has joined #angularjs
[09:09:57] *** juddey has joined #angularjs
[09:10:23] *** iceball has joined #angularjs
[09:10:48] *** jpstone has quit IRC
[09:12:08] *** Ozd has quit IRC
[09:12:20] *** Ozd has joined #angularjs
[09:13:24] *** plekplek has joined #angularjs
[09:13:33] *** Guest9878 has quit IRC
[09:13:37] *** gladely has joined #angularjs
[09:14:40] *** yOzd has joined #angularjs
[09:15:14] *** senayar has joined #angularjs
[09:15:14] *** senayar has joined #angularjs
[09:15:35] *** Ozd is now known as Guest47018
[09:16:02] *** yOzd is now known as Ozd
[09:16:41] *** dimtruck is now known as zz_dimtruck
[09:17:33] *** zz_dimtruck is now known as dimtruck
[09:17:59] *** mnzaki has joined #angularjs
[09:18:01] *** yuanxiaowa has joined #angularjs
[09:18:03] *** Guest47018 has quit IRC
[09:18:53] *** gladely has quit IRC
[09:19:53] *** dpicky has joined #angularjs
[09:20:43] *** Anil__ has quit IRC
[09:21:17] *** BigBangUDR has joined #angularjs
[09:21:29] *** senayar has quit IRC
[09:22:22] *** yuanxiaowa has quit IRC
[09:26:01] *** dpicky has quit IRC
[09:26:05] *** Daerist` has joined #angularjs
[09:26:58] *** nilsi has joined #angularjs
[09:27:05] *** BigBangUDR has quit IRC
[09:27:36] *** Sky[x] has joined #angularjs
[09:27:54] *** dimtruck is now known as zz_dimtruck
[09:28:51] *** marthinal has joined #angularjs
[09:30:03] *** Daerist has quit IRC
[09:31:24] *** juddey has quit IRC
[09:31:32] *** Aliks has quit IRC
[09:32:38] *** Daerist` is now known as Daerist
[09:32:40] *** pkeuter has joined #angularjs
[09:32:46] *** qdk has quit IRC
[09:32:51] *** Amaryl has joined #angularjs
[09:32:53] *** glitch-hat has joined #angularjs
[09:36:15] *** Aliks has joined #angularjs
[09:37:08] *** glitch-hat has quit IRC
[09:38:22] *** blackscorpionste has joined #angularjs
[09:38:34] *** k1ng440 has quit IRC
[09:40:13] *** psy_ has quit IRC
[09:41:16] *** davi has joined #angularjs
[09:41:16] *** davi has joined #angularjs
[09:42:03] *** eKyNoX has joined #angularjs
[09:43:29] *** AlecTaylor has joined #angularjs
[09:43:32] <AlecTaylor> hi
[09:44:07] <blackscorpionste> I am new at angular and was reading about two way data binding and I thought about this, if a create for instance $scope.value =""; at the controller and then I do somethinh in html like <input type="text" ng-model="value" />, is this a valid relationship?, I mean, if I type something on the textbox, the $scope.value will get the data of the textbox automatically
[09:44:33] <AlecTaylor> blackscorpionste: Yes, but use the ControllerAs syntax instead
[09:44:50] <sigurding> has anyone here used lodash with Angular 2?
[09:45:05] <blackscorpionste> Umm but I'm trying this and doesn't work
[09:45:09] *** node9 has quit IRC
[09:45:19] *** nivag has quit IRC
[09:45:29] *** punknroll has quit IRC
[09:45:39] *** Anil__ has joined #angularjs
[09:46:52] *** zz_dimtruck is now known as dimtruck
[09:47:33] <blackscorpionste> Can i paste code here?
[09:47:48] *** nivag has joined #angularjs
[09:48:49] *** yes`r has joined #angularjs
[09:49:25] *** b0xa has quit IRC
[09:49:52] *** b0xa has joined #angularjs
[09:49:52] *** b0xa has joined #angularjs
[09:50:38] *** rickmak has quit IRC
[09:50:51] *** Zeeshan_M has joined #angularjs
[09:50:54] *** BigBangUDR has joined #angularjs
[09:51:01] *** rickmak_ has joined #angularjs
[09:51:17] *** Anil__ has quit IRC
[09:51:58] *** Sharaal has joined #angularjs
[09:52:36] *** blackscorpionste has quit IRC
[09:54:16] *** ycon_ has joined #angularjs
[09:54:52] *** Aliks has quit IRC
[09:55:28] *** Aliks has joined #angularjs
[09:56:00] *** marr has joined #angularjs
[09:56:16] *** hefox has quit IRC
[09:56:30] *** phx has joined #angularjs
[09:56:33] <phx> morning
[09:56:40] *** dimtruck is now known as zz_dimtruck
[09:57:17] <AlecTaylor> sigurding: Sure
[09:57:20] <AlecTaylor> phx: Mornin'
[09:57:30] *** jspeck has quit IRC
[09:57:34] <sigurding> AlecTaylor: how did you manage to get it working?
[09:57:58] <sigurding> I added it to my System.config({});
[09:58:04]
<phx> i'm at the first steps learning angular, and i'm trying to load the ui.layout module, and i'm getting errors. i'm following the docs. could someone please take a look and give me some hints what am i messing up? so far it's just a few lines of copy-paste: http://wotsh.harmless.hu/index.html
[09:58:04] <sigurding> ah wait, I will make a gist
[09:58:38] *** one_zero has quit IRC
[09:59:14] *** Hounddog_ has quit IRC
[10:00:01] *** zeezey has quit IRC
[10:00:44] *** aoeu256 has joined #angularjs
[10:01:16] *** dopesong has joined #angularjs
[10:02:36] *** ervis has joined #angularjs
[10:03:24] *** hefox has joined #angularjs
[10:03:45] *** Hounddog has joined #angularjs
[10:04:24] *** Amaryl has quit IRC
[10:04:26] *** kevins has joined #angularjs
[10:04:41] *** Amaryl has joined #angularjs
[10:04:42] <kevins> Morning everybody! I looking for a solution to load a .json file on boot of angular application. I need it to configure the backend-url (the backend-url can change on deployment, that's why I want to use a file). Is there a solution to do it before injection loading? Thank you in advance
[10:05:19] *** webo has joined #angularjs
[10:06:22] *** hefox has quit IRC
[10:06:28] *** ahhhndi has joined #angularjs
[10:06:53] *** kramer65 has joined #angularjs
[10:08:18] *** one_zero has joined #angularjs
[10:09:26] *** webo has quit IRC
[10:13:02] <AlecTaylor> You might need the map files also
[10:13:04] *** plekplek has quit IRC
[10:13:10] *** glosoli has quit IRC
[10:13:20] <AlecTaylor> tsd install lodash --save
[10:13:23] <AlecTaylor> sigurding ^
[10:13:30] *** hefox has joined #angularjs
[10:13:41] *** glosoli has joined #angularjs
[10:13:52] *** hefox has quit IRC
[10:15:09] <AlecTaylor> sigurding: With a `/// <reference path='./typings/lodash/lodash.d.ts' />` in your .ts file also
[10:17:05] *** senayar has joined #angularjs
[10:17:19] *** qdk has joined #angularjs
[10:19:16] *** sbellina has quit IRC
[10:20:06] *** fees has joined #angularjs
[10:20:30] *** bks has joined #angularjs
[10:20:51] *** squeakytoy has joined #angularjs
[10:21:11] *** ziyadb has joined #angularjs
[10:21:11] *** tilen has quit IRC
[10:21:27] *** bks has quit IRC
[10:21:33] *** cotko has joined #angularjs
[10:21:45] *** skcin7 has quit IRC
[10:21:47] *** senayar has quit IRC
[10:23:00] <sigurding> AlecTaylor: hm ok, how do I trigger tsd install lodash?
[10:23:03] <sigurding> via npm?
[10:23:53] *** ycon_ has quit IRC
[10:23:56] *** punknroll has joined #angularjs
[10:24:15] *** ycon_ has joined #angularjs
[10:24:37] *** tayfun has quit IRC
[10:25:29] *** dpicky has joined #angularjs
[10:25:29] *** lnrdo has joined #angularjs
[10:26:17] *** BigBangUDR has quit IRC
[10:26:54] <sigurding> AlecTaylor: got it
[10:28:03] *** davi has quit IRC
[10:29:26] *** nya_ has joined #angularjs
[10:29:51] <sigurding> would that work the same way as well?
[10:29:52] *** sbasso has joined #angularjs
[10:31:47] *** rickmak_ has quit IRC
[10:32:11] *** glitch-hat has joined #angularjs
[10:34:47] *** nilsi has quit IRC
[10:35:10] *** diegoaguilar has quit IRC
[10:35:21] *** diegoaguilar has joined #angularjs
[10:35:34] *** nilsi has joined #angularjs
[10:38:08] *** speeddragon has joined #angularjs
[10:38:11] *** Perseus0 has joined #angularjs
[10:38:58] *** AlecTaylor has quit IRC
[10:39:09] *** ervis has quit IRC
[10:39:28] *** aoeu256 has quit IRC
[10:39:56] *** gogi19 has joined #angularjs
[10:40:03] *** skcin7 has joined #angularjs
[10:40:19] *** tilen has joined #angularjs
[10:40:37] *** gogi19 has quit IRC
[10:42:58] *** speeddragon has quit IRC
[10:45:04] *** ufk has quit IRC
[10:46:30] *** snail has joined #angularjs
[10:47:05] *** snail has quit IRC
[10:47:23] *** Danielyan has joined #angularjs
[10:47:38] *** davi has joined #angularjs
[10:47:39] *** davi has joined #angularjs
[10:47:39] *** erwq has joined #angularjs
[10:47:45] *** deadlock has joined #angularjs
[10:48:43] *** erwq has quit IRC
[10:48:47] *** yes`r has quit IRC
[10:49:55] *** c00ljs has quit IRC
[10:50:56] *** Chris___ has joined #angularjs
[10:51:10] *** whoammimi has joined #angularjs
[10:51:11] *** cacts has quit IRC
[10:51:30] *** Chris___ has left #angularjs
[10:51:57] *** whoammimi has left #angularjs
[10:52:31] *** deadlock has quit IRC
[10:52:39] *** FFF_ has joined #angularjs
[10:53:36] *** madhums has joined #angularjs
[10:56:05] *** tarnus has joined #angularjs
[10:56:41] *** one_zero has quit IRC
[10:56:43] *** startupality has joined #angularjs
[10:58:16] *** kerneldev has quit IRC
[11:00:20] *** tarnus has quit IRC
[11:00:32] *** glosoli has quit IRC
[11:00:39] *** glosoli_ has joined #angularjs
[11:01:23] *** danielemm has quit IRC
[11:01:23] *** leggo has joined #angularjs
[11:01:27] <leggo> hey dudes
[11:01:32] *** dpicky has quit IRC
[11:01:41] <leggo> so ive made my own async method using $q
[11:02:01] *** plekplek has joined #angularjs
[11:03:12] <leggo> my prolem is
[11:03:33] <leggo> iim returning the vm.data before the successCallback function is assigning the right object to vm.data
[11:03:36] <leggo> any help?
[11:03:47] *** davi has quit IRC
[11:05:00] *** ycon_ has quit IRC
[11:05:52] *** kk_drop has joined #angularjs
[11:07:01] *** dpicky has joined #angularjs
[11:07:44] *** davi has joined #angularjs
[11:07:45] *** davi has joined #angularjs
[11:08:04] <leggo> ??
[11:11:29] *** iceball has quit IRC
[11:11:55] *** uu has joined #angularjs
[11:14:20] *** gladely has joined #angularjs
[11:15:11] *** cotko has quit IRC
[11:15:14] *** Es0teric has joined #angularjs
[11:16:10] <Amaryl> I believe you should provide more context to your code. Why would you return vm.data at that point?
[11:16:45] *** Tennis has joined #angularjs
[11:17:25] *** iceball has joined #angularjs
[11:17:56] *** senayar has joined #angularjs
[11:18:16] *** BigBangUDR has joined #angularjs
[11:19:06] *** gladely has quit IRC
[11:20:07] *** ahhhndi has quit IRC
[11:20:43] *** japhar81 has quit IRC
[11:21:26] <leggo> Amaryl : its just $q service - getGeneralContent makes some logic, the resolves and returns a variable
[11:21:33] <leggo> you want the code?
[11:21:42] *** japhar81 has joined #angularjs
[11:22:06] <leggo> returns deferred.promise
[11:22:39] *** senayar has quit IRC
[11:23:32] *** step1step2 has quit IRC
[11:23:45] *** kk_drop has quit IRC
[11:23:46] *** step1step2 has joined #angularjs
[11:25:48] *** speeddragon has joined #angularjs
[11:26:42] *** iraj has quit IRC
[11:26:42] *** iraj has joined #angularjs
[11:27:03] *** Aliks_ has joined #angularjs
[11:28:15] *** yes`r has joined #angularjs
[11:30:41] *** p9op has joined #angularjs
[11:30:49] *** p9op has left #angularjs
[11:30:50] *** Aliks has quit IRC
[11:30:51] *** miqid has joined #angularjs
[11:31:23] *** BigBangUDR has quit IRC
[11:34:39] *** ThuyNguyen has quit IRC
[11:34:58] *** thuynguyen has joined #angularjs
[11:35:11] *** vinoth__ has joined #angularjs
[11:35:17] *** ycon_ has joined #angularjs
[11:36:12] <leggo> ::(
[11:36:28] *** c00ljs has joined #angularjs
[11:37:07] *** bePolite has joined #angularjs
[11:37:07] *** bePolite has joined #angularjs
[11:37:11] *** coderzm has joined #angularjs
[11:38:53] <thuynguyen> I'm learning angular2 + es6 + gulp, but I can't find one example that easy to learn, any suggest ?
[11:39:27] *** Aliks_ has quit IRC
[11:39:49] *** ycon_ has quit IRC
[11:39:53] *** Aliks has joined #angularjs
[11:40:47] *** phx has left #angularjs
[11:40:50] *** Dmitri has quit IRC
[11:41:24] <coderzm> hi all, i have a list item, which upon mouse click, has a class added to it. the class increases the height of the list item. Over in my controller, it gets the list item element when ng-click is called. however, the height of the list item is the old heigt. how can i call the new height from my controller? thanks
[11:41:25] *** Aliks has quit IRC
[11:44:06] *** bePolite has quit IRC
[11:44:55] *** bePolite has joined #angularjs
[11:44:55] *** bePolite has joined #angularjs
[11:45:29] *** vinoth__ has quit IRC
[11:46:11] *** hrusti_ has joined #angularjs
[11:47:41] *** zz_dimtruck is now known as dimtruck
[11:49:10] <leggo> iim returning the vm.data before the successCallback function is assigning the right object to vm.data
[11:49:12] <leggo> help :(
[11:49:19] *** iceball has quit IRC
[11:50:14] <hrusti_> should I assign new value to scope as well?
[11:50:35] *** bugkiller has joined #angularjs
[11:51:38] <hrusti_> leggo: maybe you should use promise?
[11:51:44] *** bakxsteen has joined #angularjs
[11:52:07] *** rickmak has joined #angularjs
[11:57:29] <leggo> im using the promise inside the getGeneralContent
[11:57:30] *** dimtruck is now known as zz_dimtruck
[11:57:32] <leggo> using $q
[11:57:39] *** elyssonmr has joined #angularjs
[11:58:47] *** vandyk has joined #angularjs
[12:00:20] <hrusti_> leggo: why don't you return promise instead vm.data?
[12:00:24] *** maryl has joined #angularjs
[12:01:35] *** jenelizabeth_ has quit IRC
[12:02:12] <leggo> im returning a deferred.promise
[12:02:35] <leggo> let me simplifiy it
[12:02:37] <leggo> one sec
[12:03:17] *** jenelizabeth_ has joined #angularjs
[12:03:34] <leggo> plunkr is down again
[12:03:35] <leggo> anyway
[12:04:30] *** one_zero has joined #angularjs
[12:04:43] <leggo> i got a service that returns a resolved promise, another service recives it, saves it an object on the service (for later, like a state service), and returns it to the controller
[12:04:55] <Zeeshan_M> Use jsbin.com ?
[12:05:12] *** skcin7 has quit IRC
[12:05:13] *** senayar has joined #angularjs
[12:05:39] *** davi has quit IRC
[12:07:09] *** shiriru has joined #angularjs
[12:09:48] <leggo> that's my flow
[12:10:15] *** roj has joined #angularjs
[12:10:25] *** rickmak has quit IRC
[12:11:13] *** bugkiller has quit IRC
[12:11:23] <roj> saw examples of angular2 apps. why are the script tags are inside the <head> and not under the <body> content?
[12:11:27] *** k1ng440 has joined #angularjs
[12:11:27] *** k1ng440 has joined #angularjs
[12:12:05] *** rickmak_ has joined #angularjs
[12:12:19] <roj> saw examples of angular2 apps. why are the script tags are inside the <head> and not under the <body> content?
[12:14:38] *** bePolite has quit IRC
[12:15:04] *** Dmitri has joined #angularjs
[12:16:33] *** kk_drop has joined #angularjs
[12:16:34] *** c00ljs has quit IRC
[12:18:39] *** Mizar has joined #angularjs
[12:19:42] *** c00ljs has joined #angularjs
[12:20:25] *** B0ltzy has joined #angularjs
[12:20:26] *** Guest3 has joined #angularjs
[12:20:53] *** AlecTaylor has joined #angularjs
[12:20:53] *** AlecTaylor has joined #angularjs
[12:23:36] *** Trygg has joined #angularjs
[12:25:18] <Trygg> Hey guys, I'm trying out the 2.0 beta and wonder if anyone knows about any resources on how to implement a scroll animation for a page?
[12:26:36] *** zz_dimtruck is now known as dimtruck
[12:27:29] *** dpicky has quit IRC
[12:27:42] *** roj has quit IRC
[12:28:32] *** bePolite has joined #angularjs
[12:28:33] *** bePolite has joined #angularjs
[12:28:59] *** Daerist has quit IRC
[12:29:02] *** Juergen4711 has joined #angularjs
[12:29:06] *** tuskkk___ has joined #angularjs
[12:29:28] *** bePolite has quit IRC
[12:29:59] *** ycon_ has joined #angularjs
[12:30:26] *** AlecTaylor has quit IRC
[12:31:10] *** tilen_k has joined #angularjs
[12:33:15] *** xwid has joined #angularjs
[12:33:48] *** sbasso_ has joined #angularjs
[12:34:05] *** davi has joined #angularjs
[12:34:06] *** davi has joined #angularjs
[12:34:06] *** tilen has quit IRC
[12:34:06] *** VeeWee has joined #angularjs
[12:35:04] *** ycon_ has quit IRC
[12:35:19] <hrusti_> not sure if it is right solution :)
[12:35:57] *** Mediogre has quit IRC
[12:36:15] *** dimtruck is now known as zz_dimtruck
[12:36:25] *** rickmak_ has quit IRC
[12:36:26] *** italoacasas has joined #angularjs
[12:37:17] *** iceball has joined #angularjs
[12:37:20] *** sbasso has quit IRC
[12:37:23] *** rickmak_ has joined #angularjs
[12:37:30] *** speeddragon has quit IRC
[12:37:53] *** tomphp has joined #angularjs
[12:38:47] *** skcin7 has joined #angularjs
[12:40:15] *** joshontheweb has quit IRC
[12:40:32] *** speeddragon has joined #angularjs
[12:40:56] *** B0ltzy has quit IRC
[12:40:56] *** Guest3 has quit IRC
[12:41:50] *** pbgc has joined #angularjs
[12:44:34] *** vandyk has quit IRC
[12:44:46] *** bakxsteen has quit IRC
[12:44:46] *** vandyk has joined #angularjs
[12:45:49] *** joshontheweb has joined #angularjs
[12:46:02] *** punknroll has quit IRC
[12:48:10] *** obbs has quit IRC
[12:48:11] *** Juergen4711 has quit IRC
[12:48:51] *** c00ljs has quit IRC
[12:48:58] *** rickmak_ has quit IRC
[12:49:03] *** BeLi4L has joined #angularjs
[12:50:05] *** B1x1t0 has joined #angularjs
[12:50:06] *** siba has quit IRC
[12:50:42] *** c00ljs has joined #angularjs
[12:51:00] *** rickmak_ has joined #angularjs
[12:51:03] *** startupality has quit IRC
[12:51:58] *** startupality has joined #angularjs
[12:52:02] *** Mizar has left #angularjs
[12:52:21] *** daslicht has joined #angularjs
[12:56:00] *** erol has quit IRC
[12:56:12] *** rickmak_ has quit IRC
[12:56:49] *** tarnus has joined #angularjs
[12:57:14] *** startupality has quit IRC
[12:57:51] *** rickmak has joined #angularjs
[12:58:05] *** madhums has quit IRC
[12:59:53] *** rickmak has quit IRC
[13:00:00] *** Vijquick has joined #angularjs
[13:01:02] *** AlecTaylor has joined #angularjs
[13:01:03] *** AlecTaylor has joined #angularjs
[13:01:40] *** tarnus has quit IRC
[13:02:56] *** Magik6k has quit IRC
[13:03:27] *** Magik6k has joined #angularjs
[13:03:46] <hrusti_> I don't get it :/
[13:04:02] *** k1ng4400 has joined #angularjs
[13:04:03] *** k1ng4400 has joined #angularjs
[13:04:06] *** jga_ has quit IRC
[13:04:55] *** BigBangUDR has joined #angularjs
[13:05:48] <maryl> imho...it's not binding the data it just copy them one time in each controller
[13:06:01] *** BigBangUDR has quit IRC
[13:06:13] *** jga_ has joined #angularjs
[13:06:20] *** kk_drop has quit IRC
[13:07:02] *** Danielyan has quit IRC
[13:07:22] *** k1ng440 has quit IRC
[13:07:28] *** tomphp has quit IRC
[13:07:48] *** tomphp has joined #angularjs
[13:08:58] *** kramer65 has quit IRC
[13:08:59] <hrusti_> maryl: do you now what do I need to change to bind it?
[13:09:31] *** jstroem has joined #angularjs
[13:09:48] *** rickmak has joined #angularjs
[13:11:00] <maryl> hrusti_: You can use $scope.$watch and update $scope.value on change
[13:11:14] *** senayar has quit IRC
[13:11:16] *** erol has joined #angularjs
[13:12:51] <hrusti_> maryl: Imo I should use services for sharing data between controllers ( there are many articles about it online )
[13:12:57] <hrusti_> But I am not sure how :/
[13:13:55] *** NellyvanDerBloom has joined #angularjs
[13:14:04] <hrusti_> I think I am close but still missing something
[13:14:09] *** Mo0O_ is now known as Mo0O
[13:14:24] *** madhums has joined #angularjs
[13:15:00] <maryl> You'r solution is ok but the scope isn't updating on every change in the service
[13:15:06] *** gladely has joined #angularjs
[13:15:49] *** NellyvanDerBloom has quit IRC
[13:16:52] *** aoeu256 has joined #angularjs
[13:16:56] *** jstroem has quit IRC
[13:17:43] <hrusti_> maryl: yes but why?
[13:18:12] *** yes`r has quit IRC
[13:18:20] <hrusti_> angular should call $apply, right?
[13:18:53] <maryl> nop, its not like that
[13:19:19] <maryl> try to apply the solution from my link and it'll work
[13:19:56] *** gladely has quit IRC
[13:20:17] *** VeeWee has quit IRC
[13:20:18] *** delgiudices has joined #angularjs
[13:20:39] <hrusti_> if I apply my solution I get $apply already in progress error :/
[13:22:02] *** SrinivasGowda has joined #angularjs
[13:22:17] *** Trygg has quit IRC
[13:22:52] *** Dmitri has quit IRC
[13:25:46] *** fscala has quit IRC
[13:26:35] <leggo> hrusti_ nope that's a bad solution
[13:26:44] <leggo> the promise is out of context
[13:27:24] *** fscala has joined #angularjs
[13:28:23] *** one_zero has quit IRC
[13:29:54] *** c00ljs has quit IRC
[13:31:16] *** c00ljs has joined #angularjs
[13:33:18] *** danielemm has joined #angularjs
[13:33:48] *** Daerist has joined #angularjs
[13:34:24] *** Mediogre has joined #angularjs
[13:34:40] *** SalexW has joined #angularjs
[13:35:07] <maryl> hrusti_: just make sure You un-watch it later on $destroy event :)
[13:36:50] *** rickmak has quit IRC
[13:37:11] *** Dmitri has joined #angularjs
[13:38:06] *** Jardayn has joined #angularjs
[13:38:48] *** italoacasas has quit IRC
[13:38:50] <hrusti_> maryl: that link has syntaxError?
[13:39:08] *** madhums has quit IRC
[13:39:45] *** dbclk has joined #angularjs
[13:39:46] <maryl> I use ES2015 syntax, replace () => with function ()
[13:41:20] *** ahhhndi has joined #angularjs
[13:41:29] *** daslicht has quit IRC
[13:41:58] *** Aliks has joined #angularjs
[13:43:55] *** dopesong has quit IRC
[13:44:09] *** xtreamwayz has joined #angularjs
[13:44:44] *** delgiudices has quit IRC
[13:45:21] *** kramer65 has joined #angularjs
[13:45:43] *** bbankes has joined #angularjs
[13:46:31] *** krusty_ar has joined #angularjs
[13:46:59] *** Aliks has quit IRC
[13:47:22] *** Dyuinco has joined #angularjs
[13:47:24] *** tilen_k has quit IRC
[13:47:38] *** punknroll has joined #angularjs
[13:50:35] *** c00ljs has quit IRC
[13:50:49] *** lnrdo has quit IRC
[13:51:56] *** fedenunez has quit IRC
[13:52:40] *** fedenunez has joined #angularjs
[13:52:52] *** fedenunez1 has joined #angularjs
[13:53:00] *** quakephil has joined #angularjs
[13:53:52] *** sigurding has quit IRC
[13:55:36] *** rickmak_ has joined #angularjs
[13:55:51] <hrusti_> maryl: yeah, it works but still using $watch, I am wondering if it could be done without $watch
[13:57:17] *** diegoaguilar has quit IRC
[13:57:24] *** iraj has quit IRC
[14:00:24] *** tarnus has joined #angularjs
[14:00:55] *** c00ljs has joined #angularjs
[14:02:11] *** rickmak_ has quit IRC
[14:03:24] *** diegoaguilar has joined #angularjs
[14:04:01] *** ycon_ has joined #angularjs
[14:05:02] * maryl at work
[14:06:06] *** marthinal has quit IRC
[14:06:36] *** erste has joined #angularjs
[14:07:15] *** diosney has joined #angularjs
[14:08:32] *** bePolite has joined #angularjs
[14:08:45] *** ycon_ has quit IRC
[14:09:46] *** tomphp has quit IRC
[14:09:48] *** ahhhndi has quit IRC
[14:10:14] *** bePolite has quit IRC
[14:10:39] *** joshontheweb has quit IRC
[14:12:14] *** tomphp has joined #angularjs
[14:12:16] *** [1]Dyuinco has joined #angularjs
[14:13:20] *** Dyuinco has quit IRC
[14:13:21] *** [1]Dyuinco is now known as Dyuinco
[14:13:45] *** yes`r has joined #angularjs
[14:14:08] *** lnrdo has joined #angularjs
[14:14:40] *** sigurding has joined #angularjs
[14:14:43] *** Perseus0 has quit IRC
[14:14:54] *** Dyuinco has quit IRC
[14:15:02] *** Dyuinco has joined #angularjs
[14:15:46] *** delgiudices has joined #angularjs
[14:17:11] *** jayeshsolanki has joined #angularjs
[14:17:15] *** mellernoia has joined #angularjs
[14:17:38] *** soee has joined #angularjs
[14:20:00] *** dopesong has joined #angularjs
[14:20:02] *** zotune has quit IRC
[14:23:59] *** Magik6k has quit IRC
[14:24:16] *** Magik6k has joined #angularjs
[14:27:01] *** LabCoatNomad has joined #angularjs
[14:27:20] *** zz_dimtruck is now known as dimtruck
[14:27:23] *** slacko41771 has joined #angularjs
[14:28:39] *** slacko41771 has quit IRC
[14:28:51] *** pbgc has quit IRC
[14:30:01] *** SrinivasGowda has quit IRC
[14:30:27] *** erste has quit IRC
[14:30:29] *** karthick has joined #angularjs
[14:30:52] *** karthick is now known as Guest49628
[14:32:36] *** madhums has joined #angularjs
[14:32:53] *** davlefouAMD has joined #angularjs
[14:32:53] *** Guest3 has joined #angularjs
[14:32:54] *** B0ltzy has joined #angularjs
[14:33:07] *** erste has joined #angularjs
[14:34:29] *** italoacasas has joined #angularjs
[14:35:05] *** italoacasas has quit IRC
[14:35:31] *** DJDelusional has joined #angularjs
[14:35:42] *** italoacasas has joined #angularjs
[14:36:58] *** italoacasas has joined #angularjs
[14:37:02] *** dimtruck is now known as zz_dimtruck
[14:37:33] *** italoacasas has quit IRC
[14:37:53] *** glitch-hat has quit IRC
[14:37:59] *** Vye has quit IRC
[14:38:03] *** italoacasas has joined #angularjs
[14:38:05] *** cdracars has quit IRC
[14:38:36] *** italoacasas has quit IRC
[14:38:45] *** cruxeternus has quit IRC
[14:38:45] *** cschneid has quit IRC
[14:38:46] *** drj_ has quit IRC
[14:40:10] *** erste has quit IRC
[14:40:26] *** speeddragon has quit IRC
[14:40:56] *** Aces_Charles has quit IRC
[14:41:45] <sigurding> how do I integrate legacy libraries like elasticsearch-browser into a Angular 2 application via System.js?
[14:43:18] *** erste has joined #angularjs
[14:45:48] *** danielemm has quit IRC
[14:46:06] *** davi has quit IRC
[14:46:42] *** ESpiney has joined #angularjs
[14:47:07] *** Guest49628 has quit IRC
[14:47:39] *** tomphp has quit IRC
[14:48:22] *** diosney has quit IRC
[14:48:30] *** diosney has joined #angularjs
[14:48:35] *** Guest3 has quit IRC
[14:48:36] *** B0ltzy has quit IRC
[14:48:55] *** Guest3 has joined #angularjs
[14:48:56] *** B0ltzy has joined #angularjs
[14:50:03] *** AlecTaylor has quit IRC
[14:50:54] *** marthinal has joined #angularjs
[14:51:29] *** c00ljs_ has joined #angularjs
[14:52:12] *** tomphp has joined #angularjs
[14:52:45] *** c00ljs has quit IRC
[14:55:18] *** Juergen4711 has joined #angularjs
[14:57:48] *** skunkz has joined #angularjs
[14:58:08] *** cschneid has joined #angularjs
[14:58:31] *** drj_ has joined #angularjs
[14:58:33] *** drej has quit IRC
[14:58:34] *** Vye has joined #angularjs
[14:59:42] *** erste has quit IRC
[15:00:16] *** cdracars has joined #angularjs
[15:00:20] *** corioliss has quit IRC
[15:00:35] *** pbgc has joined #angularjs
[15:00:36] *** ycon_ has joined #angularjs
[15:00:40] *** speeddragon has joined #angularjs
[15:01:21] *** cruxeternus has joined #angularjs
[15:01:26] *** foobarpt has joined #angularjs
[15:01:57] *** danielemm has joined #angularjs
[15:02:19] *** mhareza has joined #angularjs
[15:04:38] *** mary5030 has joined #angularjs
[15:04:40] *** elsevero has joined #angularjs
[15:04:55] *** ycon_ has quit IRC
[15:05:11] *** edrocks has joined #angularjs
[15:05:36] <mhareza> Hi guys, did somebody play with angular2 DynamicComponentLoader - I've tried to load component as root, component tag is replaced with component template but I am not able to display any data from "scope"
[15:06:26] *** mbalex99 has joined #angularjs
[15:06:29] <mbalex99> So what's the deal
[15:06:29] *** roachiep- has joined #angularjs
[15:06:36] <mbalex99> is this the best place or is the gitter thebest place?
[15:07:15] *** cdracars has quit IRC
[15:07:26] *** drj_ has quit IRC
[15:07:31] *** mbalex99 has quit IRC
[15:07:43] *** edrocks_ has quit IRC
[15:07:57] *** Vye has quit IRC
[15:08:16] *** erste has joined #angularjs
[15:09:14] *** roachiepoopoo has quit IRC
[15:09:59] *** Vye has joined #angularjs
[15:10:03] *** drj_ has joined #angularjs
[15:10:59] *** mhareza has quit IRC
[15:11:03] *** CAPITANOOO has joined #angularjs
[15:11:04] *** cdracars has joined #angularjs
[15:11:49] *** danielemm has quit IRC
[15:11:51] *** nocontrol has joined #angularjs
[15:12:11] *** diosney has quit IRC
[15:12:19] *** diosney has joined #angularjs
[15:12:33] *** CAPITANOOO has quit IRC
[15:13:17] *** Dmitri has quit IRC
[15:13:18] *** garyrog has joined #angularjs
[15:14:28] *** diosney has quit IRC
[15:14:28] *** garyrob has joined #angularjs
[15:14:35] *** diosney_ has joined #angularjs
[15:14:44] *** Rohit has joined #angularjs
[15:15:07]
<skunkz> Hi everyone, I'm trying to keep a reference on a selected item and update both when one change, can anyone have a look at this jsfiddle and explain me what's the best practice to do so ? http://jsfiddle.net/a2a4du89/3/
[15:15:40] <nocontrol> I am filtering a list and unfortunately the API I work with added an id==0 which breaks the filter. {{ (customers | filter:{id: ticket.customer_name})[0].name }}
[15:15:55] *** gladely has joined #angularjs
[15:15:58] <nocontrol> it works with any id other than "0"
[15:16:00] *** DJDelusional has quit IRC
[15:16:03] <nocontrol> can anyone help ?
[15:16:07] *** knownasilya has joined #angularjs
[15:16:08] *** devJunk has joined #angularjs
[15:16:11] <skunkz> My use case is : select the first item, you can see it's selected, then click on change, the name in the list does change but the selected value doesn't :/
[15:17:39] *** zivester has joined #angularjs
[15:17:43] *** Sky[x] has quit IRC
[15:18:04] *** shiriru has quit IRC
[15:18:57] <garyrob> I'm looking at the 5 minute quickstart page. If I click the Live Example link, it stalls. The status bar just says "Waiting for pinkr.co...". Thought it was worth mentioning.
[15:19:09] <garyrob> (This is for Angular 2.)
[15:19:09] *** diosney_ has quit IRC
[15:19:33] *** diosney has joined #angularjs
[15:19:44] *** c00ljs_ has quit IRC
[15:20:29] *** c00ljs has joined #angularjs
[15:20:32] *** cdracars has quit IRC
[15:20:45] *** brockfredin has quit IRC
[15:20:46] *** gladely has quit IRC
[15:21:06] *** erste has quit IRC
[15:22:18] *** glitch-hat has joined #angularjs
[15:24:17] *** madhums has quit IRC
[15:24:21] *** dbclk has quit IRC
[15:24:40] *** jenelizabeth_ has quit IRC
[15:25:19] *** cdracars has joined #angularjs
[15:25:29] *** zeezey has joined #angularjs
[15:25:51] *** Cokee has joined #angularjs
[15:26:28] *** jr3 has joined #angularjs
[15:28:38] *** Rohit has quit IRC
[15:28:41] *** Perseus0 has joined #angularjs
[15:29:28] *** Poeticode has joined #angularjs
[15:29:33] *** Jardayn has quit IRC
[15:30:41] *** cdracars has quit IRC
[15:32:17] *** glosoli_ has quit IRC
[15:34:33] *** Ozd has quit IRC
[15:34:38] *** cdracars has joined #angularjs
[15:34:45] *** afidegnum has joined #angularjs
[15:35:04] <afidegnum> hello, good morning,
[15:35:15] *** vandyk has quit IRC
[15:35:27] *** cdracars has quit IRC
[15:35:45] *** cdracars has joined #angularjs
[15:36:10] <maryl> goodafternoon =]
[15:36:26] *** cdracars has quit IRC
[15:37:13] *** cdracars has joined #angularjs
[15:37:56] *** B0ltzy has quit IRC
[15:37:57] *** Guest3 has quit IRC
[15:38:08] <afidegnum> I can see jquery goes with bootstrap, AngularJS goes with which html framework?
[15:38:55] <Poeticode> AngularJS can work with jquery and bootstrap
[15:39:08] *** Amaryl has quit IRC
[15:39:35] *** zac has joined #angularjs
[15:39:38] <Poeticode> And sorry maryl, that stackoverflow answer doesn't help you much. :p
[15:40:03] <afidegnum> ok
[15:40:50] *** plekplek has quit IRC
[15:40:58] *** kevins has quit IRC
[15:41:26] <nocontrol> why everything other than {{ (customers | filter:{id: "0"}) }} works when id > 0 ?
[15:43:36] *** ilmgb has quit IRC
[15:43:55] *** pbgc has quit IRC
[15:44:05] *** ilmgb has joined #angularjs
[15:44:58] *** delgiudices has quit IRC
[15:45:10] *** Guest3 has joined #angularjs
[15:45:11] *** B0ltzy has joined #angularjs
[15:46:26] *** lnrdo has quit IRC
[15:46:43] *** delgiudices has joined #angularjs
[15:46:57] <maryl> Poeticode: I know that link :) thats why I provided a playground with my specyfic problem
[15:47:00] *** lnrdo has joined #angularjs
[15:48:23] <Poeticode> Yeah… I noticed after I actually checked your code :/ I don't have time to look into it, sadly
[15:48:29] *** ilmgb has quit IRC
[15:48:32] *** killa_kyle has joined #angularjs
[15:48:54] *** lnrdo has quit IRC
[15:49:08] *** c00ljs has quit IRC
[15:51:22] *** c00ljs has joined #angularjs
[15:55:23] *** s3shs has joined #angularjs
[15:55:45] *** diosney has quit IRC
[15:55:57] *** diosney has joined #angularjs
[15:56:51] *** zeezey has quit IRC
[15:57:01] *** suffice has quit IRC
[15:57:15] *** pudo has quit IRC
[15:57:26] *** iceball has quit IRC
[15:57:29] *** macabre has joined #angularjs
[15:57:34] *** zeezey has joined #angularjs
[15:57:35] *** elijah has quit IRC
[15:57:44] *** suffice has joined #angularjs
[15:57:58] *** sterns has quit IRC
[15:58:31] *** Firstaye has joined #angularjs
[15:58:58] *** diosney has quit IRC
[15:59:05] *** diosney has joined #angularjs
[15:59:27] *** B0ltzy has quit IRC
[15:59:27] *** Guest3 has quit IRC
[16:00:17] *** pudo has joined #angularjs
[16:01:15] *** daredev has quit IRC
[16:01:19] <nocontrol> why everything other than {{ (customers | filter:{id: "0"}) }} works when id > 0 ? IS there something in Angular with zero ?
[16:01:55] *** ams_ has quit IRC
[16:02:42] *** daredev has joined #angularjs
[16:02:46] *** thuynguyen has quit IRC
[16:02:49] *** Ownix has quit IRC
[16:02:57] *** elijah has joined #angularjs
[16:03:52] *** Dmitri has joined #angularjs
[16:03:54] *** glitch-hat has quit IRC
[16:04:44] *** zeezey has quit IRC
[16:05:11] *** Ownix has joined #angularjs
[16:05:15] *** soren has quit IRC
[16:05:23] *** ams_ has joined #angularjs
[16:05:48] *** swordfish has joined #angularjs
[16:06:11] *** Z3R0 has joined #angularjs
[16:06:37] *** swordfish has quit IRC
[16:06:46] *** soren has joined #angularjs
[16:06:59] *** swordfish has joined #angularjs
[16:07:36] *** SET002 has joined #angularjs
[16:07:46] *** zeezey has joined #angularjs
[16:09:29] *** blackjid has quit IRC
[16:09:48] *** erol has quit IRC
[16:09:54] *** blackjid has joined #angularjs
[16:11:03] *** SET001 has quit IRC
[16:11:10] *** buzzedword has joined #angularjs
[16:13:08] *** iceball has joined #angularjs
[16:13:24] *** raijin has joined #angularjs
[16:13:34] *** pbgc has joined #angularjs
[16:14:09] *** fnx has joined #angularjs
[16:15:05] *** smccarthy has joined #angularjs
[16:18:32] *** jbarket has joined #angularjs
[16:18:55] *** bbankes has quit IRC
[16:19:13] *** c00ljs has quit IRC
[16:19:59] *** jayeshsolanki has quit IRC
[16:20:08] *** c00ljs has joined #angularjs
[16:20:26] *** sterns has joined #angularjs
[16:21:17] *** miqid has quit IRC
[16:21:36] *** dbkaplun has left #angularjs
[16:22:21] *** bakxsteen has joined #angularjs
[16:23:21] *** adavia has joined #angularjs
[16:24:23] *** Sky[x] has joined #angularjs
[16:25:13] *** Hello has joined #angularjs
[16:25:28] <Hello> hello all
[16:25:32] *** glitch-hat has joined #angularjs
[16:25:37] *** Hello is now known as Guest48195
[16:25:52] <Guest48195> ok
[16:25:57] *** chairmanmow has quit IRC
[16:26:09] <Guest48195> why like that
[16:27:15] *** mocx has left #angularjs
[16:27:34] *** jhirley has joined #angularjs
[16:27:56] *** zz_dimtruck is now known as dimtruck
[16:28:29] *** Es0teric has quit IRC
[16:31:14] *** c00ljs has quit IRC
[16:31:40] *** c00ljs has joined #angularjs
[16:32:36] *** elsevero has quit IRC
[16:32:43] *** sethetter has left #angularjs
[16:32:43] *** jubjub has joined #angularjs
[16:32:55] *** sethetter has joined #angularjs
[16:33:20] <jubjub> Hey guys, i was wondering if there was a way of using ng-options with a custom directive (that does not use a select input)
[16:33:54] *** charuru has joined #angularjs
[16:34:14] *** eKyNoX` has joined #angularjs
[16:37:19] *** chinmaychinmay has joined #angularjs
[16:37:34] *** eKyNoX has quit IRC
[16:37:55] *** c00ljs_ has joined #angularjs
[16:37:59] *** buzzedword has quit IRC
[16:38:37] *** c00ljs has quit IRC
[16:38:53] *** step1step2 has quit IRC
[16:39:17] *** Zalabinsky has joined #angularjs
[16:40:31] *** charuru has quit IRC
[16:41:49] *** chairmanmow has joined #angularjs
[16:45:01] *** Z3R0 has quit IRC
[16:45:44] *** bayousoft has joined #angularjs
[16:47:12] *** foobarpt has quit IRC
[16:47:28] *** skunkz has quit IRC
[16:47:37] *** tomphp has quit IRC
[16:47:51] *** rho has joined #angularjs
[16:47:52] *** rho has joined #angularjs
[16:48:27] *** vandyk has joined #angularjs
[16:49:14] *** Wiist has joined #angularjs
[16:49:18] *** conan_the_destro has joined #angularjs
[16:49:31] *** garyrob has quit IRC
[16:49:46] *** yanys has joined #angularjs
[16:50:46] <jbarket> afaik, ng-options just creates a list of <options> tags, so I don't know how useful it's going to be if you aren't using a select
[16:51:18] *** c00ljs_ has quit IRC
[16:51:38] <Wiist> Hi everyone, i was wondery if anyone already experience to be unable to load some fonts on ie with "@font-face failed OpenType embedding permission check. Permission must be Installable."
[16:51:43] *** pbgc has quit IRC
[16:51:50] *** jubjub has quit IRC
[16:52:40] *** waspinator_ has joined #angularjs
[16:52:58] *** c00ljs has joined #angularjs
[16:54:32] *** Z3R0 has joined #angularjs
[16:54:58] *** eKyNoX` has quit IRC
[16:55:28] *** madhums has joined #angularjs
[16:55:32] <Poeticode> You can access the source of ngOption, so you could perhaps roll your own version to handle whatever template you need
[16:55:38] *** elsevero has joined #angularjs
[16:55:52] *** Juergen4711 has quit IRC
[16:55:57] <Poeticode> @jubjub. also, is your name a Neopets reference, or purely coincidental?
[16:56:15] *** zivester has quit IRC
[16:56:38] <Poeticode> Because Jubjubs were my fav back in the day, lmao.
[16:56:50] *** mynameiswhat has quit IRC
[16:56:57] *** silveirado has joined #angularjs
[16:59:24] *** bePolite has joined #angularjs
[16:59:28] *** Sharaal has quit IRC
[17:00:07] *** silveirado has quit IRC
[17:00:31] *** madhums has quit IRC
[17:00:31] *** iraj has joined #angularjs
[17:02:03] *** davi has joined #angularjs
[17:02:24] *** Bomber4Chats has joined #angularjs
[17:02:45] <sigurding> how do I integrate legacy libraries like elasticsearch-browser into a Angular 2 application via System.js?
[17:03:35] *** raijin has quit IRC
[17:03:48] *** tomphp has joined #angularjs
[17:04:53] *** zeioth has joined #angularjs
[17:05:19] *** pbgc has joined #angularjs
[17:05:47] *** bayousoft has quit IRC
[17:06:03] *** elsevero has quit IRC
[17:06:13] <G1eb> Poeticode he left just before your reply
[17:06:15] *** dabdab has joined #angularjs
[17:06:18] *** dszmaj has joined #angularjs
[17:06:23] *** elsevero has joined #angularjs
[17:06:53] <G1eb> also the fix turned out to be catch `window.onbeforeunload` event
[17:07:10] <G1eb> none of the other proposed syntaxes worked
[17:07:30] <Poeticode> Dammit. People need to learn to afk indefinitely in IRC like the rest of us. D:
[17:07:36] *** Daerist has quit IRC
[17:08:45] *** bbankes has joined #angularjs
[17:10:11] *** credi has joined #angularjs
[17:10:28] <G1eb> yeah, and read back shit from weeks ago in a futule attempt to keep up with the conversation
[17:10:43] <G1eb> meanwhile missing all new messages that come in
[17:11:14] <Poeticode> nah, that's dumb
[17:11:25] *** mikeones has quit IRC
[17:11:41] <Poeticode> That's when you put /nick $name_vacation
[17:12:12] *** mikeones has joined #angularjs
[17:12:28] *** fedenunez1 has quit IRC
[17:12:59] *** cilkay has joined #angularjs
[17:13:33] <Poeticode> Or write something that saves any messages with certain keywords/your name into a log if you really want to keep up convos
[17:14:30] <G1eb> yeah, i was just checking if some people would agree on doing this
[17:14:48] <credi> Howdy, with v2 and <my-app> tag is it possible to have content in that tag, load up something dynamically (i.e. template) and both show up at the same time? For example: <my-app>Loading... @RenderBody()</my-app>
[17:14:48] <G1eb> would never do this myself hahahaha, lol
[17:14:55] *** daslicht has joined #angularjs
[17:14:56] <G1eb> ._.
[17:16:12] *** webo has joined #angularjs
[17:16:36] *** gladely has joined #angularjs
[17:16:44] *** jsheely|2 has joined #angularjs
[17:20:08] *** daslicht has quit IRC
[17:20:15] *** jsheely has quit IRC
[17:21:12] *** gladely has quit IRC
[17:21:35] *** svycka has quit IRC
[17:21:57] *** bakxsteen_ has joined #angularjs
[17:24:02] *** bakxsteen has quit IRC
[17:24:06] *** qdk has quit IRC
[17:27:20] *** busticat_ has quit IRC
[17:28:48] *** erol has joined #angularjs
[17:29:20] *** devJunk has quit IRC
[17:30:09] *** devJunk has joined #angularjs
[17:30:10] *** coderzm has quit IRC
[17:30:56] *** startupality has joined #angularjs
[17:32:24] *** Jardayn has joined #angularjs
[17:33:24] *** bayousoft has joined #angularjs
[17:33:26] *** hefox has joined #angularjs
[17:33:27] *** busticated has joined #angularjs
[17:35:09] *** maryl has quit IRC
[17:38:17] *** fscala has quit IRC
[17:38:51] *** gonengar has joined #angularjs
[17:38:54] <gonengar> hi there
[17:39:12] <gonengar> Is there a way to download angular 2 API for offline use?
[17:39:43] *** fscala has joined #angularjs
[17:40:15] *** TehShrike1 has joined #angularjs
[17:40:41] *** Z3R0 has quit IRC
[17:40:44] <TehShrike1> Any AngularJS contributors here to answer a question?
[17:41:05] *** credi has quit IRC
[17:41:05] <TehShrike1> I'm reading through the source for understanding, and am seeing some places that could be cleaned up a bit for clarity.
[17:41:22] <TehShrike1> Are the AngularJS devs open to those sorts of commits, or is it not worth bothering?
[17:41:24] *** JoshGlzBrk has joined #angularjs
[17:41:41] <TehShrike1> Should I assume that any obscurity is intentional/performant? :-P
[17:41:43] *** bakxsteen has joined #angularjs
[17:41:53] *** Bomber4Chats has quit IRC
[17:42:24] <G1eb> don't assume anything, if you find a way to make a contribution by improving the codebase, go for it
[17:42:31] *** JoshGlzBrk has quit IRC
[17:43:00] <TehShrike1> oh my goodness, there are 355 open pull requests and a CLI is required
[17:43:05] <TehShrike1> *CLA
[17:43:21] *** devJunk has quit IRC
[17:43:51] *** Z3R0 has joined #angularjs
[17:44:45] *** bakxsteen_ has quit IRC
[17:44:49] *** gladely has joined #angularjs
[17:44:50] *** Aliks has joined #angularjs
[17:45:27] *** platonic has joined #angularjs
[17:45:33] *** doodlehaus has joined #angularjs
[17:45:48] *** cvander has quit IRC
[17:45:53] *** platonic has quit IRC
[17:46:06] *** Dyuinco has quit IRC
[17:47:30] *** empyreanx has joined #angularjs
[17:48:55] *** Aliks has quit IRC
[17:49:12] *** dpicky has joined #angularjs
[17:49:13] *** zeioth has quit IRC
[17:50:08] *** iceball has quit IRC
[17:50:35] *** iceball has joined #angularjs
[17:50:36] *** bakxsteen has quit IRC
[17:50:42] *** gladely has quit IRC
[17:51:05] *** diegoaguilar has quit IRC
[17:52:29] *** Dmitri has quit IRC
[17:54:19] *** s3shs has quit IRC
[17:54:44] *** iceball has quit IRC
[17:54:51] *** packadal has joined #angularjs
[17:55:15] *** sigurding has quit IRC
[17:55:49] <packadal> hey there, is this the correct place to ask about angular material or is there a specific channel ?
[17:56:08] *** nicksloan- is now known as nicksloan
[17:56:09] *** nicksloan has joined #angularjs
[17:56:12] <afidegnum> hello, please can you offer a snippet of editable table? I have a 2 field Json data from remote url, and i want to load the data, Edit, Delete or add new one, all i m reading is still confusing,
[17:56:34] *** madhums has joined #angularjs
[17:56:36] *** diegoaguilar has joined #angularjs
[17:56:44] *** Guest48195 has quit IRC
[17:57:10] *** daslicht has joined #angularjs
[18:01:24] *** devJunk has joined #angularjs
[18:01:32] *** jpstone has joined #angularjs
[18:01:55] *** madhums has quit IRC
[18:02:02] *** LeBlaaanc has joined #angularjs
[18:02:02] *** hackel has joined #angularjs
[18:02:40] *** sbasso_ has quit IRC
[18:03:26] *** elsevero has quit IRC
[18:03:45] *** leggo has quit IRC
[18:04:22] *** Saifur has joined #angularjs
[18:04:29] *** glosoli has joined #angularjs
[18:04:37] *** qdk has joined #angularjs
[18:05:10] *** Magik6k has quit IRC
[18:05:33] *** cocao has joined #angularjs
[18:05:43] *** mellernoia has quit IRC
[18:05:46] *** daslicht has quit IRC
[18:05:52] *** devJunk has quit IRC
[18:05:52] *** delgiudices has quit IRC
[18:08:21] *** elsevero has joined #angularjs
[18:08:56] *** bePolite has quit IRC
[18:11:04] <G1eb> packadal, whats your question?
[18:11:21] *** devJunk has joined #angularjs
[18:11:36] *** jayeshsolanki has joined #angularjs
[18:11:43] *** BigBangUDR has joined #angularjs
[18:12:52] *** elsevero has quit IRC
[18:13:09] *** Saifur has quit IRC
[18:13:22] *** c00ljs has quit IRC
[18:14:37] *** drej has joined #angularjs
[18:15:00] *** zeioth has joined #angularjs
[18:15:07] *** Guest3 has joined #angularjs
[18:15:08] *** B0ltzy has joined #angularjs
[18:15:26] *** BigBangUDR has quit IRC
[18:15:35] *** danielemm has joined #angularjs
[18:15:41] *** itaipu has quit IRC
[18:16:04] *** Magik6k has joined #angularjs
[18:17:24] *** yanys has quit IRC
[18:17:39] *** Magik6k has joined #angularjs
[18:17:42] *** c00ljs has joined #angularjs
[18:18:06] *** doodlehaus has quit IRC
[18:18:07] *** Magik6k has joined #angularjs
[18:18:25] <TehShrike1> wtf. With the latest version of npm, running npm install in the Angular source directory runs a preinstall script that deletes the node_modules directory, right after everything was downloaded
[18:18:33] * TehShrike1 tableflips
[18:18:52] *** daynaskully has quit IRC
[18:18:54] <TehShrike1> 30 minutes trying to npm install in the Angular source directory, I think I'm out
[18:19:46] <G1eb> wut
[18:19:51] *** jcara has quit IRC
[18:19:54] <G1eb> that.. doesn't sound right
[18:20:20] *** jcara has joined #angularjs
[18:20:23] *** xwid has quit IRC
[18:20:40] *** zeioth has quit IRC
[18:21:16] <TehShrike1> so far every time I've tried to install, some dependency hasn't installed/built correctly, so I kept re-running
[18:21:47] <TehShrike1> eventually I upgraded from npm 3.3.x to 3.5.x and tried again, and after downloading a bunch of dependencies… it ran that preinstall script and wiped out node_modules
[18:21:54] *** Wiist has quit IRC
[18:23:42] *** zeioth has joined #angularjs
[18:23:47] *** nanuko has joined #angularjs
[18:24:54] <G1eb> heh, that's funny, did it remove all local node_modules or at root level of your app?
[18:25:06] *** sigurding has joined #angularjs
[18:25:19] <TehShrike1> I'm in a cloned copy of the AngularJS repo, this isn't my app
[18:25:21] *** skcin7_ has joined #angularjs
[18:25:26] *** skcin7 has quit IRC
[18:25:34] <G1eb> ah I see
[18:25:37] <TehShrike1> and it deleted the node_modules folder itself inside that cloned directory
[18:26:02] <TehShrike1> it looks like bufferutil fails to install. Does Angular only build with specific old versions of node?
[18:26:18] <TehShrike1> looks like V8 compile errors
[18:27:06] *** bc___ has joined #angularjs
[18:27:08] <da_wunder> TehShrike1: angular 1 or 2 ?
[18:27:08] <TehShrike1> is "work with modern node.js" to be an Angular 2 thing as well? >_<
[18:27:14] <TehShrike1> 1, master branch
[18:27:28] *** yes`r has quit IRC
[18:27:30] *** bc_ has quit IRC
[18:27:33] *** bc___ is now known as bc_
[18:27:36] *** sigurding has quit IRC
[18:27:40] *** bc_ has quit IRC
[18:27:40] *** bc_ has joined #angularjs
[18:28:12] *** jbarket has quit IRC
[18:28:14] *** Tennis has quit IRC
[18:28:31] *** gladely has joined #angularjs
[18:30:00] *** Jammy_Work has quit IRC
[18:31:06] *** yes`r has joined #angularjs
[18:31:09] *** delgiudices has joined #angularjs
[18:32:15] *** kramer65 has quit IRC
[18:33:08] *** gladely has quit IRC
[18:34:03] *** lnrdo has joined #angularjs
[18:34:09] *** B0ltzy has quit IRC
[18:34:09] *** Guest3 has quit IRC
[18:34:13] *** george_v has quit IRC
[18:34:36] *** elsevero has joined #angularjs
[18:34:37] *** tomphp has quit IRC
[18:35:35] *** Coldblackice has quit IRC
[18:36:27] *** baweaver has joined #angularjs
[18:38:27] *** george_v has joined #angularjs
[18:40:38] *** PallMallShow has joined #angularjs
[18:40:47] <PallMallShow> Hi guys :)
[18:41:02] *** madhums has joined #angularjs
[18:41:25] *** dpicky has quit IRC
[18:41:33] <PallMallShow> I'm trying to use Http request in a injectable service. But, (after 2 hours of research), I didn't find anything to resolve my problem.
[18:41:52] *** gladely has joined #angularjs
[18:42:25] *** Z3R0 has quit IRC
[18:42:33] *** ziyadb has quit IRC
[18:42:35] *** delgiudices has quit IRC
[18:42:41] <PallMallShow> And error was : EXCEPTION: No provider for Http! (BrandsComponent -> BrandsService -> Http)
[18:43:59] *** bayousoft has quit IRC
[18:44:48] *** ico has joined #angularjs
[18:45:29] *** sergey_ has joined #angularjs
[18:46:05] *** ycon_ has joined #angularjs
[18:46:19] *** c00ljs has quit IRC
[18:46:57] *** c00ljs has joined #angularjs
[18:47:14] *** delgiudices has joined #angularjs
[18:47:19] *** icfantv has joined #angularjs
[18:47:23] *** PallMallShow_ has joined #angularjs
[18:47:28] <PallMallShow_> Thank @da_wunder
[18:48:20] <PallMallShow_> If I understood, any service wich needed HTTP request, I need to had it in bootsrap params ? Like bootstrap(AppComponent, [HTTP_PROVIDERS, FirstService]);
[18:49:02] *** startupality has quit IRC
[18:49:20] *** hackel has quit IRC
[18:49:24] *** PallMallShow has quit IRC
[18:50:45] *** punknroll has quit IRC
[18:51:01] *** ycon_ has quit IRC
[18:51:06] *** kgee has joined #angularjs
[18:51:43] *** danielemm has joined #angularjs
[18:52:04] *** startupality has joined #angularjs
[18:53:16] <PallMallShow_> Sry, stupid question
[18:54:52] *** Perseus0 has quit IRC
[18:55:04] *** delgiudices has quit IRC
[18:55:54] *** danielemm has quit IRC
[18:56:48] *** Dmitri has joined #angularjs
[18:57:57] *** Aliks has joined #angularjs
[18:59:21] *** buzzedword has joined #angularjs
[18:59:32] *** elsevero has quit IRC
[19:01:27] <ish> If bundles are non-sense (from a recent angular air), what is a reasonable way to deploy code without all the unneeded cruft in node_modules/ ?
[19:01:55] *** Dmitri has quit IRC
[19:01:56] *** dpicky has joined #angularjs
[19:02:12] *** itaipu has joined #angularjs
[19:03:03] *** fedenunez has joined #angularjs
[19:03:05] *** PallMallShow_ has quit IRC
[19:04:17] *** eago has joined #angularjs
[19:07:07] *** skcin7_ has quit IRC
[19:08:41] *** baweaver has quit IRC
[19:10:15] *** SomeKittens has joined #angularjs
[19:11:31] *** Aliks_ has joined #angularjs
[19:12:08] *** Ragg has joined #angularjs
[19:14:46] *** Aliks has quit IRC
[19:16:35] *** startupality has quit IRC
[19:17:00] *** delgiudices has joined #angularjs
[19:18:22] <TehShrike1> I have a filter that is causing the digest cycle to continue infinitely and I don't know why. The object it returns is angular.equals(old, new) between the old and the new value, but the digest cycles repeats anyway. Why might this be? Angular 1.3.5
[19:18:46] <TehShrike1> If I return the input in the case where angular.equals(input, newOutput), then the digest cycle finishes correctly
[19:18:47] *** kgee has quit IRC
[19:19:34] *** c00ljs_ has joined #angularjs
[19:19:38] *** c00ljs has quit IRC
[19:21:28] *** sbellina has joined #angularjs
[19:21:51] *** martin__ has joined #angularjs
[19:22:27] *** nilsi has quit IRC
[19:22:47] *** pen has joined #angularjs
[19:24:01] *** buzzedword has quit IRC
[19:24:33]
<martin__> Hi guys, I have a problem in angular2 accessing initiated Services (from bootstrap) within the routerCanActivate function. See here for some code: https://gist.github.com/mwawrusch/9df09b30526d8699161d - basically I want to access the service created by calling bootstrap, not a new instance
[19:24:39] *** s3shs has joined #angularjs
[19:24:48] *** bayousoft has joined #angularjs
[19:25:28] *** Aliks_ has quit IRC
[19:26:00] *** Aliks has joined #angularjs
[19:26:38] *** kgee has joined #angularjs
[19:28:05] *** sbellina has quit IRC
[19:28:58] *** george_v has quit IRC
[19:29:42] *** cacts has joined #angularjs
[19:31:54] *** Aliks has quit IRC
[19:32:32] *** 21WAANA9B has joined #angularjs
[19:33:06] *** diegoaguilar has quit IRC
[19:35:39] *** theblang has joined #angularjs
[19:36:07] *** theblang has joined #angularjs
[19:38:28] *** marcdel has joined #angularjs
[19:39:51] *** skcin7 has joined #angularjs
[19:40:50] *** elsevero has joined #angularjs
[19:43:04] *** zac has quit IRC
[19:43:49] *** davlefouAMD has quit IRC
[19:44:35] *** erol has quit IRC
[19:45:27] *** baweaver has joined #angularjs
[19:45:44] *** lnrdo has quit IRC
[19:47:14] *** ilmgb has joined #angularjs
[19:47:34] *** zac has joined #angularjs
[19:49:10] *** ilmgb has quit IRC
[19:49:20] *** s3shs has quit IRC
[19:49:44] *** ilmgb has joined #angularjs
[19:50:03] *** diosney has quit IRC
[19:50:10] *** eago has quit IRC
[19:50:13] *** diosney has joined #angularjs
[19:50:47] *** chinmaychinmay has quit IRC
[19:54:47] *** mven has joined #angularjs
[19:55:31] *** DJDelusional has joined #angularjs
[19:56:20] *** davlefouAMD has joined #angularjs
[19:57:21] *** jr3 has quit IRC
[19:57:55] *** B1x1t0 has quit IRC
[19:57:59] *** dpicky_ has joined #angularjs
[19:59:14] *** Jardayn has quit IRC
[19:59:21] *** dpicky has quit IRC
[19:59:25] *** Jardayn has joined #angularjs
[19:59:41] *** Aliks has joined #angularjs
[20:00:37] *** buzzedword has joined #angularjs
[20:03:57] *** TehShrike1 has quit IRC
[20:05:26] *** baweaver has quit IRC
[20:05:27] *** sctskw has joined #angularjs
[20:05:27] *** Cokee has quit IRC
[20:05:28] *** TyrfingMjolnir has joined #angularjs
[20:05:28] *** TehShrike2 has joined #angularjs
[20:05:29] *** ycon_ has joined #angularjs
[20:06:20] *** cruxeternus has quit IRC
[20:06:20] *** eago has joined #angularjs
[20:06:44] *** Firstaye has quit IRC
[20:07:10] *** cruxeternus has joined #angularjs
[20:07:41] *** s3shs has joined #angularjs
[20:08:45] *** swordfish has quit IRC
[20:09:08] *** Pspfolio has joined #angularjs
[20:09:19] *** ycon_ has quit IRC
[20:10:40] *** jbarket has joined #angularjs
[20:10:47] *** Aliks_ has joined #angularjs
[20:11:53] *** villev has joined #angularjs
[20:12:01] *** remzr6 has joined #angularjs
[20:12:05] <remzr6> hi
[20:12:05] *** OddDuck has joined #angularjs
[20:12:14] <remzr6> Does Angular 2 support templating?
[20:12:16] <remzr6> like Jade
[20:12:23] <remzr6> *templating engines?
[20:12:45] <villev> has anyone played with making @decorator syntax for the upcoming (1.5) angular.component() construct?
[20:13:41] <villev> remzr6: the first angular template I tried, in Brunch, had a build system that generated the .html files from jade templates
[20:13:59] <villev> it's more of a build system thing than angular thing. angular 1 expects templates to be html
[20:14:05] *** Aliks has quit IRC
[20:14:16] *** packadal_ has joined #angularjs
[20:14:51] <villev> something like @component(bundings: {....blah...}) class MyController { ...}
[20:15:12] *** dcherman has joined #angularjs
[20:15:27] <remzr6> villev: so i can just type in jade and use a build system to compile to html and that should work with angular 2?
[20:15:57] *** lnrdo has joined #angularjs
[20:16:34] *** baweaver has joined #angularjs
[20:16:35] *** tumdedum has quit IRC
[20:17:14] *** tumdedum has joined #angularjs
[20:17:27] <villev> last modified 3 years ago, so wouldn't hold my breath though ;)
[20:17:37] <remzr6> yeah thats the issue
[20:18:35] *** bayousoft has quit IRC
[20:18:55] *** packadal has quit IRC
[20:18:59] <villev> in theory, there should not be obstacles to doing e.g. gulp-angular-templatecache or w/e to convert .jade files to html and populating the templatecache based on those
[20:19:01] *** buzzedword has quit IRC
[20:19:37] *** Hounddog has quit IRC
[20:20:01] <martin__> works like a charm, uses gulp-inline-ng2-template -- be advised that you probably need to use my pull request instead of version 0.9
[20:20:15] <remzr6> But in Angular two you render html from components in js
[20:20:34] *** lnrdo has quit IRC
[20:20:47] <remzr6> like template: ` <h2>Todo</h2> <span>{{remaining}} of {{todos.length}} remaining</span>`
[20:20:50] *** blah has joined #angularjs
[20:20:50] *** baweaver has quit IRC
[20:20:51] <remzr6> would this work with jade?
[20:21:25] <villev> jade would just pass {{ }} stuff through, right?
[20:21:34] <villev> i.e. ng2 would still see the html
[20:22:52] *** elsevero has quit IRC
[20:23:22] *** soee_ has joined #angularjs
[20:23:22] *** ferr has joined #angularjs
[20:25:24] *** zac has quit IRC
[20:26:02] <remzr6> Alright, i just tried the online jade previewer
[20:26:21] <remzr6> jade syntax inside script would be converted to html
[20:26:24] <remzr6> so thats good
[20:26:52] *** s3shs_ has joined #angularjs
[20:27:12] *** dopesong has quit IRC
[20:27:27] *** madhums has quit IRC
[20:27:38] *** soee has quit IRC
[20:27:49] *** dopesong has joined #angularjs
[20:27:52] *** madhums has joined #angularjs
[20:28:10] *** devJunk has quit IRC
[20:28:47] *** devJunk has joined #angularjs
[20:30:11] *** chairmanmow has quit IRC
[20:30:26] *** s3shs has quit IRC
[20:31:36] *** Aliks_ has quit IRC
[20:31:48] *** encryptd_fractal has joined #angularjs
[20:31:51] *** zac has joined #angularjs
[20:31:54] *** dopesong has quit IRC
[20:32:27] *** xwid has joined #angularjs
[20:33:30] *** iceball has joined #angularjs
[20:34:04] *** LeBlaaanc has quit IRC
[20:34:08] *** buzzedword has joined #angularjs
[20:35:01] *** remzr6 has quit IRC
[20:35:35] *** Juergen4711 has joined #angularjs
[20:36:35] *** nocontrol has quit IRC
[20:36:35] *** ilmgb has quit IRC
[20:37:11] *** ilmgb has joined #angularjs
[20:37:25] *** Aliks has joined #angularjs
[20:37:48] *** madhums has quit IRC
[20:38:23] *** madhums has joined #angularjs
[20:38:49] *** step1step2 has joined #angularjs
[20:42:02] *** davlefouAMD has quit IRC
[20:42:11] *** ilmgb has quit IRC
[20:42:29] <villev> there seems to be some doubt that jade couldn't handle ng2 template syntax fully
[20:42:33] *** TehShrike2 has left #angularjs
[20:42:36] *** Aliks has quit IRC
[20:42:41] *** diosney has quit IRC
[20:42:49] *** diosney has joined #angularjs
[20:42:57] *** LeBlaaanc has joined #angularjs
[20:43:09] *** Aliks has joined #angularjs
[20:43:12] *** squeakytoy2 has joined #angularjs
[20:44:18] *** ilmgb has joined #angularjs
[20:44:23] *** danielemm has joined #angularjs
[20:44:57] *** node9 has joined #angularjs
[20:47:55] *** Aliks has quit IRC
[20:48:13] *** madhums has quit IRC
[20:48:47] *** buzzedword has quit IRC
[20:49:16] *** mm_ has joined #angularjs
[20:49:40] *** fedenunez1 has joined #angularjs
[20:50:12] *** Sky[x] has quit IRC
[20:51:40] *** jstroem has joined #angularjs
[20:53:18] *** fedenunez has quit IRC
[20:53:34] *** davlefouAMD has joined #angularjs
[20:53:38] *** F^3 has joined #angularjs
[20:53:43] *** mm_ has quit IRC
[20:54:01] <F^3> Hey hey. How can I minimize the number of watchers used in an ng-repeat that has 5-6 values being shown?
[20:54:32] *** sctskw has quit IRC
[20:56:24] *** chairmanmow has joined #angularjs
[21:00:13] *** p0k0 has joined #angularjs
[21:01:37] *** erve has quit IRC
[21:01:55] *** Pspfolio has quit IRC
[21:02:46] *** vandyk has quit IRC
[21:02:58] *** yes`r has quit IRC
[21:03:50] *** boneskull has joined #angularjs
[21:04:21] *** morissette has joined #angularjs
[21:05:22] *** PallMallShow has joined #angularjs
[21:06:11] *** hackel has joined #angularjs
[21:06:11] <PallMallShow> Hello guys, anyone already used http request in a serviceprovider with @Injectable decorator ? :)
[21:07:16] *** dpicky has joined #angularjs
[21:07:57] *** jenelizabeth has joined #angularjs
[21:08:15] *** juddey has joined #angularjs
[21:09:12] *** swordfish has joined #angularjs
[21:10:06] *** dpicky_ has quit IRC
[21:10:39] *** dpicky has quit IRC
[21:10:47] *** JBreit2 has joined #angularjs
[21:10:59] *** devJunk has quit IRC
[21:11:25] *** JBreit2 has quit IRC
[21:11:59] <villev> F^3: one time bindings?
[21:12:30] *** bayousoft has joined #angularjs
[21:12:48] *** marthinal has quit IRC
[21:12:49] <F^3> villev, For the most part. They'll only change on record save.
[21:12:53] <villev> though 5-6 values doesn't sound like something you need to optimize anyway
[21:13:15] *** elyssonmr has quit IRC
[21:13:16] <F^3> villev, The repeated object is ~1-3k of objects
[21:13:25] <F^3> repeated list*
[21:13:27] *** chinmaychinmay has joined #angularjs
[21:13:30] *** swordfish has quit IRC
[21:14:05] *** baweaver has joined #angularjs
[21:14:55] *** 21WAANA9B has quit IRC
[21:15:34] *** ycon_ has joined #angularjs
[21:17:19] *** nivag has quit IRC
[21:21:27] <F^3> villev, Thanks, I'll look into implementing that after this refactor. One last question: Any recommendations on preventing my init from being trigger twice on load?
[21:21:40] <F^3> triggered*
[21:22:07]
<PallMallShow> ANGULAR2 => Here my Service code. I've trying everyting ! (I tried too add Http module on bootsrap function but I get error too) : https://codeshare.io/CaOnx
[21:22:29] *** jr3 has joined #angularjs
[21:22:52] <F^3> Right now my current solution is a scope variable for initialization that returns if true.
[21:22:54] <villev> F^3: you mean your controller is created twice?
[21:25:02] <F^3> villev, It shouldn't be. I'm only setting it in the router and no manual ng-controller
[21:25:28] <F^3> I only have one ng-view
[21:26:16] <villev> ok. no idea why it's being created twice, short of trying to debug and see the call stacks
[21:26:46] <F^3> I'll have to stick with my current solution. There's enough issues that have a higher priority at the moment.
[21:28:04] *** balr0g has joined #angularjs
[21:28:41] *** apricity has joined #angularjs
[21:28:43] <villev> have to say I weaseled out on last "tons of data" view by adding paging. angular was handling it fine but IE was choking on it (due to some ng-animate bugs)
[21:29:12] <villev> (i.e. requestAnimationFrame was called tons of times, for no apparent reason)
[21:29:52] <F^3> I might be able to paginate on every 100 objects. I'll have to e-mail the client.
[21:30:22] *** Juergen4711 has quit IRC
[21:30:38] <villev> you can still keep it simple and have all the data in js objects, but just add pagination for what ends up in dom
[21:30:39] *** dszmaj has quit IRC
[21:31:03] <villev> takes a lots of stress out from optimizing everything
[21:31:04] *** devJunk has joined #angularjs
[21:31:37] <apricity> I'm trying to figure out good structure for a new project with three columns. Left column is is about 10 buttons that can take you to 10 different views in the center column. Do I make a folder for each view directly under the app dir?
[21:32:52] *** chinmaychinmay has quit IRC
[21:33:24] <villev> apricity: sounds good enough. and one dir for the button column
[21:33:55] <hackel> Is there a way to have an ngIf that doesn't watch the expression, but just sets the DOM initially and doesn't touch it after that? (thinking about performance)
[21:34:29] <villev> ngIf with one time binding
[21:34:34] *** encryptd_fractal has quit IRC
[21:34:55] <apricity> villev: I'm new to angular, is it not common to store your view folders under a folder called views?
[21:35:14] <hackel> villev: Won
[21:35:53] <villev> apricity: there are approaches, many of them "good enough". The thing to avoid is hawing directories like 'controllers' , 'directives' etc
[21:35:54] <hackel> villev: Won't ngIf still check the (now non-changing) value every digest cycle?
[21:36:14] <villev> hackel: no, it just checked it for that one time
[21:36:35] <hackel> villev: Great, thanks!
[21:37:18] <apricity> villev: thanks, will start with that then and refacter as I learn if need be
[21:38:38] <villev> apricity: just keep stuff "immediately needed" (controller, services, directives, html, css) in name dir and you will be happy
[21:40:02] *** dan2k3k4 has quit IRC
[21:40:07] <villev> angular 1 has lots of confusing history behind, so check the datet on guidelines etc
[21:42:05] *** bayousoft has quit IRC
[21:42:21] *** ferr has quit IRC
[21:42:54] <Pingless_> evening all
[21:43:04] *** ilmgb has quit IRC
[21:44:01] <Pingless_> I'm getting to grips with ng2, and just stumbled across an interesting thing. Is it just me, or is angular2 less forgiving with the interpolation? I'm pretty sure that something like {{ myThing.foo }} fails silently in ng1 when myThing is null
[21:44:38] <Pingless_> whereas in ng2 I get "Cannot read property 'foo' of undefined"
[21:45:06] *** danielemm has quit IRC
[21:45:25] *** DavidDudson has joined #angularjs
[21:48:09] *** blah has quit IRC
[21:51:07] *** Coldblackice has joined #angularjs
[21:51:24] *** rho has quit IRC
[21:57:30] *** ycon_ has quit IRC
[21:57:40] *** ahhhndi has joined #angularjs
[21:57:51] *** PallMallShow has quit IRC
[21:58:15] *** explodes has joined #angularjs
[21:58:19] *** xwid has quit IRC
[21:58:23] *** DavidDudson has quit IRC
[21:58:54] *** rho has joined #angularjs
[21:58:55] *** rho has joined #angularjs
[21:58:59] *** lol_ has joined #angularjs
[21:59:09] *** sergey_ has quit IRC
[21:59:13] *** lol_ has quit IRC
[21:59:43] *** kgee has quit IRC
[21:59:46] <explodes> Hey!
[21:59:54] *** dopesong has joined #angularjs
[22:01:01] *** packadal_ has quit IRC
[22:01:08] <explodes> I'm trying to inject context into the current scope (a list of images, based on variable input). I was thinking of using a directive so that I can pass in variables from the template to the directive
[22:03:12] *** siba has joined #angularjs
[22:03:23] *** Zalabinsky has quit IRC
[22:03:46] *** swordfish has joined #angularjs
[22:04:08] *** flavio has joined #angularjs
[22:04:32] *** flavio is now known as Guest60388
[22:04:43] *** lnrdo has joined #angularjs
[22:04:47] *** fly_boyz has quit IRC
[22:05:05] *** delgiudices has quit IRC
[22:06:22] *** Guest60388 has quit IRC
[22:06:59] *** fly_boyz has joined #angularjs
[22:06:59] *** bayousoft has joined #angularjs
[22:08:22] *** bayousoft has quit IRC
[22:08:58] *** lnrdo has quit IRC
[22:09:13] *** pbgc has quit IRC
[22:09:54] *** sbellina has joined #angularjs
[22:10:13] *** madhums has joined #angularjs
[22:11:24] *** devJunk has quit IRC
[22:11:25] *** joeco has joined #angularjs
[22:12:02] <apricity> I have an angular tutorial project that was working, then I renamed a view, (view1) in my angular project to dataRange and I get the following error "Failed to load template: /dataRange.html (HTTP status: 404 Not Found)" that file exists in my project and I cleared my browser cache, any ideas? Do I have to rebuild it or something like that?
[22:14:18] *** ahhhndi has quit IRC
[22:14:33] <Poeticode> Hm, if you're using the UI-Router, make sure templateUrl is pointing to the right directory. i.e, mine are stored in my template folder, so it's templateUrl: 'templates/dataRange.html'
[22:14:54] <Poeticode> templates folder*
[22:16:17] *** madhums has quit IRC
[22:16:56] *** balr0g is now known as Guest63805
[22:17:10] <apricity> Poeticode: yeah it says templateUrl: '/dataRange.html',
[22:17:42] *** rho has quit IRC
[22:17:42] <apricity> Poeticode: I mean I really just search all my code and replaced view1 with dataRange
[22:18:27] *** baweaver has quit IRC
[22:18:30] <Poeticode> and you're sure that file is at the root of your project? :o
[22:18:41] <apricity> $routeProvider.when('/dataRange', {
[22:18:44] <apricity> templateUrl: '/dataRange.html',
[22:18:45] <apricity> controller: 'DataRangeCtrl'
[22:18:47] <apricity> });
[22:18:53] *** rho has joined #angularjs
[22:18:54] *** rho has joined #angularjs
[22:18:54] <apricity> oops sorry didn't mean to paste that all
[22:19:31] *** Juergen4711 has joined #angularjs
[22:19:33] <apricity> the file is in a folder called dataRange which is at the root of the project
[22:20:09] <apricity> oh I see what you're saying one sec and I'll try it
[22:20:10] <Poeticode> ah, then it should be templateUrl: 'dataRange/dataRange.html'
[22:20:23] <Poeticode> unless you kept the view1.html name
[22:21:37] <explodes> I have to keep restarting intellij because my coffeescript plugin stops responding to "enter" and "delete" - OS X, El Capitan. Problem is on IDEA 14 and IDEA 15
[22:22:25] *** madhums has joined #angularjs
[22:23:17] *** Mediogre has quit IRC
[22:23:29] <apricity> Poeticode: thanks for the help, I don't understand why the name refactor took that part of the path out. Anyhow it works now
[22:23:32] *** sbellina has quit IRC
[22:24:45] <explodes> Sorry, wrong channel
[22:24:54] *** sbellina has joined #angularjs
[22:24:54] *** sixr420- has joined #angularjs
[22:25:04] *** dimtruck is now known as zz_dimtruck
[22:25:28] *** Aliks has joined #angularjs
[22:25:47] *** sixr420 has quit IRC
[22:27:50] *** ycon_ has joined #angularjs
[22:28:40] <gambl0re> what are peoples reactions to angular 2 so far?
[22:28:44] <gambl0re> good or bad?
[22:32:07] *** conan_the_destro has quit IRC
[22:32:19] *** s3shs_ has quit IRC
[22:32:21] *** fnx has quit IRC
[22:32:23] <jbarket> I'm coming around. I'm interested to see how the Angular community does as a whole. I think a lot of people had the same reaction I did after seeing the initial video at the end of 2014... screw this, let's learn React... but I've come around. I don't think it's nearly as different as it gets made out to be, and the insane looking syntax makes sense when you understand the purpose of it
[22:32:24] *** conan_the_destro has joined #angularjs
[22:32:31] <Aliks> gambl0re: about to switch from 1.x to 2, so far looks great from the outside
[22:32:34] <Aliks> seems like a smooth transition
[22:32:45] <Aliks> probably need to modify some libraries I'm using though
[22:32:54] *** s3shs has joined #angularjs
[22:33:12] <Aliks> jbarket: I'd actually say there's less (but some different, and therefore new) insane syntax in 2
[22:33:32] <Aliks> for example { selector: } syntax for components rather than restrict: 'AEC'
[22:33:42] *** illume has joined #angularjs
[22:33:55] *** kgee has joined #angularjs
[22:34:08] <Aliks> so far 2 feels somewhat familiar to Backbone and React as well as Angular 1
[22:35:13] <Aliks> but I have another question... does anyone know if there is any kind of template bug detection in 2? I was reading somewhere something that hinted at this, but maybe I misread
[22:35:27] *** xtreamwayz has quit IRC
[22:36:09] <kegster> so i'm trying out a MEAN stack to just test angular in a put-together form, but when i load it up and go to the directory-- it tries to list the files and not actually run an angular app
[22:36:16] <kegster> any ideas how i just get this started to see what ng is all aobut :)
[22:36:37] <Aliks> you've got issues more fundamental than angular, kegster
[22:36:48] <Aliks> need to learn how to open a local site
[22:36:58] *** daynaskully has joined #angularjs
[22:37:58] <kegster> uhh you must be misunderstanding me
[22:38:20] <kegster> the site is fine. i can run a site just fine. i have a custom code site launched on a diff subdomain with angular workin fine.
[22:38:25] <kegster> my question is how to get these stacks started.
[22:38:34] <kegster> followed instructions-- doesn't give me any htaccess rules, etc
[22:39:01] <Aliks> hmm
[22:39:12] <Aliks> sorry, deeper question than I have time to get into, maybe someone else can help
[22:39:16] <kegster> if i put index.html it runs just fine. i have directory listing enabled. if i disable, it just gives a 403 at normal
[22:39:34] <kegster> if i load a stack into public_html, are there any steps to get it going?
[22:39:36] *** twobeers has joined #angularjs
[22:39:38] <jbarket> the point he's making is that if you're getting a list of files, you aren't having an issue with Angular. it's a node/express issue.
[22:39:56] *** pbgc has joined #angularjs
[22:39:57] <jbarket> like, how are you serving this app? are you just going to the folder, or are you starting the express server?
[22:40:29] <kegster> jbarket, there we go! see didn't know i had to start an express server, etc.
[22:40:38] *** twobeers has quit IRC
[22:40:52] <kegster> that's what i'm referencing. it gives steps to install, but mentions nothing about initializing express, etc etc.
[22:40:55] <kegster> OK so i'm getting somewhere haha
[22:41:25] *** iceball has quit IRC
[22:41:39] <kegster> and i'm pretty sure it isn't an angular issue, but rather getting an angular stack to initialize or w/e. any time i ask about it they say it's not a webserver question bc my webserver is fine lol
[22:43:41] <jbarket> You should learn the necessary pieces to do this one at a time instead of just jumping into a boilerplate like this. It's great for people who are already setup, but if you don't know how to use the tools individually, it's going to be very hard to figure out how to get anything working. The instructions for that repo tell you to use grunt, but if you don't know what grunt is/does, or what nodemon is, you wouldn't really know
[22:43:41] <jbarket> what it was telling you.
[22:44:33] *** Josh_ has joined #angularjs
[22:44:36] <kegster> ahh ok. well normally boilerplates i use aren't full of complex components like a MEAN stack haha. so i can see that
[22:44:41] <jbarket> also worth mentioning this isn't a MEAN stack in the typical sense, since it's using MySQL instead of Mongo. which is fine, but not MEAN. worth keeping in mind if you're specifically trying to learn MEAN
[22:44:50] <kegster> oh ok
[22:44:52] *** encryptd_fractal has joined #angularjs
[22:45:10] <kegster> yeah i'm actually using a M*EAN substituting mongo with postgres (sequelize)
[22:45:11] <jbarket> Yeah there's just a lot of glue in there is all. I'd read up on Express a little, and then this will probably make sense. You've already got the Angular side.
[22:45:21] *** martin__ has quit IRC
[22:45:32] <kegster> i've already started tinkering with angular in a custom html site, but i think my file structure is off so i said "hey let me try this stack"
[22:45:45] <kegster> so i can keep going with where i'm at on my custom site just learn up on express and apply it?
[22:46:10] <kegster> i imagine if i do that with express (plus node) then i'd be ready for a stack to play with ? (whether mean or not etc)
[22:46:19] *** Josh_ has quit IRC
[22:46:23] *** sarafecadu has joined #angularjs
[22:46:32] <cilkay> Too many moving parts. Simplify. You don't need anything other than a web server to serve up AngularJS apps. You can prototype going against JSON files to start with.
[22:46:40] *** kopasetik has joined #angularjs
[22:47:03] <da_wunder> or just use $httpBackend to mock that
[22:47:26] <cilkay> Once you understand that, you can then create the API that will generate the API on-demand.
[22:47:33] <cilkay> exactly
[22:48:06] *** c00ljs_ has quit IRC
[22:48:41] <cilkay> The "web server" could be practically anything that listens for HTTP requests and returns responses.
[22:49:15] *** ycon_ has quit IRC
[22:49:54] *** bc_ has left #angularjs
[22:50:28] <oddalot> Is there an angular 2 channel?
[22:50:33] *** sbasso has joined #angularjs
[22:52:07] *** danielemm has joined #angularjs
[22:57:02] *** corioliss has joined #angularjs
[23:00:46] *** encryptd_fractal has quit IRC
[23:01:43] *** Dec_ has joined #angularjs
[23:01:58] *** zac has quit IRC
[23:01:58] *** sarafecadu has quit IRC
[23:02:36] *** gambl0re has left #angularjs
[23:03:57] *** s3shs has quit IRC
[23:04:07] *** Flo has joined #angularjs
[23:04:10] *** explodes has quit IRC
[23:04:32] *** Flo is now known as Guest31092
[23:05:37] *** glosoli has quit IRC
[23:06:17] *** dpicky has joined #angularjs
[23:06:46] *** kopasetik_ has joined #angularjs
[23:07:04] *** ycon_ has joined #angularjs
[23:07:23] *** kopasetik has quit IRC
[23:07:31] *** ycon_ has joined #angularjs
[23:07:58] *** Juergen4711 has quit IRC
[23:08:34] *** Juergen4711 has joined #angularjs
[23:11:33] *** s3shs has joined #angularjs
[23:11:37] *** jstroem has quit IRC
[23:12:54] *** jonicious has joined #angularjs
[23:13:28] *** Juergen4711 has quit IRC
[23:14:24] *** Aliks has quit IRC
[23:15:24] *** sixr420- has quit IRC
[23:16:04] *** joshontheweb has joined #angularjs
[23:17:16] *** jonicious has quit IRC
[23:18:47] *** Poeticode has quit IRC
[23:19:15] *** senayar has joined #angularjs
[23:19:15] *** senayar has joined #angularjs
[23:19:43] *** vandyk has joined #angularjs
[23:20:51] *** GuiltyLemon has quit IRC
[23:21:37] *** bayousoft has joined #angularjs
[23:21:39] *** Dec_ has quit IRC
[23:22:43] *** GuiltyLemon has joined #angularjs
[23:23:23] *** danielemm has quit IRC
[23:23:29] *** kopasetik_ has quit IRC
[23:25:07] *** ilmgb has joined #angularjs
[23:25:37] *** kopasetik has joined #angularjs
[23:25:56] *** Magik6k has quit IRC
[23:27:56] *** speeddra_ has joined #angularjs
[23:29:32] *** Magik6k has joined #angularjs
[23:29:47] *** Magik6k has quit IRC
[23:30:04] *** Magik6k has joined #angularjs
[23:31:42] *** bayousoft has quit IRC
[23:33:07] *** Magik6k has joined #angularjs
[23:35:53] *** zivester has joined #angularjs
[23:36:54] *** kopasetik has quit IRC
[23:37:11] *** kopasetik has joined #angularjs
[23:38:38] *** bayousoft has joined #angularjs
[23:38:40] *** bcSquared has joined #angularjs
[23:38:41] *** eago has quit IRC
[23:39:34] *** sbellina has quit IRC
[23:40:39] *** Burgerz has quit IRC
[23:43:11] *** killa_kyle has quit IRC
[23:44:05] *** fedenunez has joined #angularjs
[23:44:14] *** fedenunez1 has quit IRC
[23:51:31] *** bayousoft has quit IRC
[23:53:02] *** lnrdo has joined #angularjs
[23:54:21] *** eago has joined #angularjs
[23:55:33] *** Guest31092 has quit IRC
[23:55:46] *** Flo has joined #angularjs
[23:56:09] *** Flo is now known as Guest11917
[23:57:06] *** lnrdo has quit IRC
[23:57:07] *** c00ljs has joined #angularjs
[23:57:12] *** waspinator has quit IRC
[23:58:29] *** tplaner has quit IRC
[23:58:56] *** Guest63805 has quit IRC