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

Toggle Join/Part | bottom
[00:00:16] *** bradgignac_ has quit IRC
[00:02:55] *** dman777_alter has quit IRC
[00:04:01] *** aubsrey_ has quit IRC
[00:04:49] *** dpicky_ has quit IRC
[00:05:33] *** Aliks has quit IRC
[00:06:26] *** Ronyrun has quit IRC
[00:06:40] <erste> lol
[00:06:44] <erste> oh well,
[00:06:46] *** SrPx has joined #angularjs
[00:06:53] <erste> it was an Ionic Framework problem..
[00:06:54] *** HarunTy has quit IRC
[00:07:01] *** SrPx has quit IRC
[00:07:04] <erste> http://stackoverflow.com/questions/28090232/in-angular-why-does-adding-an-ng-disabled-to-an-ng-click-button-make-it-fire-twi
[00:07:23] <erste> actually, I have no idea.. really
[00:07:38] <erste> in this post, they couldn't really find the problem
[00:08:22] <erste> so I made a thourough comparison in my own code, my login section, had a working sample
[00:08:23] *** nanuko has quit IRC
[00:08:36] *** OnkelTem has joined #angularjs
[00:08:40] *** heyts has quit IRC
[00:08:54] <erste> and there I as using <button> instead of <a>, changing the link to a button, fixed the issue.. so not really an angular problem
[00:09:06] *** cotko has quit IRC
[00:12:20] *** compeman has quit IRC
[00:13:04] *** jareddlc has quit IRC
[00:13:05] <icfantv> erste: just a note there about moving from <a> to <button> - if this is for navigation and you care about accessibility, this will break it. we've had some issues in the Angular UI Bootstrap library when we were using <a> in the library templates (namely, Firefox actually reloading the page) so we switched to <div>.
[00:13:21] *** jareddlc has joined #angularjs
[00:13:24] *** baweaver has joined #angularjs
[00:13:45] *** b0yzn01z3 has quit IRC
[00:13:49] *** jareddlc has quit IRC
[00:14:13] <erste> icfantv, hmm, I use it mainly for controls.. but it includes navigation aswell.. if valid..
[00:14:20] <erste> I've been testing mainly on chrome only
[00:14:32] <erste> not sure if I'll have any issues on firefox side
[00:15:03] <erste> but the main target would be "compiling" it to "native" android app, using cordova
[00:16:34] <erste> btw, you said that you switched to <div> .. did the <button> didn't work for you?
[00:17:20] *** greengriminal has quit IRC
[00:18:04] *** baweaver has quit IRC
[00:18:18] <erste> icfantv, I'm using the default ionic css now, so I see no difference between <a> and <button>, in a previous project though, the <button> would leave a "focus" mark after you clicked it, so we were using <a> to avoid that mark instead of trying to fix with css..
[00:20:16] <icfantv> erste: my suggestion was using <button> with the `btn btn-link` classes but there are also issues w/ that solution as well.
[00:20:27] *** mikeones has quit IRC
[00:20:28] <icfantv> that just styles a button as a link
[00:20:43] <icfantv> *accessibility issues
[00:20:43] <erste> I see
[00:21:17] <icfantv> the problem w/ firefox was that the browser was handling the anchor click before the angular directive ever got called, so the click handler in the angular directive was never getting called
[00:21:30] <icfantv> and thus, the $event.preventDefault() wasn't getting called.
[00:21:54] <erste> that's quite strange I think
[00:21:55] *** erebel55 has joined #angularjs
[00:22:00] <icfantv> yea….
[00:22:12] <erste> I remember testing my previous app with firefox..
[00:22:19] <erste> and most of the buttons were <a> types
[00:22:43] <erste> maybe they fixed recently .. or the problem is recent.. no idea
[00:23:09] <erste> we almost switched to firefox due to a zooming problem with chrome in mobile devices..
[00:23:10] <icfantv> sorry. it's the `href` directive, not anchor
[00:23:19] <icfantv> https://github.com/angular-ui/bootstrap/issues/4533
[00:23:22] <erste> ah
[00:23:46] <icfantv> i freely admit i have no idea what the experience is on mobile.
[00:24:02] <icfantv> i.e., does the page reload?
[00:24:08] <erste> nope
[00:24:22] <icfantv> given that Firefox only JUST released on iOS, my guess is that it's not well tested at all
[00:24:37] *** Es0teric has quit IRC
[00:24:41] <erste> oh, I've been testing only on android devices
[00:24:47] <icfantv> but even so - all iOS browsers are required to use iOS' rendering engine
[00:25:18] <erste> no experience with ios before honestly
[00:25:20] <icfantv> so my guess is it's not an issue on iOS
[00:25:33] <icfantv> does FFX have an android release?
[00:25:41] <erste> yep
[00:26:15] <erste> it works pretty well, but my bookmarks and everything are in chrome
[00:26:28] <icfantv> in order to test that you'd have to use the plunker that demonstrated the issue.
[00:26:38] *** codeitloadit has joined #angularjs
[00:26:39] <icfantv> but in firefox
[00:26:51] <icfantv> i'm assuming firefox is still using gecko - even on android
[00:27:10] *** Aliks has joined #angularjs
[00:27:13] <erste> no idea.. I'm working on an app using google maps now..
[00:27:25] <erste> and searching for optimizations on map loading ..
[00:27:32] <erste> most of the post, are firefox related
[00:27:33] *** baweaver has joined #angularjs
[00:27:37] <icfantv> no worries - if you don't care about accessibility then none of this is an issue.
[00:27:46] <icfantv> and i've never heard of a screen reader for mobile
[00:28:00] <icfantv> seems a bit of an oxymoron
[00:28:03] <erste> do you know ionic ?
[00:28:25] <icfantv> not even remotely
[00:28:26] <erste> another would be phonegap I think
[00:28:36] <icfantv> i've heard of both.
[00:28:44] <icfantv> we don't do any mobile development
[00:28:58] <icfantv> check that. my team doesn't do any mobile dev
[00:29:02] <erste> basically, angular app -> 1 command -> mobile native app
[00:29:04] <erste> I see
[00:29:08] *** lemur has joined #angularjs
[00:29:41] *** wonder95 has joined #angularjs
[00:30:52] *** moep has quit IRC
[00:31:38] *** iceball has quit IRC
[00:32:26] *** b0yzn01z3 has joined #angularjs
[00:33:22] *** markfknight has joined #angularjs
[00:33:58] *** lemur has quit IRC
[00:34:40] *** chairmanmow has quit IRC
[00:35:58] *** edm has quit IRC
[00:36:17] *** dodobrain has joined #angularjs
[00:36:50] *** macmod has quit IRC
[00:37:10] *** zigzagzig has joined #angularjs
[00:39:19] *** heyts has joined #angularjs
[00:39:26] *** steeze has quit IRC
[00:42:44] *** Codefria_ has joined #angularjs
[00:43:19] *** zeezey has quit IRC
[00:43:34] *** empyreanx has joined #angularjs
[00:45:15] *** atomicb0mb has quit IRC
[00:45:51] *** balr0g has quit IRC
[00:46:32] *** iceball has joined #angularjs
[00:48:10] *** SrPx has joined #angularjs
[00:48:26] *** walden is now known as walden|afk
[00:48:54] *** dcherman has quit IRC
[00:49:22] *** Codefria_ has quit IRC
[00:50:01] *** phrozensilver has joined #angularjs
[00:50:35] *** mischat has quit IRC
[00:51:44] *** SrPx has quit IRC
[00:52:16] *** clivejo has quit IRC
[00:52:39] *** erebel55 has quit IRC
[00:52:55] *** Jardayn has quit IRC
[00:53:40] *** Z3R0_ has joined #angularjs
[00:55:04] *** Z3R0_ has quit IRC
[00:55:46] *** Z3R0_ has joined #angularjs
[00:56:25] *** Z3R0_ has quit IRC
[00:59:11] *** SrPx has joined #angularjs
[01:00:14] *** icfantv has quit IRC
[01:00:43] *** ewooy has quit IRC
[01:01:22] *** iceball has quit IRC
[01:01:24] *** SrPx has quit IRC
[01:01:51] *** shangxiao has joined #angularjs
[01:02:15] *** christo_m has joined #angularjs
[01:02:18] *** dimtruck is now known as zz_dimtruck
[01:02:23] <christo_m> hello im getting angular2dev EXCEPTION: RangeError: Maximum call stack size exceeded
[01:02:29] <christo_m> can't find how to remedy this issue
[01:02:49] *** compeman has joined #angularjs
[01:02:52] *** CanyonMan has joined #angularjs
[01:03:48] *** mglvl has joined #angularjs
[01:03:53] *** sonofdirt has quit IRC
[01:04:31] *** sonofdirt has joined #angularjs
[01:05:48] *** k1ng4400 has quit IRC
[01:06:54] <christo_m> Zone already exported on window the object!
[01:07:11] *** k1ng440 has quit IRC
[01:07:32] *** Akufen has quit IRC
[01:07:43] *** bhenslee has left #angularjs
[01:08:58] *** sonofdirt has quit IRC
[01:09:22] *** k1ng440 has joined #angularjs
[01:09:23] *** k1ng440 has joined #angularjs
[01:10:04] *** nya_ has quit IRC
[01:10:23] *** Ragnar has quit IRC
[01:11:40] *** unseensoul has joined #angularjs
[01:11:44] <unseensoul> Hi.
[01:11:50] *** Lzrbeak has joined #angularjs
[01:12:55] *** Guest93259 is now known as AciD`
[01:13:39] <unseensoul> I created a directive which is replaced with an html element that contains the ng-model on it. How can I change the name/value of the ng-model based on some attribute I pass on the directive?
[01:14:19] *** Laserbeak has quit IRC
[01:14:20] *** jareddlc has joined #angularjs
[01:14:48] *** macwinner has quit IRC
[01:15:15] *** macwinner has joined #angularjs
[01:15:16] *** pelim has quit IRC
[01:18:00] *** unseensoul has quit IRC
[01:18:29] *** shangxiao has quit IRC
[01:18:45] *** erste has quit IRC
[01:18:52] *** Z3R0_ has joined #angularjs
[01:19:15] *** tumdedum has quit IRC
[01:19:43] *** jareddlc has quit IRC
[01:20:36] *** tumdedum has joined #angularjs
[01:21:22] *** encryptd_fractal has quit IRC
[01:22:35] *** encryptd_fractal has joined #angularjs
[01:23:33] *** SrPx has joined #angularjs
[01:23:47] *** zz_dimtruck is now known as dimtruck
[01:24:10] *** steeze has joined #angularjs
[01:24:16] *** annlewis has quit IRC
[01:26:15] *** shangxiao has joined #angularjs
[01:27:08] *** iceball has joined #angularjs
[01:30:21] *** pelim has joined #angularjs
[01:32:51] *** bengillies has joined #angularjs
[01:33:24] *** fedenunez has quit IRC
[01:33:36] *** fedenunez has joined #angularjs
[01:33:37] *** thirdkni_ has quit IRC
[01:34:07] *** bayousoft has joined #angularjs
[01:37:07] *** thirdknife has joined #angularjs
[01:37:14] *** bengillies has quit IRC
[01:37:26] *** owenjones has joined #angularjs
[01:38:23] *** fedenunez has quit IRC
[01:39:32] *** citizen-stig has joined #angularjs
[01:39:57] *** Akufen has joined #angularjs
[01:41:01] *** jsheely has joined #angularjs
[01:41:27] <jsheely> You know. I would have thought by now I would know when to use .factory vs .service
[01:41:34] *** jareddlc has joined #angularjs
[01:41:34] *** Z3R0_ has quit IRC
[01:41:35] <jsheely> But Sadly I don't...
[01:41:40] *** baweaver has quit IRC
[01:41:58] *** encryptd_fractal has quit IRC
[01:42:16] *** heyts has quit IRC
[01:42:26] *** thatslifeson has joined #angularjs
[01:42:41] *** lnrdo has joined #angularjs
[01:43:32] *** bayousoft has quit IRC
[01:44:06] *** encryptd_fractal has joined #angularjs
[01:44:26] *** citizen-stig has quit IRC
[01:44:50] *** encryptd_fractal has quit IRC
[01:45:51] *** steeze has quit IRC
[01:46:05] *** steeze has joined #angularjs
[01:46:58] *** enykeev_ has quit IRC
[01:47:15] *** lnrdo has quit IRC
[01:48:55] *** italoacasas has joined #angularjs
[01:51:30] *** conan_the_destro has quit IRC
[01:51:31] *** diegoaguilar has quit IRC
[01:52:03] *** conan_the_destro has joined #angularjs
[01:56:28] *** nanuko has joined #angularjs
[01:57:06] *** Z3R0_ has joined #angularjs
[01:58:29] *** ssd532_ has quit IRC
[01:59:24] *** AimerPaddle has quit IRC
[01:59:35] *** thirdknife has quit IRC
[01:59:57] *** rchavik has joined #angularjs
[02:00:00] *** enykeev has joined #angularjs
[02:00:46] *** heyts has joined #angularjs
[02:00:50] *** nya_ has joined #angularjs
[02:02:16] *** leolrrj has joined #angularjs
[02:04:29] *** mikeones has joined #angularjs
[02:05:31] *** bayousoft has joined #angularjs
[02:05:57] *** DoubleAW has quit IRC
[02:07:08] <k1ng440> jsheely, me neither
[02:07:22] *** obbs_ has joined #angularjs
[02:07:23] *** obbs has quit IRC
[02:07:46] *** dimtruck is now known as zz_dimtruck
[02:11:00] *** fedenunez has joined #angularjs
[02:12:11] *** fscala has quit IRC
[02:12:34] <k1ng440> jsheely, http://stackoverflow.com/questions/18939709/angularjs-when-to-use-service-instead-of-factory
[02:12:36] *** JackFruh has joined #angularjs
[02:12:42] *** mandric has joined #angularjs
[02:13:19] *** baweaver has joined #angularjs
[02:13:43] *** fscala has joined #angularjs
[02:14:01] *** junmin has quit IRC
[02:14:09] *** sbasso has quit IRC
[02:20:23] *** zigzagzig has quit IRC
[02:21:04] *** baweaver has quit IRC
[02:21:26] *** s00pcan has quit IRC
[02:21:31] *** Suksan has joined #angularjs
[02:22:56] *** s00pcan has joined #angularjs
[02:24:43] *** SrPx has quit IRC
[02:24:44] *** k1ng440 has quit IRC
[02:25:07] *** annlewis has joined #angularjs
[02:26:42] *** one_zero has joined #angularjs
[02:27:58] *** Z3R0_ has quit IRC
[02:28:35] *** Suksan has quit IRC
[02:28:42] *** elsevero has quit IRC
[02:29:44] *** annlewis has quit IRC
[02:29:52] *** baweaver has joined #angularjs
[02:30:09] *** Z3R0 has joined #angularjs
[02:33:19] *** Misere has quit IRC
[02:34:22] *** baweaver has quit IRC
[02:35:56] *** compeman has quit IRC
[02:35:59] *** shangxiao has quit IRC
[02:37:02] *** rossk has quit IRC
[02:38:10] *** SrPx has joined #angularjs
[02:38:41] *** erebel55 has joined #angularjs
[02:39:02] *** randomdoude has joined #angularjs
[02:39:03] *** OtherAllan has quit IRC
[02:40:14] *** bayousoft has quit IRC
[02:40:47] *** baweaver has joined #angularjs
[02:42:01] *** encryptd_fractal has joined #angularjs
[02:45:01] *** SrPx has quit IRC
[02:45:15] *** nodist has joined #angularjs
[02:45:43] *** EoN has joined #angularjs
[02:48:09] *** italoacasas has quit IRC
[02:51:47] *** Z3R0 has quit IRC
[02:53:31] *** fedenunez has quit IRC
[02:54:57] *** randomdoude has quit IRC
[02:57:18] *** SonikBoom has quit IRC
[02:58:28] *** jareddlc has quit IRC
[02:59:47] *** codeitloadit has quit IRC
[03:01:26] *** maximski has joined #angularjs
[03:01:56] *** compeman has joined #angularjs
[03:03:42] *** codeitloadit has joined #angularjs
[03:04:10] *** JackFruh has quit IRC
[03:04:12] *** fedenunez has joined #angularjs
[03:05:42] *** mnzaki has quit IRC
[03:06:57] *** mandric has quit IRC
[03:07:41] *** Aliks has quit IRC
[03:07:47] *** nodist has quit IRC
[03:08:14] *** codeitloadit has quit IRC
[03:08:26] *** Codefria_ has joined #angularjs
[03:08:27] *** schneider has quit IRC
[03:08:35] *** macwinner has quit IRC
[03:08:51] *** macwinner has joined #angularjs
[03:09:46] *** Misere has joined #angularjs
[03:10:11] *** Aliks has joined #angularjs
[03:11:22] *** nilsi has joined #angularjs
[03:11:49] *** cacts|works has quit IRC
[03:13:52] *** waspinator_ has joined #angularjs
[03:14:31] *** w00tner has quit IRC
[03:15:35] *** Guest47575 has quit IRC
[03:21:03] *** steeze has quit IRC
[03:21:07] *** shangxiao has joined #angularjs
[03:22:35] *** rickmak has joined #angularjs
[03:22:41] *** maikowblue has quit IRC
[03:25:16] *** jalnt has joined #angularjs
[03:25:41] *** baweaver has quit IRC
[03:25:46] *** annlewis has joined #angularjs
[03:26:22] *** junmin has joined #angularjs
[03:26:42] *** nilsi has quit IRC
[03:27:08] *** pelim has quit IRC
[03:28:01] *** citizen-stig has joined #angularjs
[03:28:28] *** rickmak__ has joined #angularjs
[03:28:38] *** zigzagzig has joined #angularjs
[03:28:53] *** annlewis_ has joined #angularjs
[03:29:18] *** Klumben has quit IRC
[03:29:22] *** c00ljs has joined #angularjs
[03:29:54] *** rickmak has quit IRC
[03:29:55] *** rickmak__ is now known as rickmak
[03:30:51] *** annlewis has quit IRC
[03:31:50] *** maximski has quit IRC
[03:31:50] *** Codefria_ has quit IRC
[03:31:56] *** beakman has joined #angularjs
[03:32:14] *** mary5030 has joined #angularjs
[03:32:43] *** citizen-stig has quit IRC
[03:33:05] *** nilsi has joined #angularjs
[03:33:23] *** atomicb0mb has joined #angularjs
[03:33:29] *** annlewis_ has quit IRC
[03:34:04] *** owenjones has quit IRC
[03:35:24] *** zigzagzig has quit IRC
[03:35:33] *** atomicb0mb has quit IRC
[03:36:42] *** QuazR has joined #angularjs
[03:37:02] *** Codefria_ has joined #angularjs
[03:37:43] *** cacts has joined #angularjs
[03:38:09] *** b0x has joined #angularjs
[03:38:09] *** b0x has joined #angularjs
[03:38:19] *** kuadrosx has quit IRC
[03:39:33] *** owenjones has joined #angularjs
[03:39:51] *** encryptd_fractal has quit IRC
[03:39:52] *** jbro has joined #angularjs
[03:42:43] *** mekhami has quit IRC
[03:44:42] *** rickmak has quit IRC
[03:44:47] *** Codefria_ has quit IRC
[03:44:54] *** lnrdo has joined #angularjs
[03:46:02] *** nanuko has quit IRC
[03:46:11] *** LeBlaaanc has quit IRC
[03:46:25] *** Codefria_ has joined #angularjs
[03:48:06] *** encryptd_fractal has joined #angularjs
[03:48:10] *** fedenunez has quit IRC
[03:48:36] *** fedenunez has joined #angularjs
[03:48:55] *** Codefria_ has quit IRC
[03:49:19] *** lnrdo has quit IRC
[03:49:20] *** iceball has quit IRC
[03:52:23] *** magellanicloud has quit IRC
[03:52:54] *** Codefria_ has joined #angularjs
[03:52:57] *** nya_ has quit IRC
[03:53:01] *** nya__ has joined #angularjs
[03:57:21] *** jae has quit IRC
[03:57:24] *** Aliks has quit IRC
[03:58:27] *** owenjones has quit IRC
[03:58:56] *** jareddlc has joined #angularjs
[03:59:40] *** buzzedword has quit IRC
[04:00:02] *** rickmak has joined #angularjs
[04:01:10] *** QuazR has quit IRC
[04:01:33] *** Codefria_ has quit IRC
[04:02:23] *** phrozensilver has quit IRC
[04:02:36] *** phrozensilver has joined #angularjs
[04:03:58] *** jareddlc has quit IRC
[04:04:52] *** magellanicloud has joined #angularjs
[04:05:09] *** Codefria_ has joined #angularjs
[04:05:42] *** erebel55 has quit IRC
[04:07:00] *** phrozensilver has quit IRC
[04:07:05] *** arizzo has joined #angularjs
[04:07:14] *** mikeones has quit IRC
[04:08:33] *** Codefria_ has quit IRC
[04:10:43] *** frem has quit IRC
[04:10:44] *** rho has quit IRC
[04:12:25] *** asteele has quit IRC
[04:13:55] *** Aliks has joined #angularjs
[04:14:43] *** marr has quit IRC
[04:16:42] *** arizzo has quit IRC
[04:19:30] *** nodist has joined #angularjs
[04:20:00] *** arizzo has joined #angularjs
[04:20:09] *** shangxiao has quit IRC
[04:20:56] *** rickmak has quit IRC
[04:24:28] *** shangxiao has joined #angularjs
[04:24:30] *** arizzo has quit IRC
[04:26:19] *** rickmak has joined #angularjs
[04:26:22] *** dabdab has joined #angularjs
[04:27:50] *** pelim has joined #angularjs
[04:28:09] *** nilsi has quit IRC
[04:29:03] *** asteele has joined #angularjs
[04:29:27] *** annlewis has joined #angularjs
[04:30:35] *** rickmak has quit IRC
[04:30:37] *** baweaver has joined #angularjs
[04:30:47] *** rickmak has joined #angularjs
[04:33:40] *** jcooke has quit IRC
[04:34:18] *** annlewis has quit IRC
[04:35:15] *** baweaver has quit IRC
[04:35:35] *** cacts|works has joined #angularjs
[04:38:00] *** kdilla has joined #angularjs
[04:38:13] *** JackFruh has joined #angularjs
[04:39:08] *** Ragnar has joined #angularjs
[04:41:08] *** estsauver has quit IRC
[04:42:32] *** d3m0n has joined #angularjs
[04:44:06] *** GGBaby has joined #angularjs
[04:49:51] *** thatslif_ has joined #angularjs
[04:50:39] *** thatslifeson has quit IRC
[04:53:22] *** waspinator_ has quit IRC
[04:55:20] *** nodist has quit IRC
[05:00:27] *** sbellina has quit IRC
[05:01:03] *** cmoneylulz has joined #angularjs
[05:01:17] *** shangxia1 has joined #angularjs
[05:01:25] *** shangxiao has quit IRC
[05:01:44] *** beakman has quit IRC
[05:01:51] *** spacenomad has quit IRC
[05:02:25] *** cmoneylulz has quit IRC
[05:03:00] *** Aliks has quit IRC
[05:03:23] *** asteele has quit IRC
[05:04:36] *** cocao has quit IRC
[05:05:09] *** jhirley_ has quit IRC
[05:08:01] *** nanuko has joined #angularjs
[05:08:39] *** kakashiAL has quit IRC
[05:09:24] *** nanuko has quit IRC
[05:09:44] *** Misere has quit IRC
[05:10:33] *** c00ljs has quit IRC
[05:11:00] *** LeBlaaanc has joined #angularjs
[05:11:39] *** juddey has quit IRC
[05:12:04] *** cmoneylulz has joined #angularjs
[05:13:24] *** LeBlaaanc has quit IRC
[05:14:20] *** asteele has joined #angularjs
[05:15:56] *** LeBlaaanc has joined #angularjs
[05:16:09] *** asteele has quit IRC
[05:16:47] *** macabre has quit IRC
[05:17:21] *** steeze has joined #angularjs
[05:19:00] *** bionikspoon has quit IRC
[05:19:01] *** joshontheweb has joined #angularjs
[05:19:07] *** asteele has joined #angularjs
[05:19:23] *** mikeones has joined #angularjs
[05:19:42] *** rama has joined #angularjs
[05:19:47] *** baweaver has joined #angularjs
[05:19:54] <rama> hi
[05:19:58] <rama> all
[05:20:06] *** rama is now known as Guest61646
[05:20:29] <Guest61646> I want to implement multiple checkbox filters for my app
[05:20:39] <Guest61646> Please guide me any one
[05:21:32] *** LeBlaaanc has quit IRC
[05:21:56] *** spacenomad has joined #angularjs
[05:23:22] *** cmoneylulz has quit IRC
[05:24:14] *** cmoneylulz has joined #angularjs
[05:24:41] *** nilsi has joined #angularjs
[05:24:55] *** k1ng440 has joined #angularjs
[05:25:00] *** LeBlaaanc has joined #angularjs
[05:25:46] *** aubsrey_ has joined #angularjs
[05:25:59] *** bionikspoon has joined #angularjs
[05:26:06] *** Guest61646 has quit IRC
[05:27:04] *** nilsi_ has joined #angularjs
[05:29:42] *** JackFruh has quit IRC
[05:30:19] *** nilsi has quit IRC
[05:30:23] *** annlewis has joined #angularjs
[05:30:47] *** LeBlaaanc has quit IRC
[05:31:16] *** sbellina has joined #angularjs
[05:31:30] *** juddey has joined #angularjs
[05:32:15] *** thatslifeson has joined #angularjs
[05:32:39] *** thatslif_ has quit IRC
[05:34:59] *** annlewis has quit IRC
[05:35:55] *** fedenunez has quit IRC
[05:36:28] *** jae has joined #angularjs
[05:36:40] *** cmoneylulz has quit IRC
[05:44:49] *** joshontheweb has quit IRC
[05:45:14] *** juddey has quit IRC
[05:46:13] *** AimerPaddle has joined #angularjs
[05:46:36] *** lnrdo has joined #angularjs
[05:49:16] *** burzum2 has joined #angularjs
[05:49:22] *** rickmak has quit IRC
[05:50:17] *** mandric has joined #angularjs
[05:50:59] *** burzum has quit IRC
[05:51:19] *** lnrdo has quit IRC
[05:51:26] *** qdk_ has quit IRC
[05:51:53] *** YaphetS has joined #angularjs
[05:52:30] <YaphetS> ll
[05:52:45] *** asteele has quit IRC
[05:52:51] *** owenjones has joined #angularjs
[05:52:54] *** YaphetS has quit IRC
[05:53:04] <kdilla> anyone know what could be the reason behind modal not fitting on screen in ui-bootstrap when viewing on iphone 6 plus?
[05:53:35] *** joshontheweb has joined #angularjs
[05:53:39] *** steeze has quit IRC
[05:54:35] *** encryptd_fractal has quit IRC
[05:54:54] *** asteele has joined #angularjs
[05:55:14] *** owenjones has quit IRC
[05:55:22] *** cacts|works is now known as DavidBoreanauz
[05:55:29] *** LeBlaaanc has joined #angularjs
[05:56:21] *** jae has left #angularjs
[05:56:38] *** Aliks has joined #angularjs
[05:57:28] <kdilla> when testing in chrome modal fits the screen, but doesn't on actual iphone.
[05:57:57] *** LeBlaaanc has quit IRC
[05:58:36] *** regedit has joined #angularjs
[05:59:23] *** illume has joined #angularjs
[06:00:34] <kdilla> same problem when when navigating and trying to open one of modal samples on angular-ui.github.io
[06:00:46] *** LeBlaaanc has joined #angularjs
[06:00:56] *** annlewis has joined #angularjs
[06:04:55] *** qdk_ has joined #angularjs
[06:05:03] *** p0k0 has quit IRC
[06:06:56] *** shangxia1 is now known as shangxiao
[06:07:02] *** heyts has quit IRC
[06:07:39] *** Klumben has joined #angularjs
[06:10:25] *** LeBlaaanc has quit IRC
[06:10:30] *** DavidBoreanauz has quit IRC
[06:11:34] *** spacenomad has quit IRC
[06:12:14] *** annlewis has quit IRC
[06:12:19] *** BlinkyBill has quit IRC
[06:17:28] *** macabre has joined #angularjs
[06:18:19] *** shortstraw8 has joined #angularjs
[06:18:34] *** mary5030 has quit IRC
[06:19:19] *** regedit has quit IRC
[06:19:59] *** mandric has quit IRC
[06:21:40] *** iraj has joined #angularjs
[06:21:53] *** davek has quit IRC
[06:22:12] <shortstraw8> New to angular, if I am just building an angular based site do I need to install node on top of apache for full functionality, or will uploading and having the source files in a folder be okay?
[06:23:15] <dodobrain> shortstraw8, angular is client side.. so all you will need to do is serve up the files from any http server: apache httpd, nginx, node,js, ruby, python, etc.
[06:23:50] *** fscala has quit IRC
[06:25:49] *** FIFOd has quit IRC
[06:26:36] *** fscala has joined #angularjs
[06:27:38] <shortstraw8> okay, I run apache, and the angular files uploaded. Just everything I was seeing was saying you had run node, which seems easy enough but not going to if I don't need to. Thanks dodobrain
[06:27:51] *** Aliks has quit IRC
[06:28:32] *** pimlu has joined #angularjs
[06:28:57] <dodobrain> no, you don;t need to. everything happens client side in the browser. so its the same as just serving up html, js, css files
[06:32:27] *** macwinner has quit IRC
[06:32:42] *** asteele has quit IRC
[06:32:55] *** macwinner has joined #angularjs
[06:33:19] *** tuskkk___ has joined #angularjs
[06:38:54] *** kdilla has quit IRC
[06:41:39] *** bhaveshletter has joined #angularjs
[06:42:25] *** regedit has joined #angularjs
[06:43:45] *** rickmak has joined #angularjs
[06:44:18] *** jxv has quit IRC
[06:44:50] *** soee_ has quit IRC
[06:45:18] *** rickmak has quit IRC
[06:47:47] *** wonder95 has quit IRC
[06:48:01] *** GGBaby has quit IRC
[06:49:44] *** pimlu has quit IRC
[06:51:12] *** VeeWee has joined #angularjs
[06:53:28] *** diegoaguilar has joined #angularjs
[06:54:10] <tuskkk___> from this snippet (http://plnkr.co/edit/dkLigzNY5vXXlopDFwHm?p=preview) I have extracted the code to my app, and for the beforeDrop event, I have a custom method as, jqyoui-droppable="{beforeDrop: 'myMethod'}", but somehow this method doesnt get fired as it is in the snippet. How do I trace this?
[06:54:18] *** SrPx has joined #angularjs
[06:54:42] *** leolrrj has quit IRC
[06:55:06] *** encryptd_fractal has joined #angularjs
[06:55:35] *** SrPx has quit IRC
[06:55:43] *** empyreanx has quit IRC
[06:56:42] *** SET001 has quit IRC
[06:57:51] *** Mumpsimus has joined #angularjs
[07:00:55] *** yky has joined #angularjs
[07:01:19] *** yky is now known as Guest25229
[07:01:38] *** encryptd_fractal has quit IRC
[07:01:45] *** SrPx has joined #angularjs
[07:03:18] *** SrPx has quit IRC
[07:04:33] *** kowshik has joined #angularjs
[07:04:48] <kowshik> hello
[07:04:54] <kowshik> h r u all
[07:05:12] *** mglvl has quit IRC
[07:05:36] *** lite_ has joined #angularjs
[07:06:10] *** kowshik has quit IRC
[07:07:04] *** Scubao has joined #angularjs
[07:08:28] *** annlewis has joined #angularjs
[07:08:29] *** regedit has quit IRC
[07:09:03] *** regedit has joined #angularjs
[07:12:03] *** dabdab has quit IRC
[07:13:04] *** annlewis has quit IRC
[07:13:09] *** aubsrey_ has quit IRC
[07:13:27] *** smccarth_ has quit IRC
[07:14:39] *** aubsrey_ has joined #angularjs
[07:15:31] *** n00bdev has joined #angularjs
[07:15:33] *** zeezey has joined #angularjs
[07:16:46] *** greatdex has joined #angularjs
[07:17:23] *** p0k0 has joined #angularjs
[07:17:39] *** ESpiney has quit IRC
[07:18:11] *** magellanicloud has quit IRC
[07:21:34] *** Barkat has joined #angularjs
[07:21:48] <Barkat> Hi guys
[07:26:26] *** nanuko has joined #angularjs
[07:27:13] *** n00bdev has quit IRC
[07:27:27] *** qdk_ has quit IRC
[07:27:57] *** rickmak has joined #angularjs
[07:28:43] *** kk_drop has joined #angularjs
[07:29:11] *** mary5030 has joined #angularjs
[07:30:13] *** rickmak has quit IRC
[07:33:12] *** sctskw has joined #angularjs
[07:33:41] *** rickmak has joined #angularjs
[07:33:59] *** mary5030 has quit IRC
[07:35:07] *** punknroll has joined #angularjs
[07:35:22] *** zeezey has quit IRC
[07:35:24] *** greatdex has quit IRC
[07:35:54] *** nanuko has quit IRC
[07:36:04] *** doppio|Laptop has joined #angularjs
[07:36:29] *** SET001 has joined #angularjs
[07:36:33] *** greatdex has joined #angularjs
[07:37:26] *** mooru has joined #angularjs
[07:38:44] *** marthinal has joined #angularjs
[07:42:39] *** lite_ has quit IRC
[07:43:04] *** regedit has quit IRC
[07:43:05] *** lite_ has joined #angularjs
[07:43:29] *** ah has joined #angularjs
[07:43:47] *** Scubao has quit IRC
[07:43:48] *** ah is now known as Guest18166
[07:44:50] *** jsheely has quit IRC
[07:45:32] *** sctskw has quit IRC
[07:46:02] *** sctskw has joined #angularjs
[07:46:12] *** regedit has joined #angularjs
[07:46:20] *** qdk has joined #angularjs
[07:47:21] *** sctskw has quit IRC
[07:47:56] *** sctskw has joined #angularjs
[07:48:10] *** thfty has joined #angularjs
[07:48:13] <thfty> ?
[07:48:16] *** lnrdo has joined #angularjs
[07:48:20] *** thfty has quit IRC
[07:51:36] *** Aliks has joined #angularjs
[07:52:20] *** sctskw has quit IRC
[07:52:38] *** lnrdo has quit IRC
[07:53:07] *** qdk has quit IRC
[07:54:53] *** erve has quit IRC
[07:55:06] *** dragonpiper has quit IRC
[07:56:01] *** goodenough has joined #angularjs
[07:58:27] *** mooru has quit IRC
[07:58:32] *** qdk has joined #angularjs
[07:59:08] *** rwereka has joined #angularjs
[07:59:21] *** Numi has joined #angularjs
[07:59:31] * rwereka slaps Alfie around a bit with a large fishbot
[08:00:40] *** rwereka has quit IRC
[08:01:52] *** Barkat has quit IRC
[08:04:22] *** Debnet has joined #angularjs
[08:04:27] *** Leon has joined #angularjs
[08:05:11] *** regedit has quit IRC
[08:05:12] *** dodobrain has quit IRC
[08:08:04] *** shangxiao has quit IRC
[08:09:02] *** Aliks has quit IRC
[08:09:08] *** annlewis has joined #angularjs
[08:09:46] *** ahhhndi has joined #angularjs
[08:10:52] *** juro has joined #angularjs
[08:12:07] *** aubsrey_ has quit IRC
[08:12:24] *** ahhhndi has quit IRC
[08:12:27] *** juro has quit IRC
[08:12:37] *** juro_ has joined #angularjs
[08:14:00] *** annlewis has quit IRC
[08:15:09] *** Garfield-fr has joined #angularjs
[08:15:15] *** shortstraw8 has quit IRC
[08:15:33] *** juro_ has quit IRC
[08:15:39] *** Guest25229 has quit IRC
[08:15:53] *** juro has joined #angularjs
[08:15:58] *** cvanball has joined #angularjs
[08:17:32] *** soee has joined #angularjs
[08:18:40] *** pelim has quit IRC
[08:18:56] *** pelim has joined #angularjs
[08:19:07] *** citizen-stig has joined #angularjs
[08:21:10] *** ahaeger has joined #angularjs
[08:22:43] *** Numi has quit IRC
[08:23:31] *** fullstack has quit IRC
[08:23:32] *** fullstack has joined #angularjs
[08:23:45] *** george_v has joined #angularjs
[08:24:21] *** k1ng4400 has joined #angularjs
[08:25:43] *** svycka has joined #angularjs
[08:27:39] *** k1ng440 has quit IRC
[08:28:35] *** illume has quit IRC
[08:29:34] *** gambl0re has quit IRC
[08:29:54] *** gambl0re has joined #angularjs
[08:29:58] *** Tx3 has joined #angularjs
[08:32:10] <Tx3> Hi! I am trying to make a recursive tree structure, but debugging what's wrong is difficult. Maybe someone can spot an error on Plunker?
[08:32:11] <Tx3> http://plnkr.co/edit/sfDTLMS0ppmL6hMjTYIr
[08:33:03] <Tx3> AppComponent has companies and it should pass them to tree-view
[08:37:01] *** icebox has joined #angularjs
[08:43:18] *** mrkake has quit IRC
[08:43:40] *** shangxiao has joined #angularjs
[08:45:23] *** pelim has quit IRC
[08:45:58] <Tx3> updated plunker: http://plnkr.co/edit/sHROIu5I0s4LTeJ6yKbF
[08:46:55] <juro> Hi, when setting up my project, what is the best practice to add static files (theme css and images). I.e. where do I store these files?
[08:50:08] *** mrkake has joined #angularjs
[08:51:16] *** zeezey has joined #angularjs
[08:52:23] *** cdmsn has quit IRC
[08:52:57] *** vrockai has joined #angularjs
[08:54:18] <icebox> juro: that depends on your phisical architecture and your project layout
[08:54:47] <icebox> *physical
[08:54:58] *** tarnus has quit IRC
[08:55:04] <juro> icebox, sure, I am following this (apparently best practice) approach: https://github.com/johnpapa/ng-demos/tree/master/modular
[08:55:17] <juro> I was thinking of adding them into the folder /src/assets
[08:55:35] <icebox> juro: ok... yep... agreed... or src/content
[08:56:12] <juro> is content more common?
[08:56:30] <icebox> juro: well... no stats here... :)
[08:56:49] <juro> haha, ok. so it's a purely academic discussion anyway :)
[08:57:20] *** Aliks has joined #angularjs
[08:57:22] <icebox> yep :)
[08:58:07] *** Aliks has quit IRC
[08:58:08] <icebox> my choice is src/client/content
[08:58:45] *** encryptd_fractal has joined #angularjs
[08:59:58] <juro> thx
[09:00:18] *** Ugolin has joined #angularjs
[09:03:07] *** encryptd_fractal has quit IRC
[09:04:24] *** jonasliljestrand has joined #angularjs
[09:07:18] *** marthinal has quit IRC
[09:07:36] *** b1x1t0__ has joined #angularjs
[09:08:01] *** songi has joined #angularjs
[09:08:19] <songi> hello, is it possible to decorate a provider?
[09:09:53] *** annlewis has joined #angularjs
[09:10:11] <icebox> in terms of Christmas pictures?
[09:10:20] *** sbellina has quit IRC
[09:11:02] *** rud has joined #angularjs
[09:11:47] *** ilmgb has joined #angularjs
[09:11:48] <songi> XD
[09:11:49] <icebox> if you can decorate a service, I think you can decorate also a provider... they are the same stuff behind the scene
[09:11:49] *** sbellina has joined #angularjs
[09:12:15] <songi> I suspected that but I tried without success
[09:12:50] <songi> I'm tried to decorate the urlMatcherFactory of the ui-router
[09:12:55] <songi> *I tried
[09:13:07] *** danielemm has joined #angularjs
[09:13:10] *** brk has joined #angularjs
[09:13:14] <icebox> I see... $provide.factory
[09:13:33] <icebox> http://blog.xebia.com/extending-angularjs-services-with-the-decorate-method/
[09:13:49] <songi> in order to fix a known bug which is going to be delivered in the next release
[09:14:40] *** annlewis has quit IRC
[09:14:44] <icebox> well... merge locally the patch... effective and fast :)
[09:14:53] <songi> anybody knows about that bug? happens when you have slashes in the parameters
[09:15:17] <songi> it's not compliant with the deployment process
[09:16:46] *** Ragnar has quit IRC
[09:17:07] *** shangxiao has quit IRC
[09:17:17] *** thatslif_ has joined #angularjs
[09:17:27] *** punknroll has quit IRC
[09:17:53] <icebox> songi: ok... spend your time to decorate that, testing it and introducing new bugs... just to see it doesn't work for an edge case... :) what a waste of time when you have the solution ready... my two cents
[09:17:55] *** thatslifeson has quit IRC
[09:17:58] *** punknroll has joined #angularjs
[09:18:08] *** Mumpsimus has quit IRC
[09:18:37] *** ahhhndi has joined #angularjs
[09:18:45] *** Ragnar has joined #angularjs
[09:19:31] *** Ragnar has quit IRC
[09:19:49] <songi> icebox: I agree with you but this is not the way I have to do it
[09:19:56] <songi> thanks for helping ;9
[09:19:58] <songi> ;)
[09:20:17] <icebox> you are welcome
[09:20:41] *** HarryHallman has quit IRC
[09:21:05] *** citizen-stig has quit IRC
[09:21:45] *** LondonAppDev has joined #angularjs
[09:21:47] *** thatslif_ has quit IRC
[09:22:10] <icebox> songi: just for the sake of curiosity... what is the difference in your deployment process about a vendor lib between master@123abc release and tag 0.2.16? :)
[09:22:11] <LondonAppDev> Hey guys, what is the name of the AngularJS framework with all the pre-made elements that looks nice.
[09:22:27] *** mchammer has joined #angularjs
[09:22:37] <icebox> LondonAppDev: angular2?
[09:22:42] <LondonAppDev> No
[09:22:51] <songi> icebox: those libraries are deployed using npm install
[09:23:09] <songi> then you cannot use a different branch
[09:23:11] <icebox> so... what do you mean for "pre-made"?
[09:23:19] <LondonAppDev> icebox: found it, Angular Material :)
[09:23:23] <icebox> songi: in npm you can set everything :)
[09:23:35] *** AndrewIsh has joined #angularjs
[09:23:48] *** thatslifeson has joined #angularjs
[09:23:49] <songi> can you elaborate more?
[09:23:54] <icebox> songi: indeed you can set a particular commit :)
[09:24:08] *** HarryHallman has joined #angularjs
[09:24:25] <songi> icebox: sorry I was wrong I use bower
[09:24:36] <icebox> songi: ah ok...
[09:24:39] <songi> can you do that on bower as well?
[09:24:56] *** plekplek has joined #angularjs
[09:25:01] <icebox> songi: I don't know... I am sure with npm.. I don't use bower
[09:25:55] *** citizen-stig has joined #angularjs
[09:27:04] <icebox> songi: for instance in npm - npm install <githubname>/<githubrepo>[#<commit-ish>] - https://docs.npmjs.com/cli/install
[09:27:15] *** rchavik has quit IRC
[09:27:20] *** beakman has joined #angularjs
[09:27:52] <icebox> songi: it seems also with bower http://stackoverflow.com/questions/19348076/installing-a-dependency-with-bower-from-url-and-specify-version
[09:27:54] *** ag0rex has joined #angularjs
[09:28:52] *** ag0rex has joined #angularjs
[09:29:14] <songi> icebox: having a look
[09:29:50] *** cotko has joined #angularjs
[09:30:01] *** illume has joined #angularjs
[09:31:06] *** bcSquared- has joined #angularjs
[09:31:07] *** HarunTy has joined #angularjs
[09:31:32] *** jbro has quit IRC
[09:32:25] *** Aliks has joined #angularjs
[09:32:50] *** beakman has quit IRC
[09:33:08] *** ewooy has joined #angularjs
[09:33:37] *** e7d has joined #angularjs
[09:34:15] *** Karasu has joined #angularjs
[09:34:27] *** tangorri has joined #angularjs
[09:34:33] *** nocontrol has joined #angularjs
[09:34:56] *** Karasu is now known as Raven
[09:34:57] <nocontrol> I removed turbolinks but javascript needs to refresh page in order to load... I am using Angular over Rails, any suggestions ?
[09:35:00] *** Raven is now known as Raven|Away
[09:35:02] *** bcSquared has quit IRC
[09:35:03] *** Raven|Away is now known as Raven
[09:35:30] *** goodenough has quit IRC
[09:35:41] *** tristanp_ has joined #angularjs
[09:35:51] *** Hounddog has joined #angularjs
[09:35:54] *** marthinal has joined #angularjs
[09:35:57] *** ilmgb_ has joined #angularjs
[09:36:24] *** goodenough has joined #angularjs
[09:37:31] *** e7d has quit IRC
[09:37:40] *** tristanp has quit IRC
[09:37:55] *** Aliks has quit IRC
[09:38:20] *** e7d has joined #angularjs
[09:39:31] *** ilmgb has quit IRC
[09:39:48] *** django_ has quit IRC
[09:39:59] *** b0yzn01z3 has quit IRC
[09:40:31] *** ril has joined #angularjs
[09:40:55] *** fixl has joined #angularjs
[09:41:20] *** brollypop has joined #angularjs
[09:42:10] *** iateadonut has joined #angularjs
[09:42:11] *** pelim has joined #angularjs
[09:42:31] *** leehambley has joined #angularjs
[09:44:02] *** ewooy has quit IRC
[09:44:35] *** lmatteis has joined #angularjs
[09:45:01] *** skullcrasher_ has left #angularjs
[09:47:25] *** erol has joined #angularjs
[09:48:39] *** mooru has joined #angularjs
[09:49:11] *** ewooy has joined #angularjs
[09:49:20] *** fixl has quit IRC
[09:49:27] *** fixl_ has joined #angularjs
[09:52:08] <nocontrol> http://stackoverflow.com/questions/34016211/how-to-make-js-load-on-every-page-change-when-using-angularjs-rails
[09:54:07] *** Aliks has joined #angularjs
[09:54:41] *** ewooy has quit IRC
[09:54:45] *** Danielyan has joined #angularjs
[09:54:50] *** Voyage has joined #angularjs
[09:56:08] *** thatslifeson has quit IRC
[09:56:25] *** rickmak has quit IRC
[09:57:28] *** r has joined #angularjs
[09:57:40] *** dpicky has joined #angularjs
[09:57:51] *** r is now known as Guest6836
[09:58:04] *** baweaver has quit IRC
[09:59:04] *** Guest6836 has quit IRC
[09:59:17] *** rickmak has joined #angularjs
[09:59:41] *** intellix has quit IRC
[09:59:47] *** shangxiao has joined #angularjs
[10:01:35] *** buzzedword has joined #angularjs
[10:02:54] *** punknroll has quit IRC
[10:04:59] *** davonrails has joined #angularjs
[10:05:47] *** intellix has joined #angularjs
[10:05:53] *** poorBastard has joined #angularjs
[10:06:07] *** buzzedword has quit IRC
[10:06:09] <davonrails> Hi Guys, need help initializing angular bootstrap UI (added to dependencies, no error but directive does not seem to be loaded)
[10:06:10] *** aks has joined #angularjs
[10:07:46] *** intellix has quit IRC
[10:08:50] *** fees has joined #angularjs
[10:09:19] *** lite_ has quit IRC
[10:09:20] *** zeezey has quit IRC
[10:09:38] *** illume has quit IRC
[10:09:52] *** lite_ has joined #angularjs
[10:10:24] *** zeezey has joined #angularjs
[10:10:39] *** annlewis has joined #angularjs
[10:10:57] <davonrails> is AngularBootstrapUI supposed to work well with angularJS v1.3.15 ?
[10:11:03] *** c00ljs has joined #angularjs
[10:12:14] *** intellix has joined #angularjs
[10:13:07] *** arthas has joined #angularjs
[10:13:17] *** SET001 has quit IRC
[10:13:19] *** leehambley has quit IRC
[10:14:27] *** punknroll has joined #angularjs
[10:14:36] *** c00ljs has quit IRC
[10:14:41] <davonrails> Is anyone responding in this global feed ? Is it ok to ask questions here ?
[10:15:20] *** annlewis has quit IRC
[10:15:30] *** speeddragon has quit IRC
[10:16:14] *** sdfdfsf has joined #angularjs
[10:17:33] *** sdfdfsf has quit IRC
[10:18:10] *** marr has joined #angularjs
[10:19:38] *** doppio|Laptop has quit IRC
[10:20:25] <davonrails> upgraded to 1.4.7 and doesn’t seem to change anything :(
[10:21:03] *** punknroll has quit IRC
[10:22:57] *** punknroll has joined #angularjs
[10:24:27] *** Aliks has quit IRC
[10:24:47] *** Danielyan has quit IRC
[10:26:22] <icebox> davonrails: plunker?
[10:27:52] *** rickmak has quit IRC
[10:29:06] *** Laserbeak has joined #angularjs
[10:29:33] *** senayar has joined #angularjs
[10:29:34] *** senayar has joined #angularjs
[10:29:46] *** ilmgb_ has quit IRC
[10:30:22] *** ilmgb has joined #angularjs
[10:30:56] *** ilmgb has joined #angularjs
[10:31:04] *** annlewis has joined #angularjs
[10:31:22] *** Lzrbeak has quit IRC
[10:32:35] <davonrails> icebox: there you go http://plnkr.co/edit/zIQmevEsTvc3Zl0y7nfw?p=preview I might doing something wrong
[10:33:04] <icebox> davonrails: did you check console log for errors?
[10:35:18] <davonrails> icebox: sorry forgot to add jQuery I’ll get back to you when it’s done
[10:35:55] <icebox> davonrails: and there the order is important
[10:35:59] *** annlewis has quit IRC
[10:36:12] *** tangorri has quit IRC
[10:36:42] <icebox> davonrails: why do you load bootstrap, boostrap ui, jquery and angular?
[10:37:06] *** jlebrech has joined #angularjs
[10:37:06] <icebox> davonrails: is not enough boostrap ui and angular?
[10:37:08] *** leehambley has joined #angularjs
[10:37:45] <davonrails> well I use bootstrap as a standalone on the rest of the application, I want to start integrate AngularJS / BootstrapUI to an existing app
[10:37:51] <icebox> davonrails: of course you may read boostrap ui about adding deps
[10:38:19] <icebox> davonrails: it seems to me that is a bit confusing
[10:38:32] <icebox> davonrails: I mean, mixing a lot of stuff :)
[10:39:09] <icebox> davonrails: and in this case, you need to reduce at the minimun the footprint to highlight your current issue
[10:39:18] *** yky has joined #angularjs
[10:39:27] <davonrails> I guess it is, but how am I supposed to do to integrate it smoothly in a existing app without rebuilding it from scratch ?
[10:39:34] *** GeertJohan has joined #angularjs
[10:39:41] *** yky is now known as Guest4660
[10:39:51] <davonrails> icebox: ok I’l remove it from now
[10:40:08] <icebox> davonrails: sure... but one thing it is your project, another one is asking help for an issue :)
[10:40:36] *** poorBastard is now known as freddyG
[10:40:46] *** Dreamsri has joined #angularjs
[10:40:50] *** hohl has joined #angularjs
[10:41:19] *** Dreamsri has left #angularjs
[10:41:52] *** freddyG has quit IRC
[10:41:53] <davonrails> icebox: you’re right :)
[10:42:39] *** ThuyNguyen has joined #angularjs
[10:43:08] *** myghty has joined #angularjs
[10:43:11] <myghty> hi there
[10:43:14] *** Xzanron has joined #angularjs
[10:43:21] *** guilbep has joined #angularjs
[10:43:25] <davonrails> icebox: there you go, removed other dependencies, just kept angularjs and bootstrap UI
[10:43:50] *** siba has joined #angularjs
[10:43:56] *** illume has joined #angularjs
[10:44:05] <davonrails> icebox: angularJS seems to beloaded, with no error in console but looks like I have the same bug (ng model value doesn’t change)
[10:44:17] <icebox> davonrails: no... I get errors
[10:44:19] <myghty> Is there an option to enable something like verbose mode for angular?
[10:44:42] <icebox> myghty: you may give a look at debug option.. see the docs
[10:44:44] <ThuyNguyen> hi All, should I use flux in angularjs?
[10:45:03] <myghty> Since I get no errors, but my controller does not get loaded :/
[10:45:09] <myghty> icebox: thx will have a look
[10:45:12] <icebox> ThuyNguyen: if you want... http://victorsavkin.com/post/99998937651/building-angular-apps-using-flux-architecture
[10:45:47] *** cotko has quit IRC
[10:45:54] *** brk has quit IRC
[10:45:54] <icebox> davonrails: now it is ok... at least I have no errors
[10:46:06] <icebox> davonrails: (no pm)
[10:46:36] <icebox> davonrails: now... what do you expect?
[10:46:44] <davonrails> icebox: allright :)
[10:47:15] <icebox> davonrails: no ['ui.bootstrap'] dep :)
[10:47:40] *** cotko has joined #angularjs
[10:47:59] <icebox> davonrails: you said ..."(added to dependencies,...) :)
[10:48:15] <icebox> davonrails: add that and you are in business :)
[10:48:18] <davonrails> icebox: allright that worked :) thing is it doesn’t worked in my project
[10:48:29] <icebox> davonrails: ok... next step...
[10:49:18] <davonrails> icebox: it might be due to my jquery / bootstrap standalone mix
[10:49:20] <ThuyNguyen> <icebox> I don't know, it need for angular? I think angular can work ok
[10:49:26] <icebox> davonrails: change the class anmes
[10:49:26] *** Voyage has quit IRC
[10:49:54] <icebox> davonrails: I think they are wrong... they are old and clash with native bootstrap
[10:50:14] *** Tx3 has quit IRC
[10:51:13] *** rickmak has joined #angularjs
[10:51:16] *** heyts has joined #angularjs
[10:51:19] <davonrails> icebox: which class names ? btn / btn-primary?
[10:51:32] <davonrails> icebox: or left / middle / right ?
[10:51:32] <icebox> davonrails: no.. checked... they are corrected, but you have a problem mixing stuff... for instance, btn primary
[10:52:23] <icebox> davonrails: you should double check my statement... maybe there is a way... generally speaking, better no mixing :)
[10:52:24] *** Ronyrun has joined #angularjs
[10:52:50] <icebox> davonrails: you know, new branch and only when you migrate all the stuff, nerge it :)
[10:53:15] <icebox> ThuyNguyen: sure
[10:53:51] *** uNki has joined #angularjs
[10:54:29] <ThuyNguyen> <icebox> "sure" mean I need use flux or not?
[10:54:39] <davonrails> icebox: yeah but removing bootstrap.js will remove all native calls to bootstrap js elsewhere, meaning I need to merge all other features to angular, which is clearly impossible for now (would imply rebuilding the whole app) - I’ll need to figure out where the conflict comes from
[10:55:15] <icebox> ThuyNguyen: if you read that post, the answer is yes
[10:55:31] *** erve has joined #angularjs
[10:55:36] *** b0yzn01z3 has joined #angularjs
[10:55:56] *** tarnus has joined #angularjs
[10:56:03] *** heyts has quit IRC
[10:56:35] <icebox> ThuyNguyen: and "need" depends on your project.. you asked if you can use "flux" with angular: the answer is yes... if you mean you should use flux with angular: the answer is up to your project
[10:56:47] <davonrails> icebox: thanks for your time, I’ll figure this out :)
[10:57:02] <icebox> davonrails: I am here if you need support :)
[10:57:23] <myghty> wtf... it loads the scope but it does not execute anything from the controller oO
[10:57:26] <myghty> strange
[10:57:29] *** dabdab has joined #angularjs
[10:57:33] *** ilmgb has quit IRC
[10:57:53] <icebox> myghty: forgetting to add the controller script to the page? :)
[10:58:01] *** ilmgb has joined #angularjs
[10:58:16] <myghty> icebox: than it would give an error that the controller is not available, right?
[10:58:23] *** LondonAppDev has quit IRC
[10:58:37] *** baweaver has joined #angularjs
[10:58:48] *** LondonAppDev has joined #angularjs
[10:58:49] *** illume has quit IRC
[10:58:58] <myghty> icebox: but that is not the case... it seems to get loaded...
[10:59:06] <icebox> myghty: maybe... or forgetting ng-controller in the html... or forgetting to add the controller property to the route and so on... without a plunker, it is only a guessing :)
[10:59:43] <myghty> hm jeah is some confidential information there putting it into a plunkr is a little bit hard :/
[10:59:56] <nocontrol> http://stackoverflow.com/questions/34016211/how-to-make-js-load-on-every-page-change-when-using-angularjs-rails anyone please ?
[11:00:03] *** encryptd_fractal has joined #angularjs
[11:00:14] *** erve has quit IRC
[11:00:34] *** dpicky_ has joined #angularjs
[11:00:43] *** tarnus has quit IRC
[11:00:56] <Bish> hi if i do a http request with ng-resource, and give the query an array ( resource.query({stuff:[1,2,3]}) what it will do is stuff=1&stuff=2&stuff=3, how can i change that behaviour?
[11:01:23] <icebox> myghty: sure... but reducing the code to the minimal one to reproduce the issue (without compromising the privacy) is the first requirement, if you ask help here :)
[11:02:14] *** ilmgb has quit IRC
[11:02:22] <icebox> myghty: however it should be a dummy thing... I am sure you resolve asap... good luck
[11:02:31] <myghty> jeah sure ;D just trying to debug it with batarang
[11:03:02] <myghty> thx :)
[11:03:03] *** dpicky has quit IRC
[11:03:15] <icebox> Bish: what do you expect?
[11:03:23] *** SonikBoom has joined #angularjs
[11:03:31] *** baweaver has quit IRC
[11:03:47] <Bish> well, my http server doesn't catch multiple definitions of a parameter in url
[11:04:18] *** encryptd_fractal has quit IRC
[11:04:26] <Bish> i remember seeing something like stuff[0]=1,stuff[1]=2 etc, i don't know, was it jquery?
[11:04:27] <ThuyNguyen> icebox: thanks for your support, I am thinking use Flux with angular
[11:04:31] <icebox> Bish: do you mean you expect a post and not a get?
[11:04:40] *** Guest4660 has quit IRC
[11:04:42] <Bish> no, how parameter get serialized
[11:04:51] <icebox> ThuyNguyen: nice... reading that post should help you
[11:05:09] *** ahaeger has quit IRC
[11:05:21] <icebox> Bish: if it is a get, it is a query string, as you see :)
[11:05:36] <icebox> Bish: it seems to me quite standard
[11:05:36] *** c00ljs has joined #angularjs
[11:05:44] <Bish> to use the same key over and over?
[11:05:50] *** shangxiao has quit IRC
[11:05:55] *** diegoaguilar has quit IRC
[11:06:04] <icebox> Bish: ok... recap... what do you expect?
[11:06:23] <myghty> totally strange oO
[11:06:51] <Bish> well, php (even while i don't use it), will only accept it if you add brackets add [] at the end of the key, if i recall correctly
[11:08:15] <Bish> so stuff=1&stuff=2&stuff=3 <= doesn't work in php | stuff[]=1&stuff[]=2&stuff[]=3 <= works in php
[11:08:20] <Bish> not sure though.
[11:08:50] *** asteele has joined #angularjs
[11:09:32] <icebox> Bish: are you sure you are passing correctly the parameters to .query? did you check docs?
[11:09:56] <Bish> well im doing .query(stuff:[1,2,3]); what can you do "wrong" about that
[11:10:10] <Bish> and the fact, that angular splits the array, tells me it does "handle" it somehow
[11:10:44] <icebox> Bish: http://stackoverflow.com/questions/29388353/how-to-pass-array-parameter-to-angularjs-resource
[11:10:48] *** qdk has quit IRC
[11:11:09] <icebox> Bish: check the docs or the source :)
[11:11:09] *** bengillies has joined #angularjs
[11:12:14] <Bish> yeah okay, he manually adds the brackets :/ bleh, i don't like this
[11:12:44] *** Scubao has joined #angularjs
[11:13:15] *** SrPx has joined #angularjs
[11:13:30] <myghty> aaaarg icebox foudn the issue... wanna guess? :P
[11:13:50] <icebox> Bish: I am sure there is a better way to do it... bu tìyou need to spend a bit of time digging around :)
[11:14:00] <icebox> myghty: no :P
[11:14:04] *** speeddragon has joined #angularjs
[11:14:07] <Bish> yeah thing is, without thinking about it probably, i implemented something like
[11:14:08] <myghty> copy & paste is a bitch
[11:14:08] *** sumanth has joined #angularjs
[11:14:26] <myghty> had two times the controller defined
[11:14:28] <Bish> http://server/resource?filter_like_name=John
[11:14:31] *** sumanth is now known as Guest73060
[11:14:33] <icebox> Bish: there are also two ot three issues closed about that topic
[11:14:42] <myghty> so I accidently overwrote the stuff
[11:15:14] <icebox> myghty: ah.. this is the reason I have been using eslint-plugin-angular... always lint your code :)
[11:15:24] <Bish> while my http server doesn't accept multiple definitions of query parameters ;;
[11:15:29] *** speeddra_ has joined #angularjs
[11:16:11] <icebox> Bish: like https://github.com/angular/angular.js/issues/12115
[11:16:19] *** Guest73060 has quit IRC
[11:17:08] *** c00ljs has quit IRC
[11:17:26] *** aghiuru has joined #angularjs
[11:17:27] <myghty> icebox: good idea
[11:17:28] <myghty> :)
[11:17:43] <Bish> now i will have to patch my http server ;;
[11:18:12] <icebox> Bish: sigh...
[11:18:27] *** csharper has quit IRC
[11:18:30] *** speeddragon has quit IRC
[11:18:38] *** zeezey has quit IRC
[11:18:44] *** csharper has joined #angularjs
[11:18:49] <myghty> Bish: I know dat problem
[11:18:54] <davonrails> icebox: just so you konw, for some reason my problem was due to using 'angular-ui-bootstrap-rails' gem - including myself the file worked.
[11:18:54] <myghty> enterprise!!!
[11:19:05] <Bish> icebox, what are you sigh-ing about, it's not angulars fault :/
[11:19:49] *** sai has joined #angularjs
[11:20:04] <icebox> davonrails: well... (jquery + boostrap) + (angular + ui bootstrap) + (angular-ui-bootstrap-rails) = wow :)
[11:20:07] *** Voyage has joined #angularjs
[11:20:19] *** mooru has quit IRC
[11:20:37] *** mooru has joined #angularjs
[11:21:09] <davonrails> icebox: I know, at some point we’ll have to rebuild the app from scratch removing all those deps ^^
[11:22:15] *** dpicky has joined #angularjs
[11:22:30] *** sai has quit IRC
[11:22:39] <myghty> davonrails: what kind of app?
[11:22:45] <myghty> sounds as well like enterprise ;D
[11:23:30] *** alesrest has joined #angularjs
[11:24:06] <davonrails> myghty: it’s a plannification app for home / health care services (enterpise :D)
[11:24:08] *** uNki has quit IRC
[11:24:18] <myghty> davonrails: ah thought so
[11:24:21] <icebox> davonrails: "at some point" and after a few years in irc... "Hi Guys, need help initializing angular bootstrap UI..." :)
[11:24:25] *** uNki has joined #angularjs
[11:24:31] *** intellix has quit IRC
[11:24:38] <myghty> sounded like banking or health care ;)
[11:24:53] <davonrails> icoebox: :)
[11:25:58] *** dpicky_ has quit IRC
[11:25:59] *** Zemzemi has joined #angularjs
[11:26:07] *** tangorri has joined #angularjs
[11:26:16] *** m8 has joined #angularjs
[11:26:36] *** fixl_ has quit IRC
[11:26:46] *** Voyage has quit IRC
[11:27:46] *** fixl has joined #angularjs
[11:31:10] *** obbs_ has quit IRC
[11:31:41] *** annlewis has joined #angularjs
[11:32:22] *** rchavik has joined #angularjs
[11:33:16] *** obbs_ has joined #angularjs
[11:36:00] *** nilsi_ has quit IRC
[11:36:08] *** intellix has joined #angularjs
[11:36:22] *** annlewis has quit IRC
[11:37:12] *** rickmak has quit IRC
[11:38:03] *** b0x has quit IRC
[11:38:30] *** leolrrj has joined #angularjs
[11:38:32] *** rickmak has joined #angularjs
[11:39:02] *** zamerick has joined #angularjs
[11:39:39] *** storresi has joined #angularjs
[11:40:35] *** c00ljs has joined #angularjs
[11:43:39] *** sbellina has quit IRC
[11:43:54] *** marthinal has quit IRC
[11:44:17] *** joshontheweb has quit IRC
[11:44:18] *** mxrguspxrt has joined #angularjs
[11:44:28] *** tangorri has quit IRC
[11:45:19] <juro> icebox, can you clarfiy this error? "Multiple directives [ngController, ccSidebar (module: app.widgets)] asking for new/isolated scope on:"
[11:45:39] *** Ugolin has quit IRC
[11:45:51] <juro> Also, is there a way to tell Angular to tell me where in the this error is thrown?
[11:46:05] *** Ugolin has joined #angularjs
[11:46:25] *** ren0v0 has quit IRC
[11:46:44] *** leehambley has quit IRC
[11:47:23] *** soee has quit IRC
[11:47:36] <icebox> juro: foolow the white rabbit... :) follow the link, no? I suppose it is similar to this one: https://docs.angularjs.org/error/$compile/multidir?p0=myPopup&p1=myDraggable&p2=new%2Fisolated%20scope&p3=%3Cdiv%20my-draggable%3D%22draggable%22%20class%3D%22dialog%22%20dialog-title%3D%22My%20Title%22%20is-draggable%3D%22%7B%7Btrue%7D%7D%22%3E
[11:47:36] *** charper2 has joined #angularjs
[11:47:59] *** benwaffle has quit IRC
[11:48:02] *** fixl has quit IRC
[11:48:08] *** benwaffle has joined #angularjs
[11:48:11] *** soee has joined #angularjs
[11:48:12] <icebox> juro: To resolve this issue remove one of the directives which is causing the collision.
[11:48:20] *** fixl has joined #angularjs
[11:48:47] *** csharper has quit IRC
[11:48:53] *** macwinner has quit IRC
[11:49:00] *** x3al has joined #angularjs
[11:49:06] *** macwinner has joined #angularjs
[11:49:06] *** Ronyrun has quit IRC
[11:49:08] *** ren0v0 has joined #angularjs
[11:49:19] *** m8 has quit IRC
[11:49:26] *** x3al_ has quit IRC
[11:49:37] <juro> icebox, I am following the white rabbit (i.e. console) and it shows me a lot of delegated errors, however it stops before it shows me where in my code the issue is happening :(
[11:50:27] *** wrainbolt has joined #angularjs
[11:50:37] *** ilmgb has joined #angularjs
[11:50:55] *** ilmgb has joined #angularjs
[11:51:19] <icebox> juro: nice... however you are developing something great and pushing hard... I never saw that error :)
[11:51:44] <juro> pfft, more like n00b errors left, right and center ...
[11:51:48] <davesidious> Hey folks - has anyone had any experience with measuring & setting element dimensions with AngularJS in order to achieve layouts not possible with pure CSS? I'm asking if there is a sensible approach to this, as nesting $timeouts doesn't seem like a particularly sustainable endeavour.
[11:52:29] *** tangorri has joined #angularjs
[11:53:03] *** siba has quit IRC
[11:53:29] <icebox> davesidious: are you asking that because you know how to do it but you don't know how to put the code in angular way... or asking how to measure and set element dimension?
[11:53:45] *** iceball has joined #angularjs
[11:53:54] <icebox> davesidious: the former in a directive, as you know... the latter is quite nasty problem :)
[11:53:55] <davesidious> It's more of an approach - I know how to measure & position elements.
[11:54:14] <tangorri> hmm do you think I need to document.$off on $destroy ?
[11:54:23] *** mxrguspxrt has quit IRC
[11:54:38] <davesidious> The problem arises when I have two cases of code-driven responsive elements which are nested, the outcome of one's repositioning affecting the other.
[11:54:50] <davesidious> chaining these in the right order seems problematic, or at least not as controllable as one would wish
[11:55:00] <icebox> davesidious: exactly... and visibility or z-order changes the game too
[11:55:20] <davesidious> I'm not too fussed with those, but yes. These elements are visible, but will change size when the window does.
[11:55:25] *** trippytango has joined #angularjs
[11:55:50] <davesidious> I've already got an on resize callback, but the code required seems flaky.
[11:55:51] <icebox> davesidious: so the point is how to catch "resize" event
[11:55:56] <davesidious> No, I have caught that
[11:56:04] <trippytango> Could anyone have a look at this in regards to angular2? http://stackoverflow.com/questions/34016325/angular2-assigning-a-control-inside-another-component
[11:56:28] *** codegenie has joined #angularjs
[11:56:29] <davesidious> the point is how to have a sensible approach to this, where multiple elements (which can be nested) resize in the right order
[11:56:42] <davesidious> and at the right time (when the DOM has been redrawn, so measurements can be made, etc.)
[11:56:44] <icebox> davesidious: no... the point is not the event per se... but when :) because the calculation depends on the context
[11:57:11] *** elyssonmr has joined #angularjs
[11:57:22] <davesidious> That's my point - catching the event is fine, it's knowing when to process the individual elements within, and how this process can be orchestrated across the elements in a sensible, AngularJS-y way.
[11:57:29] <icebox> davesidious: I am afraid it is not an angular problem... or better, here angular cannot help you
[11:57:45] <davesidious> It's not entirely Angular, sure
[11:58:18] <davesidious> but it's getting this approach to work within Angular which is the issue.
[11:58:24] <icebox> davesidious: I suggest you to find an agnostic (good) solution and then to implement it with angular
[11:58:35] *** k1ng4400 has quit IRC
[11:58:49] <davesidious> I was asking in case anyone had already done that.
[11:58:53] <icebox> davesidious: try to mix the two concerns it is like egg and chicken problem
[11:58:59] <davesidious> or at least understood the pitfalls and caveats
[11:58:59] *** djam90 has joined #angularjs
[11:59:16] <davesidious> I was just asking if the problem had been looked at, that's all.
[11:59:23] *** greatdex has quit IRC
[11:59:36] <davesidious> Reinventing wheels takes too long ;)
[11:59:37] <icebox> davesidious: that is a path your team needs to walk alone your project... there is not an unique solution
[11:59:48] <davesidious> You know that for sure? :)
[11:59:53] <icebox> sadly yes
[12:00:03] *** baweaver has joined #angularjs
[12:00:22] <davesidious> I don't want to sound rude but there is no way you can know that with anything approaching 100% certainty :)
[12:00:33] <icebox> if some baked solution is ok for you, you are lucky :)
[12:00:37] *** d3m0n has quit IRC
[12:00:58] <davesidious> I just wanted some pointers on either part of the problem - I'll engage Google-Fu and get to work ;)
[12:01:10] <icebox> I repeat myself... resizing is context dependent... so here we are :)
[12:01:20] *** sbasso has joined #angularjs
[12:01:39] *** lmatteis has quit IRC
[12:01:40] <davesidious> What does "context" mean in this context?
[12:02:11] <icebox> when and in what part of the app the resize event is raised
[12:02:19] *** charper2 has quit IRC
[12:02:37] <icebox> and if the layout is responsiveness the complexity is bigger, of course
[12:02:51] <icebox> *responsive
[12:02:52] <davesidious> Those are trivial concerns comparatively.
[12:03:20] <icebox> trivial? we spend a few months to tweak all edge cases :)
[12:03:31] <icebox> *spent
[12:04:09] *** csharper has joined #angularjs
[12:04:18] <icebox> of course I have been talking about an enterprise app... with hundreds of pages and scripts :) your mileage may vary, of course
[12:05:15] *** yky has joined #angularjs
[12:05:35] *** baweaver has quit IRC
[12:05:39] *** yky is now known as Guest60828
[12:07:08] *** iceball has quit IRC
[12:07:09] *** atomicb0mb has joined #angularjs
[12:07:23] *** arkin has joined #angularjs
[12:07:24] *** trippytango has quit IRC
[12:07:59] *** b0yzn01z3 has quit IRC
[12:08:11] *** songi has quit IRC
[12:08:49] *** macwinne_ has joined #angularjs
[12:08:58] *** myghty has left #angularjs
[12:09:08] *** zeioth has joined #angularjs
[12:09:46] *** Guest60828 has quit IRC
[12:10:06] *** b0yzn01z3 has joined #angularjs
[12:10:25] *** dszmaj has joined #angularjs
[12:10:30] *** intellix has quit IRC
[12:10:43] *** macwinner has quit IRC
[12:10:49] *** egamonal has joined #angularjs
[12:11:23] *** intellix has joined #angularjs
[12:11:28] *** mischat has joined #angularjs
[12:11:43] *** wrainbolt has quit IRC
[12:12:38] <egamonal> I was creating a project with yeoman and angular gulp generator when I was asked if I wanted to use an html template engine. should I? I could find a flame in stackoverflow but I can't really decide if I should use none, jade, haml or handlebars
[12:13:02] <icebox> davesidious: I didn't want shutdown you :) only to highlight the complexity of the problem... if you have any approach working on your project, that is good :) (off for a break)
[12:13:12] *** PeterBooker has joined #angularjs
[12:13:15] *** Compulsed has joined #angularjs
[12:14:43] <tuskkk___> at what point exactly is the directive being called? http://jsfiddle.net/thesharpieone/cptr7/
[12:15:11] *** vrockai has quit IRC
[12:20:56] *** ahhhndi has quit IRC
[12:25:00] *** Aliks has joined #angularjs
[12:25:04] *** p0k0 has quit IRC
[12:25:11] *** EoN has quit IRC
[12:25:59] <davesidious> We are not working on a project that large, and our requirements are rather well defined :)
[12:26:38] *** Zemzemi has quit IRC
[12:26:49] *** kk_drop has quit IRC
[12:27:08] *** rickmak has quit IRC
[12:28:09] *** marthinal has joined #angularjs
[12:28:33] *** Codefria_ has joined #angularjs
[12:29:23] *** Aliks has quit IRC
[12:30:37] <tuskkk___> what I am confused about is, name of the directive being ckEditor, while in the template its written as data-ck-editor
[12:31:10] *** tobias47n9e_ has joined #angularjs
[12:32:24] *** bhaveshletter has quit IRC
[12:32:37] *** annlewis has joined #angularjs
[12:33:56] *** daslicht has joined #angularjs
[12:34:48] *** aks has quit IRC
[12:34:52] *** tobias47n9e has quit IRC
[12:35:21] *** cacts has quit IRC
[12:35:28] *** burzum2 is now known as burzum
[12:36:00] *** JamesMGr_ has joined #angularjs
[12:36:30] *** cacts has joined #angularjs
[12:36:44] *** Compulsed has quit IRC
[12:37:18] *** annlewis has quit IRC
[12:37:46] *** roachiepoopoo has quit IRC
[12:38:35] *** equilibriumuk has quit IRC
[12:38:53] *** jayne has quit IRC
[12:39:29] *** rickmak has joined #angularjs
[12:39:59] *** heyts has joined #angularjs
[12:41:38] *** equilibriumuk has joined #angularjs
[12:41:59] *** fscala has quit IRC
[12:42:00] *** Leon has quit IRC
[12:42:14] *** nilsi has joined #angularjs
[12:42:22] *** Voyage has joined #angularjs
[12:43:29] *** rickmak has quit IRC
[12:43:38] *** fscala has joined #angularjs
[12:43:43] <OnkelTem> How to address a tempalte file on Plnkr?
[12:43:51] <OnkelTem> in templateUrl
[12:43:59] *** roachiepoopoo has joined #angularjs
[12:44:47] *** heyts has quit IRC
[12:46:01] *** thirdknife has joined #angularjs
[12:46:12] *** one_zero has quit IRC
[12:47:24] *** jayne has joined #angularjs
[12:48:08] *** tangorri has quit IRC
[12:48:40] *** buvarp has joined #angularjs
[12:49:05] <icebox> tuskkk___: it only a naming normalization... https://docs.angularjs.org/guide/directive
[12:51:22] <OnkelTem> Oh nice, so we can't use <base> on Plunker
[12:51:36] <icebox> OnkelTem: use relative URL... "./partial1.html" and add that page
[12:51:46] <OnkelTem> I tried, still 404
[12:51:51] <OnkelTem> let me show an example...
[12:52:10] <OnkelTem> http://plnkr.co/edit/ED0SGYyJerO1kaNDCwGv?p=preview
[12:52:28] *** fixl has quit IRC
[12:52:46] <OnkelTem> I had to set base to "/" because otherwise HTML5 mode doesn't work
[12:52:50] <icebox> OnkelTem: ah well... always tried that with ui router :)
[12:53:31] <buvarp> Hey! I have a question. I'm creating an SPA, and are working on user authentication. Say that when a user logs in the server sends back a token. Will I have to check the validity of that token with the server before every route change? In resolve I mean. It seems to me that if I don't it will be really easy to fool the app into believing you are logged in.
[12:53:37] *** k-joseph_ has joined #angularjs
[12:53:38] *** ilmgb has quit IRC
[12:54:10] <icebox> OnkelTem: I see
[12:54:12] *** ilmgb has joined #angularjs
[12:55:01] *** uNki has quit IRC
[12:55:30] *** uNki has joined #angularjs
[12:55:50] *** vrockai has joined #angularjs
[12:56:05] *** Leon has joined #angularjs
[12:56:11] <icebox> buvarp: http://jasonwatmore.com/post/2015/03/10/AngularJS-User-Registration-and-Login-Example.aspx and https://thinkster.io/angularjs-jwt-auth
[12:57:27] <icebox> buvarp: however the authentication patterns or workflows, about token validation, are framework agnostic... so there are many resource explaining different approaches between client and server
[12:57:28] *** Codefria_ has quit IRC
[12:58:47] *** ilmgb has quit IRC
[12:59:08] *** marr has quit IRC
[12:59:35] <buvarp> icebox: Thank you, I will take a look at those :) It just seems to me that because everything that isn't going through the server happens client-side the client will be able to manipulate this, and thus fool the app.
[13:00:26] *** Codefria_ has joined #angularjs
[13:01:07] *** jenelizabeth has quit IRC
[13:01:21] *** krad has joined #angularjs
[13:01:29] <OnkelTem> icebox: nailed it down! http://plnkr.co/edit/ED0SGYyJerO1kaNDCwGv?p=preview
[13:01:32] <icebox> buvarp: the client can change anything but when it lands on server-side ios validated :)
[13:01:33] <krad> hi. if i'm starting a project now, should i be using angular 2 or 1?
[13:01:40] *** encryptd_fractal has joined #angularjs
[13:02:47] *** bcSquared- has quit IRC
[13:02:50] <icebox> OnkelTem: nice... thanks for the details
[13:03:46] *** hkeide has quit IRC
[13:03:48] <icebox> krad: http://angularjs.blogspot.it/2015/11/highlights-from-angularconnect-2015.html
[13:04:05] *** Misere has joined #angularjs
[13:04:05] *** erebel55 has joined #angularjs
[13:04:13] *** kaka has joined #angularjs
[13:05:43] *** jayne has quit IRC
[13:05:44] *** Codefria_ has quit IRC
[13:05:53] <krad> will i find enough tools if i want to use angular2?
[13:06:14] *** encryptd_fractal has quit IRC
[13:06:26] *** thirdkni_ has joined #angularjs
[13:06:57] <icebox> krad: do you prefer opinions or facts? :) read that post... there are all info you are asking for
[13:07:27] *** Codefria_ has joined #angularjs
[13:08:28] *** k-joseph_ has quit IRC
[13:08:41] <torbjorn> is there anything that would better inform my users when there is a JS error on a page?
[13:08:52] <torbjorn> currently it typically silently stops working
[13:09:31] *** thirdknife has quit IRC
[13:10:07] *** moep has joined #angularjs
[13:10:16] *** compeman_ has joined #angularjs
[13:10:37] *** compeman_ has quit IRC
[13:11:30] <moep> huhu
[13:11:45] <icebox> hey
[13:11:54] <moep> heya icebox
[13:12:30] <icebox> torbjorn: it seems a general question
[13:13:03] *** jenelizabeth has joined #angularjs
[13:13:05] <torbjorn> nothing wrong with that i hope
[13:13:24] *** compeman_ has joined #angularjs
[13:13:25] *** hkeide has joined #angularjs
[13:13:31] *** ahaeger has joined #angularjs
[13:14:07] *** jayne has joined #angularjs
[13:14:23] *** ilmgb has joined #angularjs
[13:14:35] *** mnzaki has joined #angularjs
[13:15:24] *** fnx has joined #angularjs
[13:17:10] *** Codefria_ has quit IRC
[13:17:56] *** Coldblackice has quit IRC
[13:18:10] *** zeioth has quit IRC
[13:18:52] <juro> I have a sidebar and button that toggles it. Where do I save the button.click event?
[13:19:17] <icebox> torbjorn: no... but handling js errors from the user point of view has a lot of solutions (and you may ask it in any js channel) :)
[13:19:34] *** Codefria_ has joined #angularjs
[13:19:46] <torbjorn> sure sure, but in my experience, for every JS scenario out there, there is more often than not a ng-Solution in here
[13:19:50] *** ahhhndi has joined #angularjs
[13:19:57] <buvarp> icebox: Thank you for that JWT-article! It really helped :)
[13:19:59] <torbjorn> so i figured there might be an angular way of handling errors too
[13:20:15] <torbjorn> .. which i see there might be reading the style guide
[13:21:09] *** jlebrech has quit IRC
[13:21:18] <icebox> torbjorn: a more specific use case? general exception, general error, http error and so on?
[13:21:42] <icebox> torbjorn: usually the error message are handled with ng-message
[13:21:52] <icebox> buvarp: you are welcome
[13:21:55] *** thirdkni_ has quit IRC
[13:21:55] <iateadonut> is anyone using 2.0 alpha on a project? how is it for an alpha? sort of works or going to have to throw it out and start over if i try to use it?
[13:22:13] <icebox> iateadonut: http://angularjs.blogspot.it/2015/11/highlights-from-angularconnect-2015.html
[13:22:44] *** thirdknife has joined #angularjs
[13:22:49] <torbjorn> js errors in general, first of all id like the user to be warned there was an error, the site might not work anymore, addtionally perhaps catch and log this in my server
[13:22:59] *** thirdknife has quit IRC
[13:23:12] *** aslate has joined #angularjs
[13:23:25] *** Codefria_ has quit IRC
[13:23:29] *** thirdknife has joined #angularjs
[13:23:45] <torbjorn> just now i had a site where one of the routes just didnt react to clicking the ui-sref, there was no other apparent reason. i opened the js console and saw there was an error
[13:23:46] *** clivejo has joined #angularjs
[13:24:03] <torbjorn> a normal user would never see that, he's just get annoyed that simple things dont work, leave my site and never come back
[13:24:15] <torbjorn> he'd
[13:24:30] <icebox> torbjorn: really there are many approaches... I would go for the business requirements... imagine you have the message, then what? and so on
[13:24:41] *** Codefria_ has joined #angularjs
[13:24:53] <torbjorn> i wouldnt know how to catch the message in the first place
[13:25:00] *** thirdkni_ has joined #angularjs
[13:25:01] <icebox> torbjorn: we can talk about it for hours... from user experience to log performance :)
[13:25:28] <torbjorn> guess we can, but isnt there some pattern thats emerging for this..."out there"?
[13:25:28] *** uNki has quit IRC
[13:25:38] *** man2k15 has joined #angularjs
[13:25:53] *** uNki has joined #angularjs
[13:26:19] <torbjorn> i would like to... add a ng-error-handler, slightly alter its defaults, and be done
[13:26:19] <man2k15> how can i upload a file to db with the help af angular?
[13:26:54] *** man2k15 has quit IRC
[13:27:11] <icebox> torbjorn: yes and no... firstly you need to highlight your main use case, then you need to write down a sort of solution for the different layers (techinical, user, business, marketing, etc.)
[13:27:17] *** b0yzn01z3 has quit IRC
[13:27:33] <icebox> torbjorn: this is a very long story :)
[13:28:23] <icebox> torbjorn: but if you not have this kind of dimension... I think any solution is ok, if it works for you in terms of maintanance
[13:28:36] *** thirdknife has quit IRC
[13:28:59] <torbjorn> guess ill have to write the ng-errors-supreme myself then
[13:29:27] <icebox> torbjorn: and five minutes after that, the internalization equivalent :)
[13:29:34] *** Codefria_ has quit IRC
[13:29:50] *** jlebrech has joined #angularjs
[13:29:55] *** b0yzn01z3 has joined #angularjs
[13:30:06] <icebox> torbjorn: and after ten minutes, a CMS to modify the messages without the permission of the devs
[13:30:11] *** mandric has joined #angularjs
[13:30:24] <torbjorn> thats ok, by that point it overlaps with similar configuration needs
[13:30:28] <torbjorn> that has long been oursourced
[13:31:03] <icebox> torbjorn: and after 15 minutes, display different messages by role or permission :) and so on
[13:31:07] *** obbs_ is now known as obbs
[13:31:33] <icebox> torbjorn: no... they are all subsytems you need (or should) develop :)
[13:32:02] <torbjorn> i most friendly disagree! those needs would easily tap into existing solutions
[13:33:06] *** Voyage has quit IRC
[13:33:15] *** annlewis has joined #angularjs
[13:33:41] <torbjorn> nevertheless, ill work something out for now, thanks
[13:33:42] <icebox> torbjorn: and I would be agree... but the point is the company wants a sort of customization, and the standard apps or approaches out there fail miserably
[13:34:27] <icebox> torbjorn: sorry... today I see only the empty part of the glass :)
[13:35:15] <torbjorn> np. but still, even a mis-spelled, mis-configured, mis-languaged and wrong-colored message to the user, by any mean, is way better than silently doing noithing upon error
[13:35:49] <icebox> torbjorn: totally agree... however... no messagges, no errors. :)
[13:36:40] <icebox> torbjorn: Don't do the crime, if you can't do the time. :)
[13:36:53] <icebox> an old song said
[13:37:42] *** VeeWee has quit IRC
[13:38:08] *** tangorri has joined #angularjs
[13:38:08] *** annlewis has quit IRC
[13:38:09] <icebox> torbjorn: the past day, a user of us, complained the app gave an error message about the wrong! login :)
[13:38:24] <torbjorn> right, like any proper home-coding fanatic ill make it my lifes mission to prove to the world that they were wrong in not taking me more serious!
[13:38:42] <torbjorn> well, there will always be "users"
[13:39:45] *** egamonal has quit IRC
[13:41:06] *** jae has joined #angularjs
[13:41:35] *** JamesMGr_ has quit IRC
[13:42:25] *** elsevero has joined #angularjs
[13:44:21] *** quakephil has joined #angularjs
[13:44:31] *** hohl has quit IRC
[13:45:34] <torbjorn> icebox: could i ask something else - in an angular app i use the ui-router, and I'd like different views to add elements to the main navbar, do you know any patterns or ways to do this?
[13:46:01] *** shangxiao has joined #angularjs
[13:46:13] *** hohl has joined #angularjs
[13:46:44] <icebox> torbjorn: do you mean you need a dynamic navbar?
[13:47:00] *** leolrrj has joined #angularjs
[13:47:10] <icebox> torbjorn: ng-if should work
[13:49:06] *** VeeWee has joined #angularjs
[13:49:06] *** liamonade has joined #angularjs
[13:49:24] *** liamonade has quit IRC
[13:50:44] *** mooru has quit IRC
[13:51:56] *** CanyonMan has quit IRC
[13:52:22] *** Laserbeak has quit IRC
[13:52:43] *** Laserbeak has joined #angularjs
[13:53:00] *** aghiuru has quit IRC
[13:53:22] *** marthinal has quit IRC
[13:54:37] <torbjorn> icebox: the problem is scoping and configuring
[13:54:58] *** thrillgore has quit IRC
[13:55:02] <torbjorn> by the hierarchy of the html, the ui-view likely is below the navbar in the document
[13:55:15] <icebox> I see
[13:55:40] *** thrillgore has joined #angularjs
[13:55:41] <torbjorn> secondly the ui-router sets up states by .configure , at this point the controller doesnt exist "yet"
[13:55:58] *** subbu_ has joined #angularjs
[13:56:06] *** dein04 has joined #angularjs
[13:56:08] <torbjorn> suggesting that navbar-handling needs a service or factory
[13:56:18] <torbjorn> that can be configured and injected
[13:56:25] <torbjorn> which suggests that there might already be something out there
[13:57:12] <icebox> usually I have the whole tree loaded with states resolved... then the views are displayed or hidden based on different drivers
[13:57:22] *** dein04 has left #angularjs
[13:57:32] <torbjorn> yep me too
[13:57:54] <torbjorn> changing views now needs to communicate changes to the navbar
[13:58:13] <icebox> torbjorn: sharing data with services is the mantra
[13:58:30] *** subbu_ has quit IRC
[13:58:34] <torbjorn> what about $emit/$broadcast, would that be cheating?
[13:58:39] <icebox> feasible
[13:59:18] <torbjorn> though .configuring a navbarProvider sounds right with the angular terms involved
[13:59:31] <torbjorn> like you said, keeping data in a service
[13:59:32] <icebox> I would say not my first choice but it is a legit approach... I prefer the underlying services to share info
[13:59:44] *** rickmak has joined #angularjs
[13:59:55] *** _Penguin has quit IRC
[14:00:08] <torbjorn> second problem is the mechanics, should Iuse .onEnter and .onLeave to alter state of the navbar?
[14:00:14] *** shangxiao has quit IRC
[14:00:25] *** tarnus has joined #angularjs
[14:00:28] <torbjorn> and possibly push items onto the menu, or toggle them
[14:00:44] <torbjorn> the complexity again suggests that someone already did this
[14:00:51] *** iraj has quit IRC
[14:00:56] *** _Penguin has joined #angularjs
[14:01:20] <torbjorn> if not i guess ill have to do a ng-navbar-supreme after fixing my error handling
[14:01:42] *** baweaver has joined #angularjs
[14:02:10] *** aks has joined #angularjs
[14:02:37] <OnkelTem> I have a kind of trivial question
[14:03:07] <OnkelTem> I'd like to change attribute in html in $sstateChangeStart, but it isn't changed
[14:03:28] <OnkelTem> $rootScope.status = 'loading'; -- this doesn't "work"
[14:03:48] <OnkelTem> oh, wait
[14:05:45] <icebox> torbjorn: that is mixing two concerns: states and underlying model...
[14:06:27] *** baweaver has quit IRC
[14:06:45] *** yky has joined #angularjs
[14:07:08] *** yky is now known as Guest35497
[14:08:16] *** atomicb0mb has quit IRC
[14:12:31] *** Guest35497 has quit IRC
[14:12:47] *** rickmak has quit IRC
[14:12:48] <torbjorn> icebox: nevertheless, state config needs to address the change of navbar-items
[14:15:04] <torbjorn> furthermore since there is a controller to go with the view of a state , that feels like the right place to put the navbar definition for that state
[14:15:27] *** aks has quit IRC
[14:15:38] <torbjorn> hm or in the .data of the view
[14:15:54] <icebox> I see
[14:16:03] *** jpiasetz3 has joined #angularjs
[14:16:29] <torbjorn> also clicking these navbar items might also involve manipulating data in the scope of that controller, adding to the entanglement
[14:17:21] <icebox> well... this one should be more "easy"
[14:18:00] *** jae has quit IRC
[14:18:02] *** Pieplay has joined #angularjs
[14:18:40] <torbjorn> nevertheless it involves a timewarp, the controller needs to be able to hook into navbar items that are setup in the config phase, long before the controller comes into existance
[14:18:52] *** jpiasetz2 has quit IRC
[14:18:57] *** alesrest has quit IRC
[14:19:41] <DeoSama> torbjorn: If you're still here I have a question from yesterday that I'd love some help with. :)
[14:20:14] <torbjorn> im here
[14:20:47] <DeoSama> Awesome! :)
[14:21:13] <torbjorn> thouhg.. im not the angular developer youre looking for
[14:21:25] <DeoSama> So, I have the basic app setup with a .run() method that takes a custom security service I created to get a user's security access rights
[14:21:26] <DeoSama> nooooo
[14:21:27] <DeoSama> haha
[14:21:38] <DeoSama> Well, maybe you can take a stab at it?
[14:21:55] <torbjorn> knives ready
[14:22:02] <DeoSama> Basically, the service fires off an http.get() request for the rights.
[14:22:17] <DeoSama> the problem is, http.get() is async so when it fires off the request, angular continues to load
[14:22:30] <DeoSama> so, the FIRST page loads without any security loaded.
[14:22:35] <DeoSama> Every page thereafter will have security.
[14:22:41] *** zeioth has joined #angularjs
[14:22:50] <DeoSama> My "Fix" for this is to wrap all controllers in a .then() after the security call
[14:23:04] <DeoSama> It seems real hacky to do it that way
[14:23:52] <torbjorn> look at resolve
[14:24:10] *** rho has joined #angularjs
[14:24:11] *** rho has joined #angularjs
[14:25:09] <DeoSama> huh
[14:25:13] <DeoSama> this might be exactly what i'm looking for
[14:25:26] <DeoSama> See! You *were* the angular developer I was looking for!
[14:25:29] *** Codefria_ has joined #angularjs
[14:25:38] <torbjorn> the force is weak in this one
[14:26:02] *** encryptd_fractal has joined #angularjs
[14:26:52] <OnkelTem> Ok, I've finally created test case for my (yesterday's) question
[14:26:57] *** tangorri has quit IRC
[14:26:58] <OnkelTem> http://plnkr.co/edit/ED0SGYyJerO1kaNDCwGv?p=preview
[14:27:17] <OnkelTem> The question: how/when to set 'ready' attribute on <html>?
[14:27:27] <OnkelTem> I want it when the last view is rendered
[14:28:24] <torbjorn> sounds resolve related too, though i have to run
[14:29:11] <OnkelTem> Yesterday waffle jock (I'm typeing it with whitespace to not highlight probably sleeping mate) advised some way which prerender.io uses
[14:29:25] <OnkelTem> but I didn't understand really
[14:29:29] *** krad has quit IRC
[14:29:46] *** thirdknife has joined #angularjs
[14:29:53] <OnkelTem> torbjorn: well, resolve happens even before controllers are launched, so I'm not sure it is
[14:30:45] *** Chandra has joined #angularjs
[14:30:56] <Chandra> Hi Guys
[14:31:24] <OnkelTem> The advice was — add a directive to the body element, and in its post link function do the stuff
[14:31:39] *** kohaku_river has quit IRC
[14:31:50] <Chandra> I am building Apps bootstrap based means same will work in browser and Mobile
[14:31:52] *** Codefria_ has quit IRC
[14:32:01] *** aks has joined #angularjs
[14:32:11] <DeoSama> Chandra: What?
[14:32:18] *** thirdkni_ has quit IRC
[14:32:28] <Chandra> Looking for angular example which would allow multiple image upload
[14:32:40] <Chandra> and open source
[14:32:56] <DeoSama> Chandra: You're asking for a lot. I'd assume there's something on google that will show you...
[14:33:24] *** heyts has joined #angularjs
[14:34:02] *** annlewis has joined #angularjs
[14:34:24] <OnkelTem> So I added a directive (called renderTrigger on the body) : http://plnkr.co/edit/ED0SGYyJerO1kaNDCwGv?p=preview
[14:34:36] <OnkelTem> Yet it's not triggered actually when it's needed
[14:35:55] <Chandra> lonic API
[14:36:26] <DeoSama> OnkelTem: Sorry... I'm not really sure what you're trying to do. :(
[14:36:43] <DeoSama> Chandra: "#ionic for Ionic questions"
[14:36:57] <OnkelTem> DeoSama: I'm trying to firgure out a way to "intercept" a moment when the job is done.
[14:37:06] *** umdstu has joined #angularjs
[14:37:10] <Chandra> I am looking for Free Angular Code which allow multiple image upload
[14:37:14] *** csharper has quit IRC
[14:37:25] <DeoSama> Chandra: I realize this. No one here will spoon feed you.
[14:37:26] <Chandra> from Mobile
[14:37:32] <OnkelTem> DeoSama: i.e. when a page it ready and can be snapshotted
[14:37:34] <Chandra> its easily doable from Browser
[14:38:07] <DeoSama> OnkelTem: hmm... I'm not an expert in Angular by any means; however, have you looked into resolve?
[14:38:08] *** egamonal has joined #angularjs
[14:38:35] <DeoSama> OnkelTem: I just got some help this morning for my problem, and that seems to be the fix for me. :)
[14:38:49] <umdstu> i'm looking for a framework for client-side authorization validation. I currently have the back end set up to issue JWT and expire them, but my front end is lacking
[14:38:52] <umdstu> any suggestions
[14:39:07] *** annlewis has quit IRC
[14:39:26] <scav> using angular 2, i have a http request with a .subscribe at the end. however, when i submit data, it seems to just not update the model every time. every other time i do it, it updates with both changes
[14:39:45] <OnkelTem> DeoSama: (just answered to torbjorn) no resolve won't help as it's triggered before controllers
[14:39:45] <DeoSama> umdstu: http://jonsamwell.com/url-route-authorization-and-security-in-angular/#route_security
[14:39:47] <scav> so basically, i have to submit two forms, to see the changes reflected for them
[14:40:12] <OnkelTem> DeoSama: and controllers are triggered before rendering
[14:40:17] <DeoSama> scav: Do you have your code?
[14:40:21] <OnkelTem> while I need render result
[14:40:28] <scav> DeoSama: sure, just a sec, let me create a paste
[14:40:34] *** buvarp has quit IRC
[14:40:34] *** mooru has joined #angularjs
[14:40:47] *** elsevero has quit IRC
[14:40:51] <DeoSama> OnkelTem: Hmm... yeah, it looks like you're dealing with async/sync problems.
[14:40:52] *** ilmgb_ has joined #angularjs
[14:41:06] *** elsevero has joined #angularjs
[14:41:15] <umdstu> DeoSama: i'll read through that. I should mention that I do have an authinterceptor that checks the request for the auth token issued by the server
[14:41:16] <DeoSama> OnkelTem: Let me take a look at your code quick
[14:41:29] *** kk_drop has joined #angularjs
[14:41:35] <scav> yes, i am, i just don't see them. its weird how it should update it for every second request i make, not every
[14:41:50] <OnkelTem> DeoSama: https://github.com/angular-ui/ui-router/issues/2403 - then also take a look at my quesiton (yet unanswered)
[14:42:01] <OnkelTem> DeoSama: and thanks :)
[14:42:36] *** vf has joined #angularjs
[14:42:37] <scav> DeoSama: http://pastie.org/10595147
[14:42:39] <vf> hi
[14:42:53] *** Chandra has quit IRC
[14:43:13] <vf> k
[14:43:13] <vf> k
[14:43:14] <vf> k
[14:43:19] *** vf has quit IRC
[14:43:50] *** wrainbolt has joined #angularjs
[14:44:19] *** ilmgb has quit IRC
[14:44:28] <DeoSama> are your input elements (or form elements in general) bound to a controller object, or variable using ng-model?
[14:45:50] <scav> input is not done in this component, but its this component that updates data
[14:46:01] <scav> the problem is the .subscribe part
[14:46:12] <scav> its like there is a hickup somewhere
[14:46:15] *** tangorri has joined #angularjs
[14:46:27] <umdstu> DeoSama: i have something similar to the 'access' property on the routes. One thing I have been struggling with is how to do different property values for dynamic routes. ie. url: '/apps/:id' but :ids can have different values. any thoughts?
[14:46:30] <scav> because if i add one comment, and have a manual "refresh" button, that one comment will be shown
[14:47:03] <DeoSama> umdstu how are you storing access rights?
[14:47:17] <DeoSama> Couldn't you set up an object with all access rights for the user on a service?
[14:47:20] <umdstu> DeoSama: it comes in with the reponse from the server
[14:47:44] <umdstu> hm
[14:47:51] <umdstu> i do have that, yes
[14:47:56] <umdstu> stored locally
[14:47:59] *** s00pcan has quit IRC
[14:48:07] <DeoSama> ok, so when the controller loads, can you check the access?
[14:48:33] <DeoSama> i'd put it in a resolve though, to ensure they have rights before the controller fully loads
[14:48:53] <umdstu> but that :id represent the database id, and I can't know it until the record has been fetched
[14:48:54] *** sonofdirt has joined #angularjs
[14:48:57] *** cocao has joined #angularjs
[14:49:06] *** CAPITANOOO has joined #angularjs
[14:49:06] *** elsevero has quit IRC
[14:49:11] *** sonofdirt has quit IRC
[14:49:15] <umdstu> and by it i mean it's property value for security
[14:49:28] *** elsevero has joined #angularjs
[14:49:41] *** s00pcan has joined #angularjs
[14:49:46] <DeoSama> sure, so throw it in a resolve and ensure they have access to the record: http://www.undefinednull.com/2014/02/17/resolve-in-angularjs-routes-explained-as-story/
[14:49:47] *** csharper has joined #angularjs
[14:50:44] <DeoSama> scav: So, let me make sure I understand this correctly: You have a form on your page, and then a section for comments below it. If you submit your form, the comments section doesn't show the comment until you manually refresh the page?
[14:53:03] *** liamonade has joined #angularjs
[14:53:24] *** HarunTy has quit IRC
[14:53:37] <egamonal> do you use angular material? I'm trying to set text color to white in the toolbar. I can hardcode css there but I'd rather go for a cleaner solution
[14:53:59] <icebox> egamonal: plunker, please
[14:54:14] <scav> DeoSama: no, i does show the added items if i submit twice (showing both submissions), but it also show one new item if i only add one new and have a manual refresh button
[14:54:20] <icebox> egamonal: what is a cleaner solution?
[14:54:41] *** Voyage has joined #angularjs
[14:55:00] <egamonal> well, maybe there is a class that is built-in angularmaterial, or I can set things up somewhere, or there is something like bootstrap-sass-official I can overide
[14:55:15] <icebox> egamonal: ah sure.. theming
[14:55:55] <DeoSama> scav: Sorry man, I'm not sure how to help you. :(
[14:56:05] <scav> DeoSama: no worries, its a pretty weird issue
[14:56:22] *** heyts has quit IRC
[14:56:24] *** compeman_ has quit IRC
[14:57:07] <icebox> egamonal: theming or under the hood sections
[14:57:08] *** uNki has quit IRC
[14:57:13] *** uNki has joined #angularjs
[14:57:38] <egamonal> yeah icebox, but should I be creating a new class there?
[14:57:58] <egamonal> in the toolbar I have md-buttons, but the style when they are in the content will be differet
[14:58:51] <icebox> egamonal: really, if it is only a background color, usually I overwrite it in my custom css
[14:58:55] *** ybl has joined #angularjs
[14:59:10] <egamonal> haha I'll just start with that
[14:59:18] <icebox> egamonal: if more changes, I create a theme
[14:59:36] <egamonal> I don't think we'lll have more changes
[14:59:48] <icebox> egamonal: if total refactor, I tweak the scss source code
[14:59:49] <egamonal> I wanted to avoid adding noisy files for just 2 lines if that was already done by the framework
[14:59:50] <egamonal> thanks man
[15:00:05] <icebox> egamonal: agreed
[15:00:06] *** erebel55 has quit IRC
[15:00:59] <icebox> egamonal: your team mate would expect to find a change in css :), not a line of code in a config block :)
[15:01:20] *** VeeWee has quit IRC
[15:02:38] <egamonal> the situation in this project is more like in lone ranger but still prefer to expect style changes in css rather than in js
[15:02:50] *** walden|afk is now known as walden
[15:03:02] *** \du has joined #angularjs
[15:03:11] *** itaipu has joined #angularjs
[15:03:12] <icebox> egamonal: same... imagine to maintain that code in a few months.. "find in files: *.css" :)
[15:03:39] *** itscassa has quit IRC
[15:04:16] *** kuadrosx has joined #angularjs
[15:04:17] <ybl> Hey guys, I used grunt build to get the dist version, everything went without errors. But there are templates which, the dist version is still trying to access relatively resulting in 404 error. Here is my directory tree, http://hastebin.com/iwasusuyiz.avrasm
[15:04:17] *** DJDelusional has joined #angularjs
[15:04:24] *** sonofdirt has joined #angularjs
[15:04:41] <ybl> I have named my templates folder views, does that matter ?
[15:05:26] *** step1step2 has quit IRC
[15:06:03] *** step1step2 has joined #angularjs
[15:06:26] <egamonal> ybl: that depends on what you have in grunt/gulp
[15:06:57] *** alesrest has joined #angularjs
[15:06:58] <egamonal> normally you have a regexp that matches all html files, but maybe it starts in "partials/"
[15:07:45] *** ThuyNguyen has quit IRC
[15:08:13] *** elsevero has quit IRC
[15:08:30] *** morissette has joined #angularjs
[15:08:31] *** elsevero has joined #angularjs
[15:09:16] <ybl> egamonal, oh, I barely know grunt, should I paste my gruntfile so that you can look into it as I can't find "partials" anywhere.
[15:09:38] <egamonal> I can try but I just came back to angular after a year writing python
[15:09:47] <morissette> Who would DDoS freenode.....
[15:09:50] *** marthinal has joined #angularjs
[15:10:00] <ybl> egamonal, http://hastebin.com/suxahavoxu.vhdl
[15:10:29] <ybl> egamonal, I am working on Python(flask) too hah, this is just the front end for the apis
[15:11:21] <egamonal> ybl: looks fine, it's using views/
[15:11:32] <egamonal> maybe you just have the url for the templates wrong in the code?
[15:12:02] <ybl> Pretty that is not the case, as I can run the app with grunt serve.
[15:12:26] *** compeman_ has joined #angularjs
[15:12:46] *** bayousoft has joined #angularjs
[15:12:53] *** iggygy has joined #angularjs
[15:12:56] *** elsevero has quit IRC
[15:13:12] <icebox> ybl: in the dist folder are there the partials?
[15:13:25] *** erebel55 has joined #angularjs
[15:13:49] <ybl> I reckon, that the path in my routes.js should not be relative or something. http://pastebin.com/pm5fRqPp
[15:13:50] *** fedenunez has joined #angularjs
[15:13:51] *** elsevero has joined #angularjs
[15:14:22] *** nya__ has quit IRC
[15:14:43] <ybl> icebox, I am not really sure what "partials" are , sorry.
[15:14:45] *** compeman_ has quit IRC
[15:15:09] *** Left_Turn has quit IRC
[15:15:14] *** Mumpsimus has joined #angularjs
[15:15:26] <morissette> I know one of you want to make me feel stupid.... it's in the developers nature... https://github.com/mgonto/angular-wizard/issues/148 - wtf am I doing wrong? is his code broken or mine?
[15:15:26] <icebox> ybl: templates
[15:16:21] <ybl> icebox, nope
[15:16:37] <morissette> the code that executes the function: http://paste.linux.chat/view/3fad1db6
[15:16:39] *** macabre has quit IRC
[15:16:41] <icebox> so the problem is how grunt builds dist folder
[15:16:54] <morissette> So anyone an expert on $scope.eval()?
[15:16:59] *** macabre has joined #angularjs
[15:17:11] <morissette> // i added the debugger; line on 12
[15:17:16] <icebox> ybl: so the problem is how grunt builds dist folder
[15:17:57] *** bradgignac has joined #angularjs
[15:18:04] *** juro has quit IRC
[15:18:06] <ybl> icebox, oh, I am not deft with grunt, is there a simple solution for this, or should I read the docs ?
[15:18:14] <icebox> ybl: manually you need to execute task by task until you see the offending task
[15:18:26] *** iraj has joined #angularjs
[15:18:36] <icebox> ybl: usually reading docs helps
[15:19:20] <ybl> icebox, but as the whole build process occurs without errors, would'nt executing each task would be error-less ?
[15:19:32] *** Mumpsimus has quit IRC
[15:19:51] *** ilmgb_ has quit IRC
[15:19:56] <icebox> ybl: offending means the templates are not copied in the dist folder
[15:20:20] *** ilmgb has joined #angularjs
[15:20:22] <ybl> icebox, okay.
[15:20:22] *** iggygy has quit IRC
[15:20:34] <ybl> thanks, icebox egamonal
[15:20:34] *** JDHawke has joined #angularjs
[15:21:01] *** JamesMGr_ has joined #angularjs
[15:21:03] *** iggygy has joined #angularjs
[15:22:00] *** ilmgb_ has joined #angularjs
[15:22:08] *** JDHawke has quit IRC
[15:22:18] *** regedit has joined #angularjs
[15:22:25] <morissette> additionally can someone suggest a structure for: http://paste.linux.chat/view/fc1c1830 - as it is getting quite mangled
[15:22:31] *** elrabin has joined #angularjs
[15:22:51] *** Poeticode has joined #angularjs
[15:22:58] <morissette> NOTE: not all of those assets are being used but are left over from when i converted from jquery to angular
[15:23:17] *** atomicb0mb has joined #angularjs
[15:23:48] *** mary5030 has joined #angularjs
[15:24:17] *** george_v has quit IRC
[15:24:51] *** ilmgb has quit IRC
[15:24:53] *** elrabin has quit IRC
[15:25:07] *** elrabin has joined #angularjs
[15:25:44] *** Voyage has quit IRC
[15:25:44] *** Voyage has joined #angularjs
[15:26:06] *** compeman_ has joined #angularjs
[15:27:59] *** Codefria_ has joined #angularjs
[15:28:53] *** JamesMGr_ has quit IRC
[15:29:13] *** JamesMGr_ has joined #angularjs
[15:30:27] *** JamesMGr_ has quit IRC
[15:31:06] *** zigzagzig has joined #angularjs
[15:33:12] <umdstu> DeoSama: so I added a resolve to the route to fetch the record, but the record fetch doesn't happen until AFTER $stateChangeStart, so I can't use that to check for the access type
[15:33:15] *** Codefria_ has quit IRC
[15:33:46] *** diosney has joined #angularjs
[15:34:41] *** intellix has quit IRC
[15:34:44] *** Danielyan has joined #angularjs
[15:34:47] *** annlewis has joined #angularjs
[15:36:59] *** zeioth has quit IRC
[15:38:10] *** annlewis_ has joined #angularjs
[15:38:15] *** intellix has joined #angularjs
[15:39:15] *** juro has joined #angularjs
[15:39:28] *** annlewis has quit IRC
[15:40:56] *** dabdab has quit IRC
[15:40:56] *** thirdknife has quit IRC
[15:41:13] *** compeman_ has quit IRC
[15:41:31] *** plekplek has quit IRC
[15:42:35] *** aks has quit IRC
[15:42:48] *** compeman_ has joined #angularjs
[15:42:52] *** mellernoia has joined #angularjs
[15:42:52] *** compeman_ has quit IRC
[15:42:53] *** Pieplay has quit IRC
[15:42:57] *** annlewis_ has quit IRC
[15:43:33] *** smccarthy has joined #angularjs
[15:50:38] *** echelog-2 has joined #angularjs
[15:52:34] *** Ir1sh has joined #angularjs
[15:52:58] *** csharper has quit IRC
[15:53:45] *** steeze has joined #angularjs
[15:54:12] *** danielemm has quit IRC
[15:54:23] *** mven has joined #angularjs
[15:54:28] *** dcherman has joined #angularjs
[15:54:29] *** mary5030 has quit IRC
[15:54:45] *** drej has quit IRC
[15:54:47] *** macabre has quit IRC
[15:55:08] *** mary5030 has joined #angularjs
[15:55:48] *** regedit has quit IRC
[15:56:31] *** Danielyan has quit IRC
[15:56:39] *** soee has quit IRC
[15:56:48] *** frem has joined #angularjs
[15:56:49] *** davonrails has quit IRC
[15:57:41] *** iceball has joined #angularjs
[15:57:43] *** liamonade has quit IRC
[15:58:25] *** speeddra_ has quit IRC
[15:58:28] *** davonrails has joined #angularjs
[15:58:29] *** csharper has joined #angularjs
[15:59:59] *** Garfield-fr has quit IRC
[16:00:19] *** mven has quit IRC
[16:00:26] *** lite_ has quit IRC
[16:01:14] *** liamonade has joined #angularjs
[16:02:04] *** danielemm has joined #angularjs
[16:03:34] *** steeze has quit IRC
[16:03:41] *** shiriru has joined #angularjs
[16:05:00] *** edm has joined #angularjs
[16:05:02] *** mooru has quit IRC
[16:07:25] *** heyts has joined #angularjs
[16:07:38] *** iggygy has quit IRC
[16:07:47] *** davonrails has quit IRC
[16:08:16] *** speeddragon has joined #angularjs
[16:08:32] *** davonrails has joined #angularjs
[16:09:32] *** macabre has joined #angularjs
[16:10:43] *** Firo has joined #angularjs
[16:11:32] *** Zalabinsky has joined #angularjs
[16:12:31] *** TyrfingMjolnir has joined #angularjs
[16:14:08] *** Z3R0 has joined #angularjs
[16:14:15] *** Mr-label has joined #angularjs
[16:14:40] *** cvanball has quit IRC
[16:15:21] *** intellix has quit IRC
[16:16:08] *** cvanball has joined #angularjs
[16:17:48] *** nya_ has joined #angularjs
[16:18:18] *** cotko has quit IRC
[16:18:20] *** cvanball has quit IRC
[16:19:54] *** cotko has joined #angularjs
[16:20:01] *** sonofdirt has quit IRC
[16:20:49] *** grapefruit has joined #angularjs
[16:23:00] *** steeze has joined #angularjs
[16:23:56] *** cotko has quit IRC
[16:25:06] *** Voyage has quit IRC
[16:25:55] *** jxv has joined #angularjs
[16:26:01] *** JamesMGr_ has joined #angularjs
[16:26:06] *** cotko has joined #angularjs
[16:26:36] *** Scubao has quit IRC
[16:26:58] *** JamesMGr_ is now known as JamesMGreeneAway
[16:27:21] *** tayfun has joined #angularjs
[16:27:40] *** mutsayu has joined #angularjs
[16:27:48] *** ilmgb_ has quit IRC
[16:27:57] *** JamesMGreeneAway has quit IRC
[16:27:58] *** diegoaguilar has joined #angularjs
[16:28:40] <mutsayu> I am doing a project in a MEAN stack (own setup, not generated by meancli) and I am using the github api, but how do I create a 'login with github' authentication?
[16:28:41] *** zz_dimtruck is now known as dimtruck
[16:29:21] *** krusty_ar has quit IRC
[16:29:52] <christo_m> mutsayu: passport?
[16:30:10] *** phrozensilver has joined #angularjs
[16:30:18] *** JamesMGr_ has joined #angularjs
[16:30:31] <mutsayu> christo_m: that's for v2, github is now at v3.
[16:30:35] *** mven has joined #angularjs
[16:31:08] *** krusty_ar has joined #angularjs
[16:31:09] <mutsayu> christo_m: https://github.com/cfsghost/passport-github
[16:31:10] <mutsayu> [;
[16:32:33] *** digisky has joined #angularjs
[16:32:50] *** junmin has quit IRC
[16:34:07] *** ilmgb has joined #angularjs
[16:34:08] *** Xzanron has quit IRC
[16:36:24] <kk_drop> I have directive that shows list of groups. I want to display all items in that group when user clicks link. can I do it inside this directive?
[16:36:39] *** ahhhndi has quit IRC
[16:36:44] *** Z3R0 has quit IRC
[16:37:00] *** hellojs has joined #angularjs
[16:38:30] <grapefruit> I have noticed quite a few posts regarding infinite scroll with angular, maybe you guys can help me out.
[16:38:38] *** rocky1138 has joined #angularjs
[16:38:39] *** marc_v92 has quit IRC
[16:38:46] <christo_m> mutsayu: right so that works right?
[16:38:57] *** annlewis has joined #angularjs
[16:39:11] <rocky1138> My browser hangs when I try to use resolve: in my route. It's going to a factory which is doing an http request. The CPU for that tab pegs at 100% and I have to kill it... ideas?
[16:39:24] <christo_m> mutsayu: as according to the readme: The author of Passport-Github has not maintain module for a long time. Features in his module don't work since Github upgraded their API to version 3.0. We forked it and re-publish it to NPM with a new name passport-github2.
[16:40:07] *** Firo has quit IRC
[16:40:17] *** ahhhndi has joined #angularjs
[16:41:00] *** e7d has quit IRC
[16:41:42] *** ybl has quit IRC
[16:42:10] <grapefruit> I've implemented an infinite scroll, but my page continues to scroll after new messages are loaded.
[16:42:39] *** roachiepoopoo has quit IRC
[16:42:43] <grapefruit> i.e. the scroll doesn't lose it's momentum; how do I stop the scroll without losing the scrollbars, scroller, etc.
[16:43:12] <christo_m> grapefruit: is this something you wrote yourself?
[16:43:20] <grapefruit> yes
[16:43:25] <grapefruit> it's very basic
[16:43:39] <grapefruit> i have a demo if you'd like a visual of what I'm talking about
[16:43:42] *** roachiepoopoo has joined #angularjs
[16:43:42] *** annlewis has quit IRC
[16:43:45] <christo_m> yes pls
[16:44:21] <grapefruit> christo_m: http://is.chat.meteor.com username: a at b dot c password: apple8
[16:44:24] *** vrockai has quit IRC
[16:44:32] *** zeezey has joined #angularjs
[16:44:35] <christo_m> are you opposed to using something like https://github.com/sroze/ngInfiniteScroll?
[16:45:08] <grapefruit> christo_m: no i'm not, but the project is not currently using angular, and I just wanted to know everyone's infinite scroll secrets
[16:45:25] <christo_m> grapefruit: ya i see its meteor
[16:45:38] <christo_m> but i thought maybe you were using angular with meteor, which is a thing.
[16:45:41] *** erebel55 has left #angularjs
[16:45:46] <christo_m> anyway my scrolling seems to work fine
[16:45:53] <grapefruit> christo_m: angular is a first class citizen of meteor, but this project is in Blaze
[16:45:55] <egamonal> do you have any recipe to make a sticky footer with angular material?
[16:46:13] <icebox> blaze... firebase?
[16:46:35] <grapefruit> christo_m: yes, it works, but after you reach the top, it loads messages, and then keeps scrolling; i'd like to stop the inertia
[16:46:44] *** soee has joined #angularjs
[16:47:21] <grapefruit> Blaze is the default template engine for meteor, but React and Angular are now considered defaults as well
[16:47:37] <icebox> ah ok... thanks for the details
[16:47:47] <grapefruit> np
[16:48:29] *** iceball has quit IRC
[16:49:06] *** dpicky_ has joined #angularjs
[16:49:31] *** Guest18166 is now known as ah
[16:50:01] *** ah is now known as Guest80622
[16:50:21] *** shiriru has quit IRC
[16:50:42] *** dpicky has quit IRC
[16:50:50] *** aghiuru has joined #angularjs
[16:50:58] *** pkeuter has joined #angularjs
[16:51:50] *** davonrails has quit IRC
[16:51:54] *** Rkatta has joined #angularjs
[16:51:56] *** nocontrol has quit IRC
[16:53:25] <icebox> egamonal: http://codepen.io/anon/pen/BoVQZX
[16:53:57] *** jtvanc has quit IRC
[16:54:04] <icebox> egamonal: https://github.com/angular/material/issues/5450
[16:54:11] *** fscala has quit IRC
[16:54:12] *** Rkatta has quit IRC
[16:55:09] <egamonal> thanks icebox, reading
[16:55:37] *** siaw has joined #angularjs
[16:55:56] *** ilmgb has quit IRC
[16:56:10] *** siaw has joined #angularjs
[16:56:48] *** juhi has joined #angularjs
[16:56:54] <juhi> hi
[16:57:17] <christo_m> whats the most up to date material to learn Angular2.0 from
[16:57:26] <christo_m> that isnt the google docs themselves, i dont learn well with just documentation
[16:57:32] <icebox> christo_m: the source code
[16:57:37] <christo_m> icebox: gg
[16:58:05] <juhi> any one help me,I need some project related to angular if have then provide me for pratice
[16:58:07] <christo_m> no angular 1.x to 2.0 guide??
[16:58:08] <icebox> christo_m: videos angular connect in London
[16:58:30] *** fscala has joined #angularjs
[16:58:38] <icebox> christo_m: generally speaking, http://angularjs.blogspot.it/2015/11/highlights-from-angularconnect-2015.html
[16:58:39] *** speeddragon has quit IRC
[16:58:55] <christo_m> icebox: i was about to say
[16:59:00] <christo_m> there are like 45 videos in that channel
[16:59:18] <icebox> christo_m: great videos
[16:59:32] <icebox> christo_m: there are a few resources about the migration
[16:59:40] <siaw> I’m getting a Uncaught ReferenceError: $scope is not defined on line 64. new to angular not sure how to fix it: https://gist.github.com/siaw23/08e20cc071aadc9591ac
[17:00:06] <christo_m> icebox: not migration per se
[17:00:30] <christo_m> its just i know angular 1.x already so if theres something tailored towards those people
[17:00:31] *** speeddragon has joined #angularjs
[17:00:35] <christo_m> not angular newbies in general
[17:00:40] <icebox> christo_m: for the migration see the link above
[17:00:47] <juhi> any one help me,I need some project related to angular if have then provide me for pratice
[17:00:48] <christo_m> ok, looking
[17:00:50] *** zamerick has quit IRC
[17:01:13] <Bish> why does $watch fire everytime it initialized? is that expected behaviour?
[17:01:26] <icebox> Bish: I think so
[17:01:26] <archon-> juhi: make a blog
[17:01:45] <Bish> so, it does fire because it could've changed, but watch doesn't know
[17:01:49] <Bish> is that the logic behind that?
[17:01:55] <archon-> yes
[17:02:06] <icebox> Bish: maybe... I don't remember... I should check the source code
[17:02:08] *** erve has joined #angularjs
[17:02:08] <archon-> you can check the values passed to it to see if they changed
[17:02:12] <juhi> thank you archon could you please provide some ref. link
[17:02:20] *** davonrails has joined #angularjs
[17:02:26] <icebox> off.. bye
[17:02:29] *** icebox has quit IRC
[17:02:29] *** nrky has joined #angularjs
[17:02:42] <archon-> juhi: no
[17:02:46] <Bish> yeah but checking a huge array, everytime i initialize, hmpf
[17:03:08] <juhi> ok
[17:03:10] <archon-> correct, watch is not efficient.
[17:03:19] <juhi> anyone have?
[17:04:10] <archon-> bish: instead of watch you can use $broadcast/$emit and $on
[17:04:15] *** _Penguin has quit IRC
[17:04:22] <archon-> then you can control when it fires
[17:04:27] *** josepetew has joined #angularjs
[17:04:30] *** aghiuru has quit IRC
[17:04:37] *** dman777_alter has joined #angularjs
[17:04:42] *** _Penguin has joined #angularjs
[17:04:44] *** tuskkk___ has quit IRC
[17:04:49] *** aghiuru has joined #angularjs
[17:05:16] *** mven_ has joined #angularjs
[17:05:54] *** spaceonline has quit IRC
[17:06:19] *** juhi has quit IRC
[17:06:22] *** DJDelusional has quit IRC
[17:07:52] *** mven has quit IRC
[17:08:45] *** davonrails has quit IRC
[17:10:16] *** jlebrech has quit IRC
[17:10:37] *** mven has joined #angularjs
[17:10:55] *** rickhanlonii has joined #angularjs
[17:11:23] *** Left_Turn has joined #angularjs
[17:11:46] *** mven_ has quit IRC
[17:12:37] *** jlebrech_ has joined #angularjs
[17:12:39] *** svycka has quit IRC
[17:12:43] <josepetew> Hey guys Im having some problems with angular. basically the typeahead dropdown pops up only the first time is clicked, afterwards it just doesnt show up anymore. here is a video of the problems and some screenshots of the code. Thanks in advance! http://sendvid.com/f2g3mtv9 https://www.filepicker.io/api/file/R4fdDeqaToiRZrSEwAbc https://www.filep
[17:12:43] <josepetew> icker.io/api/file/gc4gZq0ROmyh1tzYEl3w https://www.filepicker.io/api/file/0nqRLOEASzu2EWzaQUqm
[17:13:03] *** tadim has joined #angularjs
[17:13:40] *** Mr-label has quit IRC
[17:14:00] *** yuriy has joined #angularjs
[17:14:38] *** zigzagzig has quit IRC
[17:14:54] *** magellanicloud has joined #angularjs
[17:15:10] <yuriy> Hey guys. i can't get understanding of the accessing attributes of the components in angular2
[17:15:20] *** zigzagzig has joined #angularjs
[17:16:00] <yuriy> http://www.syntaxsuccess.com/viewarticle/loading-components-dynamically-in-angular-2.0
[17:16:17] <rocky1138> Figured out my problem: in my controller I had an if-block checking for login credentials and changing the state. It was bouncing between my page and the login page thousands of times per second.
[17:16:18] <yuriy> i tried the same as described here without success
[17:16:19] *** rickhanlonii has quit IRC
[17:16:47] *** DavidBoreanauz has joined #angularjs
[17:17:06] <yuriy> i tried define inputs:['value'] in the component and it doesn't work for me
[17:17:30] <yuriy> constructor doesn't sees this attribute
[17:17:49] <yuriy> may somebody knows?
[17:18:27] <yuriy> i tried to use @Input() before variable
[17:18:38] <yuriy> doesn't help
[17:18:42] *** empyreanx has joined #angularjs
[17:18:50] <yuriy> it's always undefined
[17:19:11] *** junmin has joined #angularjs
[17:20:00] *** thirdknife has joined #angularjs
[17:20:03] *** heyts has quit IRC
[17:20:18] *** Voyage has joined #angularjs
[17:20:22] *** punknroll has quit IRC
[17:20:35] *** xvure has quit IRC
[17:20:54] <yuriy> anybody here?
[17:21:37] *** mellernoia has quit IRC
[17:22:00] *** xvure has joined #angularjs
[17:22:14] *** jcooke has joined #angularjs
[17:23:50] *** junmin has quit IRC
[17:23:56] *** danielemm has quit IRC
[17:25:24] *** Mr-label has joined #angularjs
[17:25:27] *** rickhanlonii has joined #angularjs
[17:25:46] *** shinnya has joined #angularjs
[17:25:47] *** merpnderp has quit IRC
[17:26:08] *** thirdknife has quit IRC
[17:26:24] *** ilmgb has joined #angularjs
[17:27:45] <siaw> can someone please tell me why i’m getting Uncaught ReferenceError: $scope is not defined no line 63? http://plnkr.co/edit/FT3ZdHmhnc5Ex5g6OIQg
[17:27:46] *** merpnderp has joined #angularjs
[17:27:53] *** ilmgb has quit IRC
[17:28:01] *** ilmgb has joined #angularjs
[17:28:40] *** raininja has joined #angularjs
[17:29:26] *** sbasso has quit IRC
[17:29:47] *** buzzedword has quit IRC
[17:30:17] <yuriy> may anybody know how to resolve the problem?
[17:30:40] <yuriy> i want to use angular2 in my projects
[17:30:41] <edrocks> siaw: remove line 61. you are closing the function too early.
[17:31:09] *** nerder has joined #angularjs
[17:31:16] <yuriy> i can't access properies/inputs in the component constructor/onInit
[17:31:22] <yuriy> pls help!!!
[17:31:33] <nerder> hello guys,
[17:31:55] <siaw> edrocks: the part with `},`?
[17:32:02] <edrocks> yes
[17:32:02] <yuriy> i did define inputs array, defined variables in the component
[17:32:08] <siaw> oh
[17:32:11] <siaw> ok
[17:32:15] *** HarryHallman has quit IRC
[17:32:26] <archon-> siaw: you close the controller function on line 61
[17:32:35] <yuriy> tried @Input(), nothing helped
[17:32:43] *** markfknight has quit IRC
[17:32:46] *** Debnet has quit IRC
[17:33:28] *** markfknight has joined #angularjs
[17:33:39] <nerder> if i have to pass a variable from controller1 to controller2, in which service i have to put the function?
[17:33:51] *** egamonal has quit IRC
[17:33:58] <archon-> any service they both use?
[17:34:16] *** nilsi has quit IRC
[17:34:17] <siaw> archon-: thanks works :)
[17:34:24] *** HarryHallman has joined #angularjs
[17:34:28] <siaw> edrocks: thanks :)
[17:34:51] <nerder> i mean, i have to do service1.setVar($scope.thing) and service2.gettVar()
[17:35:04] <nerder> ?
[17:35:15] <nerder> or there is a better approach for doing that?
[17:35:41] *** benwaffle_ has joined #angularjs
[17:35:46] <archon-> nerder, i'd just use one service and store the variable there with a getter/setter
[17:35:48] *** benwaffle_ has quit IRC
[17:36:47] <yuriy> does anybody use angular2?
[17:37:11] <nerder> archon-: thank you :)
[17:37:11] <nerder> archon-: i see, you inject the service1 into controller2 and use the get there
[17:37:13] <christo_m> yuriy: trying to
[17:37:15] *** nanuko has joined #angularjs
[17:37:18] <christo_m> gotta learn things
[17:37:23] <christo_m> looking for a good clean codebase to study
[17:37:40] *** chairmanmow has joined #angularjs
[17:38:25] *** xtreamwayz has joined #angularjs
[17:39:12] *** django_ has joined #angularjs
[17:39:20] *** egamonal has joined #angularjs
[17:39:26] *** joshfinnie has joined #angularjs
[17:39:42] *** annlewis has joined #angularjs
[17:41:02] <xtreamwayz> How can I update a single model in a collection? I'm using socket.io to update the changed models. I've got everything working and the data is sent to all connected clients. I just can't figure out how to update that single updated model.
[17:41:31] *** ril has quit IRC
[17:41:34] *** GGBaby has joined #angularjs
[17:42:20] *** nimomo has joined #angularjs
[17:42:55] <xtreamwayz> The collection is first retreived by an api call and then stored in $scope.items. They all have an id property.
[17:43:04] *** dszmaj has quit IRC
[17:43:23] *** Jardayn has joined #angularjs
[17:43:30] <nimomo> how can I make a filter button which binds to a ng-repeat list instead of filtering on each key press?
[17:43:56] *** dszmaj has joined #angularjs
[17:44:16] *** annlewis has quit IRC
[17:44:24] *** asteele has quit IRC
[17:44:25] <nimomo> I have many records and it slowness the user browser so I want to switch the data filtering
[17:45:05] *** atomicb0mb has quit IRC
[17:45:10] <nimomo> xtreamwayz: can you please assist?
[17:45:13] *** benwaffle_ has joined #angularjs
[17:45:21] *** jonasliljestrand has quit IRC
[17:45:21] *** benwaffle_ has quit IRC
[17:45:49] <xtreamwayz> If I could then I would. But I have no idea.
[17:46:02] <archon-> nimomo: add an ng-click to it that updates the value you want to filter on
[17:46:18] <nimomo> archon-: I have some filter fields
[17:46:31] *** edm has quit IRC
[17:46:46] *** tadim has quit IRC
[17:46:52] *** yuriy has quit IRC
[17:47:14] <nimomo> how can I make that the list will be changed only after clicking on the button (by ng-click) ?
[17:47:36] *** edm has joined #angularjs
[17:47:45] <archon-> ng-click="updateFilter()"
[17:47:58] *** AimerPaddle has joined #angularjs
[17:48:06] <archon-> and in your controller: $scope.updateFilter = function() {$scope.myFilter = $scope.filterField}
[17:48:15] <nimomo> archon-: it's clear. do I need to make a for loop and to exclude what is not match to my filter fields?
[17:48:27] <archon-> you can put a filter on your ng-repeat
[17:49:00] <nimomo> archon-: but it works each time the user is typing. not?
[17:49:27] *** benwaffle has quit IRC
[17:49:53] <nimomo> archon-: what's that - $scope.myFilter = $scope.filterField ?
[17:50:15] *** benwaffle has joined #angularjs
[17:50:20] *** benwaffle has quit IRC
[17:50:32] *** atomicb0mb has joined #angularjs
[17:50:46] <archon-> <input type="text" ng-model="filterField" /> <button ng-click="updateFilter()"> <div ng-repeat="... | filter:myFilter">
[17:51:06] *** iraj has quit IRC
[17:52:18] *** iraj has joined #angularjs
[17:52:33] <nimomo> archon-: but what if I have several of filter fields?
[17:52:35] *** nrky has quit IRC
[17:52:41] *** anti-freeze has joined #angularjs
[17:52:46] *** poosanth has joined #angularjs
[17:54:21] <senayar> https://gist.github.com/senayar/89c4926a86f81fc8d909 how I can test this directive ? the template compiled change with the scope value, so... I don't know how to test it
[17:54:57] <nimomo> archon-: for example I have two fields firstName and lastName
[17:55:51] <archon-> then you'll have to make your updateFilter function more complicated
[17:56:41] <nerder> archon-: probably i don't get 100% how service work: https://gist.github.com/nerder/f5af3067c0275432d6e5
[17:56:43] <senayar> how damn I know how to it
[17:56:48] <senayar> sorry for disturbing
[17:56:51] *** Leon has quit IRC
[17:56:58] <nimomo> archon-: you can give me a direction how to make this?
[17:57:41] <nerder> i use to initialize that variable using $resource but in this case i don't really need it
[17:58:47] <archon-> nerder: what's your question?
[17:58:56] <archon-> nimomo: i already did
[17:59:25] <nimomo> archon-: I'm not sure I got how to combine two fields or more within the filter
[17:59:56] <archon-> nimomo: you can write a $filter function
[18:00:20] <nerder> archon-: nothing i just google it and found out the answer i was looking for, sorry about that
[18:00:34] <archon-> good work
[18:00:38] *** mchammer has quit IRC
[18:01:37] *** bdmc has left #angularjs
[18:01:46] *** Misere has quit IRC
[18:02:03] *** lite_ has joined #angularjs
[18:02:39] *** brollypop has quit IRC
[18:03:00] <nimomo> archon-: so you mean that I can write a filter function which input all the fields?
[18:03:24] <nimomo> I'm not sure how it deals with the data records
[18:03:48] *** skunkz has joined #angularjs
[18:04:27] <nimomo> lets assume I have this list: [{ "firstName" : "nana", "lastName: "vv"}, ...., ]
[18:04:44] <nimomo> I have 2 input fields - first_name and last_name
[18:04:58] <nimomo> and click button for filtering
[18:05:33] <nimomo> that I will use it instead of getting immediately the binding data (because of the slowness with many records).
[18:05:44] *** JavaMonkey has joined #angularjs
[18:05:47] *** JavaMonkey has left #angularjs
[18:07:10] <archon-> nimomo: http://plnkr.co/edit/1aFTAWDJUjtGrVUOZ9UY?p=preview
[18:07:41] <nimomo> archon-: thanks! I dont want it will get updated by typing
[18:07:52] <nimomo> while there are 1000 or more records it's very slow
[18:08:20] <archon-> incorporating my previous suggestion is left as an exercise for the reader
[18:08:22] <nimomo> it's what I have now.. and I want to make the filtering triggered by "filter" button
[18:09:42] <nimomo> archon-: this was aimed to me? :)
[18:09:51] <archon-> yes
[18:09:55] *** junmin has joined #angularjs
[18:10:48] <nimomo> archon-: but it's exactly what I'm asking about
[18:11:13] <nimomo> archon-: have you written this now?
[18:11:15] *** dszmaj has quit IRC
[18:11:22] <archon-> no, i googled for what you're asking about
[18:11:50] <archon-> just add the button and use a different variable to filter on instead of the ones from the inputs
[18:12:02] *** dszmaj has joined #angularjs
[18:12:25] *** dszmaj has quit IRC
[18:12:31] *** walbert has quit IRC
[18:12:38] <egamonal> do you know if it's safe to overwrite the css for md-section (angular material) in a separate scss file? I guess I'd rather overwrite a variable with the color
[18:13:12] *** dszmaj has joined #angularjs
[18:13:20] *** tangorri has quit IRC
[18:13:50] *** ghader has joined #angularjs
[18:14:06] <ghader> hi
[18:14:10] *** wrainbolt has quit IRC
[18:14:29] *** juro has quit IRC
[18:15:25] *** ghader has quit IRC
[18:15:46] *** buzzedword has joined #angularjs
[18:15:54] *** nerder has quit IRC
[18:15:59] *** Mumpsimus has joined #angularjs
[18:16:05] *** andyj has joined #angularjs
[18:17:30] *** fedenunez1 has joined #angularjs
[18:17:33] <nimomo> archon-: but what I'm missing is how to deal with each row of the list
[18:17:52] <archon-> that plunker shows you how
[18:18:09] *** AntJ has joined #angularjs
[18:18:14] *** josepetew has quit IRC
[18:18:26] <nimomo> archon-: search(row) gets a parameter, and I'm not sure how can I move a parameter by the button function
[18:19:02] <archon-> i don't know what that means
[18:19:47] <nimomo> I'm trying to make a copy of what I created
[18:19:50] *** fedenunez has quit IRC
[18:20:14] *** Mumpsimus has quit IRC
[18:20:40] <nimomo> archon-: see here - http://plnkr.co/edit/1CdWj68nDAf9NAQVGTAS?p=preview
[18:21:40] <archon-> yes, that is not what i said to do.
[18:21:57] <nimomo> archon-: so I misunderstand you
[18:22:12] *** aks has quit IRC
[18:22:44] <archon-> the search function has to search on another variable that is updated by the filterAll function
[18:24:33] *** senayar has quit IRC
[18:24:37] <archon-> filterAll should not call search
[18:24:46] <archon-> search is called automatically by ng-repeat
[18:25:14] *** rchavik has quit IRC
[18:25:25] *** uNki has quit IRC
[18:25:29] *** uNki_ has joined #angularjs
[18:25:45] *** aks has joined #angularjs
[18:26:00] <nimomo> archon-: okay. trying again.
[18:26:34] *** Mumpsimus has joined #angularjs
[18:26:47] *** aks has quit IRC
[18:27:34] <archon-> nimomo: you could also just add a debounce to your input fields to delay the search until the user has stopped typing
[18:28:09] <nimomo> archon-: http://plnkr.co/edit/nMMkU5ZTjXZWsV5cylVk?p=preview
[18:28:22] *** Scubao has joined #angularjs
[18:29:02] <archon-> nimomo: still wrong but closer
[18:29:40] *** aks has joined #angularjs
[18:29:46] <nimomo> yes, I dont' fully understand yet what I'm doing
[18:30:17] <nimomo> after I will solve it I will be happy to hear more about the debounce option :)
[18:30:54] *** dpicky_ has quit IRC
[18:31:31] *** ahaeger has quit IRC
[18:31:35] *** Voyage has quit IRC
[18:31:36] *** Voyage has joined #angularjs
[18:32:01] <archon-> you still want to use the search function to filter. but use myFilter inside the search function
[18:32:31] *** sbellina has joined #angularjs
[18:32:36] *** sbasso has joined #angularjs
[18:33:34] *** marthinal has quit IRC
[18:33:40] *** kk_drop has quit IRC
[18:33:59] *** PeterBooker has quit IRC
[18:35:19] *** buzzedword has quit IRC
[18:35:54] *** liamonade has quit IRC
[18:37:42] *** zamerick has joined #angularjs
[18:37:44] *** kk_drop has joined #angularjs
[18:38:48] *** ahaeger has joined #angularjs
[18:39:05] <nimomo> archon-: solved. right? http://plnkr.co/edit/x7kqf7a0She702uQdY4A?p=preview
[18:39:32] <archon-> yes
[18:39:42] *** alesrest has quit IRC
[18:39:49] *** erve has quit IRC
[18:40:24] *** erve has joined #angularjs
[18:40:25] <archon-> for your use case, use two intermediate variables in filterAll() and compare them to their respective fields in search()
[18:40:29] *** annlewis has joined #angularjs
[18:41:25] *** w00tner has joined #angularjs
[18:41:47] *** alesrest has joined #angularjs
[18:41:48] <nimomo> archon-: you mean that I can add myFilter1 , myFilter2 and then within search function to use each one of them?
[18:41:49] *** w00tner is now known as Guest63993
[18:41:54] *** shinnya has quit IRC
[18:42:43] *** davi has joined #angularjs
[18:42:47] *** arthas has quit IRC
[18:42:59] <archon-> yes
[18:43:07] *** DavidBoreanauz is now known as cacts|works
[18:43:18] <nimomo> archon-: great. what was you meaning re the debounce?
[18:43:52] <archon-> instead of using a button, you can add a debounce option to the input fields so that they update after a set amount of inactivity instead of on every keypress
[18:43:54] *** Garfield-fr has joined #angularjs
[18:44:22] <nimomo> what is a set amount of inactivity?
[18:44:28] *** buzzedword has joined #angularjs
[18:45:06] *** edm23 has joined #angularjs
[18:45:08] <archon-> the number of milliseconds you specify
[18:45:09] *** anti-freeze has quit IRC
[18:45:13] <archon-> https://docs.angularjs.org/api/ng/directive/ngModelOptions
[18:45:19] *** aks has quit IRC
[18:45:30] *** annlewis has quit IRC
[18:46:06] *** erol has quit IRC
[18:46:27] *** edm has quit IRC
[18:47:35] *** Misere has joined #angularjs
[18:47:36] *** VeeWee has joined #angularjs
[18:48:38] *** lite_ has quit IRC
[18:48:44] *** djam90 has quit IRC
[18:48:55] <nimomo> archon-: will it delay the render action?
[18:49:02] *** lite_ has joined #angularjs
[18:49:29] <archon-> it will delay the filtering until the user has stopped typing
[18:50:02] <nimomo> archon-: how can it know that the user has stopped typing?
[18:50:49] <archon-> you tell it to wait for a certain amount of time after the last keypress
[18:50:56] <archon-> see the second example on that page
[18:51:27] *** aks has joined #angularjs
[18:52:33] *** Misere has quit IRC
[18:52:34] *** p0k0 has joined #angularjs
[18:52:47] *** aslate has quit IRC
[18:53:00] *** skunkz has quit IRC
[18:53:07] *** dlam has joined #angularjs
[18:53:18] *** andyj has quit IRC
[18:53:27] *** jdo_dk has joined #angularjs
[18:53:43] *** cornerma1 has joined #angularjs
[18:54:36] *** Z3R0 has joined #angularjs
[18:54:41] *** grapefruit has quit IRC
[18:54:45] *** aslate has joined #angularjs
[18:54:54] *** zigzagzig has quit IRC
[18:54:59] <nimomo> archon-: interesting. I will check this on my code.
[18:55:33] *** tkxxx has joined #angularjs
[18:55:33] *** zigzagzig has joined #angularjs
[18:55:36] *** bayousoft has quit IRC
[18:55:38] *** Respek has joined #angularjs
[18:55:39] *** aks has quit IRC
[18:56:30] <jdo_dk> Anyone can help my with this one: https://dpaste.de/TjDO
[18:56:35] *** sergey_ has joined #angularjs
[18:57:10] *** cornerman has quit IRC
[18:57:15] *** cornerma1 is now known as cornerman
[18:58:11] *** cangosta has joined #angularjs
[18:58:26] *** jareddlc has joined #angularjs
[18:58:46] *** cangosta has quit IRC
[18:58:49] *** raininja has quit IRC
[18:59:03] *** macabre has quit IRC
[18:59:30] *** aslate has quit IRC
[19:00:29] *** daynaskully has quit IRC
[19:02:11] *** buzzedword has quit IRC
[19:02:14] <tkxxx> Hi. I cant work out how to return a single post using the WP API (v2) and angular - http://jsfiddle.net/HB7LU/20577/
[19:02:23] *** egamonal has quit IRC
[19:03:00] <Guest63993> hello good morning
[19:03:40] *** lnrdo has joined #angularjs
[19:03:41] *** raininja has joined #angularjs
[19:04:24] *** bbarke has quit IRC
[19:04:45] *** bbarke has joined #angularjs
[19:06:09] *** jlebrech_ has quit IRC
[19:06:15] <cj> good hello morning!
[19:07:33] *** VeeWee has quit IRC
[19:07:53] *** egamonal has joined #angularjs
[19:08:18] *** egamonal has left #angularjs
[19:08:48] *** hao_ has joined #angularjs
[19:09:21] <hao_> anybody
[19:09:51] <phrozensilver> tkxxx : taking a look
[19:10:30] *** macwinne_ has quit IRC
[19:10:33] *** codeitloadit has joined #angularjs
[19:10:38] *** macwinner has joined #angularjs
[19:10:43] <phrozensilver> where is it making the $http request
[19:10:49] *** AndrewIsh has quit IRC
[19:11:47] *** EllaineSilva has joined #angularjs
[19:13:48] *** uNki_ has quit IRC
[19:14:34] *** b0yzn01z3 has quit IRC
[19:15:20] *** tkxxx has quit IRC
[19:15:28] <phrozensilver> tkxxx are you doing something like this with $http() -- http://jsfiddle.net/obkxcpj5/
[19:15:54] *** aghiuru has quit IRC
[19:16:07] *** guilbep has quit IRC
[19:16:33] *** aghiuru has joined #angularjs
[19:17:00] *** ilmgb has quit IRC
[19:17:05] *** b0yzn01z3 has joined #angularjs
[19:17:08] *** nimomo has quit IRC
[19:17:36] *** cvanball has joined #angularjs
[19:17:47] *** hao_ has quit IRC
[19:19:10] *** lnrdo_ has joined #angularjs
[19:19:11] *** lnrdo has quit IRC
[19:20:12] *** ahhhndi has quit IRC
[19:20:17] *** baweaver has joined #angularjs
[19:21:19] *** buzzedword has joined #angularjs
[19:22:21] *** wonder95 has joined #angularjs
[19:23:40] *** Ugolin has quit IRC
[19:24:03] *** yuriy has joined #angularjs
[19:24:35] *** Ugolin has joined #angularjs
[19:24:38] *** icfantv has joined #angularjs
[19:25:37] *** lite_ has quit IRC
[19:26:58] *** cotko has quit IRC
[19:27:25] *** tkxxx has joined #angularjs
[19:27:59] *** mrkake has quit IRC
[19:28:01] *** Scubao has quit IRC
[19:28:33] <tkxxx> phrozensilver: Sorry, just got disconnected. I've included all code here - http://jsfiddle.net/HB7LU/20580/
[19:28:51] <tkxxx> phrozensilver: It is the TipCtrl controller that isn't working
[19:28:54] *** Mr-label has quit IRC
[19:28:57] *** macabre has joined #angularjs
[19:29:17] *** Some_Person has left #angularjs
[19:29:30] *** mrkake has joined #angularjs
[19:30:53] *** dob has joined #angularjs
[19:30:58] *** clivejo has quit IRC
[19:32:46] <christo_m> how would i go about ng-repeating 3 items at a time in a parent div like
[19:32:58] <christo_m> <div row> item item item </div> <div row> item iteem etc
[19:33:14] <christo_m> the item is also a div, with some extra things there
[19:34:01] *** nya_ has quit IRC
[19:34:11] *** bengillies has quit IRC
[19:34:38] *** sctskw has joined #angularjs
[19:35:34] *** \du has quit IRC
[19:35:43] *** baweaver has quit IRC
[19:36:00] *** dcherman2 has joined #angularjs
[19:37:26] *** Hounddog has quit IRC
[19:37:38] *** austinsk8s has joined #angularjs
[19:37:56] *** baweaver has joined #angularjs
[19:38:40] *** dcherman has quit IRC
[19:39:34] *** benwaffle has joined #angularjs
[19:40:26] <icfantv> caitp: yt?
[19:41:08] <icfantv> caitp: i'd like to pick your brain about something
[19:41:13] *** annlewis has joined #angularjs
[19:41:18] <caitp> in a few minutes
[19:41:20] <austinsk8s> So I have a http get call that happens in my index controller, and I want to access that data in my edit controller. What is the best way to go about this? I am trying to use a factory to access the data between both controllers, but that is failing, and I feel like I'm headed in the wrong direction when using the factory for this.
[19:41:25] <icfantv> caitp: cool, thanks.
[19:41:41] *** Z3R0 has quit IRC
[19:41:42] *** buzzedword has quit IRC
[19:41:56] <phrozensilver> austinsk8s: not sure the correct way to do it but I have been using nested controllers to accomplish that
[19:42:07] <icfantv> @austinsk8s - you should be doing your HTTP calls in a service
[19:43:10] <icfantv> austinsk8s: if you make your http calls in a service - depending on your workflow, the service can cache the data
[19:43:19] *** ril has joined #angularjs
[19:43:24] *** benwaffle has quit IRC
[19:43:35] *** benwaffle has joined #angularjs
[19:43:44] <icfantv> austinsk8s: expose a method on your service to get that data, then you inject that service into your controller and voila! there's the data.
[19:43:44] *** benwaffle has quit IRC
[19:44:19] <austinsk8s> @icfantv like app.service('name', function($http) {}); ?
[19:44:31] <icfantv> austinsk8s: basically, yes
[19:44:44] <icfantv> austinsk8s: the array notation is preferred, however
[19:44:44] *** AntJ has quit IRC
[19:45:12] *** baweaver has quit IRC
[19:45:15] *** iateadonut has quit IRC
[19:45:23] <icfantv> `app.service('MyService', ['$http', MyServiceFunction]); function MyServiceFunction($http) {…}
[19:45:30] <austinsk8s> @icfantv gotcha. I tried that before, but sadly failed. I'll give it another shot. Thanks!
[19:45:44] *** benwaffle has joined #angularjs
[19:45:56] *** cvanball has quit IRC
[19:46:10] <icfantv> austinsk8s: remember that while services (and factories) are singletons, services are instantiated with `new`
[19:46:10] *** annlewis has quit IRC
[19:46:11] *** cvanball has joined #angularjs
[19:46:19] *** leehambley has joined #angularjs
[19:46:24] *** soee has quit IRC
[19:46:25] *** scav has quit IRC
[19:46:37] *** b0yzn01z3 has quit IRC
[19:46:38] <icfantv> austinsk8s: which means your methods need to be of the form: `this.funcName = function() {};` to be exposed on the service
[19:46:42] *** s00pcan has quit IRC
[19:46:44] *** soee has joined #angularjs
[19:46:54] *** speeddragon has quit IRC
[19:46:55] *** clivejo has joined #angularjs
[19:46:56] <icfantv> austinsk8s: you should also be doing stuff via promises
[19:47:12] <icfantv> austinsk8s: especially when $http is being used.
[19:47:24] <icfantv> lemme write you a sample gist real quick.
[19:47:24] *** soee has quit IRC
[19:47:38] *** s00pcan has joined #angularjs
[19:47:44] *** soee has joined #angularjs
[19:48:01] <austinsk8s> @icfantv that would be much appreciated!
[19:48:13] *** scav has joined #angularjs
[19:48:45] *** b0yzn01z3 has joined #angularjs
[19:50:45] <Respek> question, if you're going to ng-repeat trough a pojo, can you put a binding inside of one of the indexes?
[19:52:06] *** diegoaguilar has quit IRC
[19:52:36] *** Mr-label has joined #angularjs
[19:55:14] *** Leon has joined #angularjs
[19:56:10] *** GGBaby is now known as GitGud
[19:56:19] *** buzzedword has joined #angularjs
[19:57:02] *** b0yzn01z3 has quit IRC
[19:58:02] *** Z3R0 has joined #angularjs
[19:58:15] *** ag0rex has quit IRC
[19:58:32] *** b0yzn01z3 has joined #angularjs
[19:59:38] *** Z3R0 has quit IRC
[20:00:18] <icfantv> austinsk8s: here's one way to do it: https://gist.github.com/icfantv/363a0646a284fe6e2c64
[20:00:54] *** bradgignac_ has joined #angularjs
[20:00:58] *** alesrest has quit IRC
[20:01:11] <icfantv> austinsk8s: again, depending on your app, you could also hold on to the promise returned by the $http call and use that moving forward. this comes in very handy in routing when you have resolve functions
[20:01:38] *** davi has quit IRC
[20:02:05] *** uNki has joined #angularjs
[20:03:13] <austinsk8s> @icfantv I think that is exactly what I need. Thanks for the help.
[20:03:15] *** JBreit2 has joined #angularjs
[20:03:47] <icfantv> austinsk8s: sure. note that that example is also like a cache.
[20:03:52] *** elrabin has quit IRC
[20:04:14] *** bradgignac has quit IRC
[20:04:28] *** elrabin has joined #angularjs
[20:04:30] <icfantv> austinsk8s: we have filter information on one page we need to get to another and we do that by storing the filter info on a service. that's as simple as exposing a getter/setter on the service.
[20:04:31] *** ngbot has joined #angularjs
[20:04:32] <ngbot> [angular.js] petebacondarwin pushed 1 new commit to master: http://git.io/vReYr
[20:04:32] <ngbot> angular.js/master a72c12b Peter Bacon Darwin: fix(ngMock): clear out `$providerInjector` after each test...
[20:04:32] *** ngbot has left #angularjs
[20:04:35] *** elrabin has quit IRC
[20:04:48] *** cliluw has joined #angularjs
[20:04:53] *** elrabin has joined #angularjs
[20:04:53] *** uNki has quit IRC
[20:05:02] <icfantv> Respek: not exactly sure what you're asking there
[20:05:14] <tkxxx> Hi. I cant work out how to return a single post using the WP API (v2) and angular - http://jsfiddle.net/HB7LU/20577/
[20:05:37] <icfantv> austinsk8s: whooops. i forgot to remove something from that gist
[20:05:38] <icfantv> one sec
[20:05:40] <icfantv> lemme fix
[20:06:15] <icfantv> austinsk8s: ok, refresh.
[20:06:36] <icfantv> basically, the promise check needed to be changed to see if the data array had anything
[20:06:55] *** aks has joined #angularjs
[20:07:10] *** Pspfolio has joined #angularjs
[20:07:12] <icfantv> you can make that check anything you want - this was just a simple example.
[20:07:37] *** cotko has joined #angularjs
[20:07:44] *** pimlu has joined #angularjs
[20:08:10] <icfantv> tkxxx: i don't see an $http call in there
[20:08:10] *** chairmanmow has quit IRC
[20:08:50] <icfantv> tkxxx: also, you should try really hard not to use $rootScope
[20:09:03] <tkxxx> icfantv: Oops, please see new code
[20:09:03] <tkxxx> http://jsfiddle.net/HB7LU/20582/
[20:09:06] *** chairmanmow has joined #angularjs
[20:09:10] *** fedenunez1 has quit IRC
[20:09:16] <tkxxx> icfantv: Ah okay. What is wrong with using rootScope/
[20:09:41] *** siaw has quit IRC
[20:10:01] *** mellernoia has joined #angularjs
[20:11:10] <austinsk8s> cool. Is there any difference (performance wise, I suppose) in your previous check and the length check? I have yet to use the previous angular.isUndefined(promise), probably because I've yet to use promises. I'm pretty new to angular. In your current gist, are you utilizing a promise at all?
[20:11:22] <icfantv> tkxxx: the problem is typically HOW people use $rootScope
[20:11:23] *** aks has quit IRC
[20:11:51] *** ngbot has joined #angularjs
[20:11:52] <ngbot> [angular.js] petebacondarwin pushed 1 new commit to master: http://git.io/vResS
[20:11:52] <ngbot> angular.js/master 08c9a5e xieranmaya: docs($controller): fix typo...
[20:11:53] *** ngbot has left #angularjs
[20:11:56] <icfantv> tkxxx: it's not a dumping ground for functions and variables. doing that makes it harder to test your application and to track down bugs.
[20:12:00] *** joshontheweb has joined #angularjs
[20:12:29] <tkxxx> icfantv: Ahh. I see - I will rework it :). Any idea why I can't get the latest WP post using the code I have?
[20:12:34] <icfantv> austinsk8s: the previous check was invalid because there wasn't a `promise` variable in that code. i grabbed it from our code base and neglected to update.
[20:12:50] <icfantv> tkxxx: lemme look
[20:13:06] <icfantv> tkxxx: while i do, here's a good read on $rootScope: http://www.thinkingmedia.ca/2015/01/learn-how-to-use-scopes-properly-in-angularjs/
[20:13:18] <tkxxx> icfantv: Thank you - much appreciated.
[20:13:36] *** Z3R0 has joined #angularjs
[20:13:48] *** encryptd_fractal has quit IRC
[20:13:52] *** atomicb0mb has quit IRC
[20:14:12] <austinsk8s> Yeah I noticed it wasn't instantiated. I'm going to give it another go and see if I can get this thing doing what I want it to. Thanks again for the pointers.
[20:14:12] *** cotko has quit IRC
[20:14:35] <icfantv> austinsk8s: sure
[20:14:39] <tkxxx> icfantv: The PostsCtrl works, its just the TipCtrl
[20:14:42] <icfantv> tkxxx: what's your problem?
[20:15:02] *** Z3R0 has quit IRC
[20:15:20] *** ngbot has joined #angularjs
[20:15:21] <ngbot> [angular.js] petebacondarwin pushed 1 new commit to v1.4.x: http://git.io/vReZW
[20:15:21] <ngbot> angular.js/v1.4.x 374a302 xieranmaya: docs($controller): fix typo...
[20:15:21] *** ngbot has left #angularjs
[20:15:26] <tkxxx> I'd like to get the most recent post JSON. Currently it is undefined. It works fine on the PostsCtrl, just not on the TipCtrl
[20:15:38] *** yuriy has quit IRC
[20:15:53] *** Ir1sh has quit IRC
[20:16:21] *** apotry has joined #angularjs
[20:16:30] <tkxxx> icfantv: I would like to get Index 0 of the JSON
[20:16:40] *** juddey has joined #angularjs
[20:17:21] *** erol has joined #angularjs
[20:17:29] <mutsayu> I am using the github api in my mean stack and I got it working that I can login via github now, but I want in my angular, when I submit the login form (it goes now to the /auth/github and github redirects to my given in callback url) that it redirects to some sorta route with some user info in response from the github pi
[20:17:32] <mutsayu> how can I do thi?
[20:17:33] <mutsayu> this
[20:18:02] <icfantv> tkxxx: sorry to be blunt here, but this code has some very bad design decisions
[20:18:03] *** ilmgb has joined #angularjs
[20:18:29] *** mischat has quit IRC
[20:18:41] <tkxxx> icfantv: Don't apologise, I realise it's not good. I'm just trying to learn it
[20:18:50] <jdo_dk> I have been playing around with this tutorial: https://code.angularjs.org/1.4.7/docs/tutorial/step_04, now i have created links like: /wishes/1/, /wishes/2/ etc... How do i get the "ID" 1,2,3 to trigger the same as the selectbox in the tutorial ?
[20:18:51] *** LeBlaaanc has joined #angularjs
[20:19:04] <icfantv> tkxxx: ok. what line is the issue on?
[20:19:29] <tkxxx> icfantv: Line 432 - 435
[20:19:47] *** pimlu has quit IRC
[20:19:50] *** dob_ has joined #angularjs
[20:20:13] *** elyssonmr has quit IRC
[20:20:41] *** marr has joined #angularjs
[20:20:46] <icfantv> tkxxx: those are just variable assignments
[20:21:12] *** soee has quit IRC
[20:21:25] <tkxxx> icfantv: How would I assign post.id to a variable?
[20:21:41] <tkxxx> icfantv: so that I can then do another get request to the API
[20:21:47] *** soee has joined #angularjs
[20:22:21] <tkxxx> icfantv: So rather than the '103', it would get the most recent post
[20:22:30] *** fedenunez has joined #angularjs
[20:22:58] <icfantv> tkxxx: where is the 103 coming from?
[20:23:18] *** aghiuru has quit IRC
[20:23:19] *** dob has quit IRC
[20:23:30] *** umdstu has quit IRC
[20:23:31] *** LeBlaaanc has quit IRC
[20:23:46] <tkxxx> icfantv: Line 434. I hard-coded it in as it is currently the post.id of the most recent post in the JSON
[20:23:53] <icfantv> jdo_dk: you're talking about routing?
[20:24:10] *** dob_ has quit IRC
[20:24:14] <icfantv> jdo_dk: and using route parameters to set form elements?
[20:24:33] <icfantv> tkxxx: sorry, i get that. but where is it coming from normally?
[20:24:40] *** yky has joined #angularjs
[20:24:46] <icfantv> tkxxx: where is that value stored
[20:24:57] *** baweaver has joined #angularjs
[20:24:59] <jdo_dk> icfantv: I dont know what im talking about. :) Thats my entire problem. Just started looking into angularjs last week. But think it look so awesome. Just cant figure out how it works.
[20:25:03] *** yky is now known as Guest94902
[20:25:18] <mutsayu> how can I res.redirect() with json data?
[20:25:38] *** Guest94902 has quit IRC
[20:25:46] <mutsayu> in nodejs **
[20:26:04] *** atomicb0mb has joined #angularjs
[20:26:07] <tkxxx> icfantv: It is stored within the JSON object... Also, thank you for your patience.
[20:26:08] <icfantv> jdo_dk: looks like routing is chapter 7. why are you doing links right now?
[20:26:25] <icfantv> tkxxx: what json object? where is that json object coming from?
[20:26:33] *** soee has quit IRC
[20:26:56] *** soee has joined #angularjs
[20:27:12] <tkxxx> icfantv: http://teachthemtocode.com/teachertips/wp-json/wp/v2/posts/?filter[per_page]=1
[20:27:47] <jdo_dk> icfantv: I have been through the entire tutorial. :) Just trying to use some of the stuff to filter a list.
[20:28:58] *** atomicb0mb has quit IRC
[20:29:04] <icfantv> tkxxx: i'm still not sure what your issue is
[20:29:33] *** zamerick has quit IRC
[20:30:00] *** ewooy has joined #angularjs
[20:30:04] *** rickhanlonii has quit IRC
[20:30:10] <leehambley> could someone give me a hint on where to start looking for a bug where angular loads, error free, however renders *nothing*? I'm porting from grunt (works) to gulp (still works) - build artifacts look OK as far as I can see, Im using coffee script and not sure if the {bare: true} option to drop the function closures is important… and I'm seeing illogical "unknown provider" errors for $translateProvider and friends, although I
[20:30:11] <leehambley> can see them present, and apparently correctly loaded
[20:30:12] <tkxxx> icfantv: I think basically - how do I grab the post id, turn it into a variable, then use it in another API request
[20:30:54] <icfantv> jdo_dk: if you're using ngRoute, you can get those numbers off the $route service in your $routeProvider config.
[20:31:14] <icfantv> jdo_dk: and then use them as you see fit.
[20:31:59] <icfantv> tkxxx: do an $http.get on that URL you pasted, get the ID off of that, form your URL, and then do another $http.get?
[20:32:07] <austinsk8s> @icfantv I added a comment to your gist https://gist.github.com/icfantv/363a0646a284fe6e2c64
[20:32:22] *** ilmgb has quit IRC
[20:32:27] <tkxxx> icfantv: Sounds like a plan. Thank you - I'll come back here after a few months of learning ;)
[20:32:57] <icfantv> tkxxx: ok
[20:32:59] <Respek> icfantv Well see how these take html? I was wondering if a binding could be placed in the text areas instead http://mgcrea.github.io/angular-strap/#/dropdowns
[20:33:05] *** tkxxx has quit IRC
[20:33:50] <icfantv> austinsk8s: mostly. depending on your use case, you've returned a live reference from the service and are now placing it on the scope. any modification of that data will also update the data in the service. that's almost certainly not what you want.
[20:34:18] <icfantv> austinsk8s: typically i return a read-only view or copy of the data from the service so as to not pollute it
[20:34:38] *** bengillies has joined #angularjs
[20:34:42] <icfantv> austinsk8s: but it totally depends on what/how you intend to use the service
[20:35:42] <icfantv> Respek: shameless plug here. use angular ui bootstrap.
[20:35:48] <Respek> ugh, I wish
[20:35:54] <icfantv> really?
[20:35:59] <Respek> truly
[20:36:06] <icfantv> you can't?
[20:36:08] <cj> are any of you familiar with deploying a yeoman project?
[20:36:11] <austinsk8s> @icfantv All I need is read only (for the time being). But ultimately, in the edit controller I'll need to have the ability to update the data and send it back to the server to update the DB
[20:36:29] <cj> I'm thinking maybe my absolute path references are throwing things off...
[20:36:31] *** chairmanmow has quit IRC
[20:36:48] <icfantv> austinsk8s: that's exactly what you use services for. depending if your server interfaces are RESTful, take a look at the $resource service.
[20:37:06] <Respek> angularstrap is so poorly documented, it's incredibly frustrating, and the commentary that comes back in the issues section consistently reads "if you submit a pull request to fix this problem, I'll be happy to merge it"
[20:37:14] <Respek> Aka, fix it yourself
[20:37:42] <Respek> I guess I'm also a bit of a noob, but the documentation around the affix plugin for example, it's.... so freaking sparse
[20:37:45] <icfantv> Respek: angular strap is just one guy.
[20:38:05] *** chairmanmow has joined #angularjs
[20:38:08] <icfantv> Respek: we have 6 active devs on Angular UI bootstrap
[20:38:23] *** diegoaguilar has joined #angularjs
[20:38:33] <icfantv> but that's not your question
[20:38:37] <icfantv> what are you trying to do?
[20:39:45] *** tsimagalhaes has joined #angularjs
[20:39:46] *** bengillies has quit IRC
[20:40:14] <Respek> well, in the text section of the: {"text": " ", "href": " lorem"} objects, I'd like to include a binding in the text index
[20:40:16] <icfantv> (maintaining an OSS library is hard. doing it by yourself for a popular one is quite nearly futile unless you're able to do it full time….and even then…)
[20:40:34] *** buzzedword has quit IRC
[20:40:42] <icfantv> Respek: in the $scope.dropdown?
[20:40:43] <Respek> I believe it. I'm trying to refine, push out an interaction keyframe one. it's tough to find time
[20:40:46] <Respek> yes
[20:41:26] <icfantv> Respek: no, you can't put a binding in there - it's just JSON. nothing to do w/ angular.
[20:41:31] <Respek> yeesh
[20:41:32] <icfantv> Respek: but you can put a variable
[20:41:46] <Respek> so perhaps a directive pointing to a template, or... ah a variable
[20:41:56] <tsimagalhaes> hi... i have a page where i have a table where i can select a row and pop a modal with the details. I implemented a refresh button that calls a SOAP webservice via JS to TomCat. But the refresh only updates the fields on second click in the button... any help?
[20:41:59] <icfantv> var foo = "snoopy", bar = { name: foo };
[20:42:08] *** annlewis has joined #angularjs
[20:42:11] *** elsevero has quit IRC
[20:42:15] <icfantv> Respek: ^^
[20:42:26] <jdo_dk> icfantv: WIll give it another try. Thanks
[20:42:34] <icfantv> jdo_dk: yep
[20:42:37] *** ewooy has quit IRC
[20:43:01] <icfantv> Respek: are you trying to dynamically create the contents of the dropdown?
[20:43:13] <icfantv> like, based on user input?
[20:43:14] *** csharper has quit IRC
[20:43:25] *** adiman has quit IRC
[20:43:29] *** LeBlaaanc has joined #angularjs
[20:43:51] <Respek> no, it's a cached balance of an account, which would be the first line of the dropdown, so a person could see what the current balance is
[20:44:01] *** Ic3face has joined #angularjs
[20:44:51] *** buzzedword has joined #angularjs
[20:44:56] <icfantv> ah.
[20:45:16] <smacko> If i want a directive to render when a user is logged in, is it best to add a controller for the directive or is it ok to declare that in the directive definition? like this: http://pastebin.com/eFPZk6y7
[20:45:34] <icfantv> Respek: in that case, you'll probably need to look and see how he does the $dropdown service. that is, is there an explicit or implicit watch on the dropdown content array?
[20:45:56] <icfantv> Respek: ng-repeat will update if the model changes and you don't use one-time binding syntax
[20:46:22] <Respek> so basically it'd be _self.currentAccountObj = function { return servicename.getcache('currentobj')
[20:46:23] <icfantv> Respek: but i don't know if his dropdown service also keeps track and updates
[20:46:35] *** AntJ has joined #angularjs
[20:46:42] *** juddey has quit IRC
[20:46:49] *** annlewis has quit IRC
[20:46:50] *** mnzaki has quit IRC
[20:46:57] <Respek> then var currentBalance = currentAccountObj(balance);
[20:47:00] <Respek> then pass that in
[20:47:00] *** joshontheweb has quit IRC
[20:47:02] <Respek> I'll try it
[20:47:48] *** b0yzn01z3 has quit IRC
[20:49:05] *** adiman has joined #angularjs
[20:49:18] *** kk_drop has quit IRC
[20:49:36] *** pangareh has joined #angularjs
[20:49:40] *** csharper has joined #angularjs
[20:50:20] *** joshontheweb has joined #angularjs
[20:50:43] *** baweaver has quit IRC
[20:50:43] *** Ugolin has quit IRC
[20:50:55] *** Ugolin has joined #angularjs
[20:52:20] *** AntJ has quit IRC
[20:53:46] *** Voyage has quit IRC
[20:53:51] *** diegoaguilar has quit IRC
[20:54:04] *** csharper has quit IRC
[20:54:12] *** soee has quit IRC
[20:54:23] *** davi has joined #angularjs
[20:54:24] *** davi has joined #angularjs
[20:54:33] *** soee has joined #angularjs
[20:54:59] *** Ic3face has quit IRC
[20:55:12] <gambl0re> i have a ng-model="search", how can i reference that model in my controller?
[20:55:15] *** AimerPaddle has quit IRC
[20:55:40] *** kk_drop has joined #angularjs
[20:55:41] *** nraibaud has joined #angularjs
[20:56:05] *** deez79 has joined #angularjs
[20:56:11] *** atomicb0mb has joined #angularjs
[20:56:56] *** lnrdo_ has quit IRC
[20:57:23] *** thatslifeson has joined #angularjs
[20:57:46] <zomg> gambl0re: $scope.search
[20:57:55] *** AntJ has joined #angularjs
[20:58:17] <gambl0re> thats it?
[20:58:18] *** ewooy has joined #angularjs
[20:59:22] <icfantv> gambl0re: awesome, isn't it?
[20:59:31] *** erol has quit IRC
[21:00:07] *** sgen_ has joined #angularjs
[21:00:41] *** tsimagalhaes has quit IRC
[21:01:04] *** Garfield-fr has quit IRC
[21:01:11] <gambl0re> so its the same as $scope.search = "food" and inside the html ng-model={{search}}
[21:01:15] <gambl0re> can i do something like that
[21:02:13] <smacko> yes, that will work.
[21:02:41] *** csharper has joined #angularjs
[21:02:44] *** AntJ has quit IRC
[21:02:47] *** LeBlaaanc has quit IRC
[21:02:54] *** daynaskully has joined #angularjs
[21:02:55] <gambl0re> ok
[21:02:55] <zomg> gambl0re: yes, just don't use {{ }} with ng-model
[21:03:02] *** AntJ has joined #angularjs
[21:03:05] *** asteele has joined #angularjs
[21:03:37] <smacko> sorry, I should've caught that.
[21:03:51] *** fedenunez1 has joined #angularjs
[21:04:16] *** Leon has quit IRC
[21:04:57] *** elrabin has quit IRC
[21:05:04] *** p0k0 has quit IRC
[21:05:33] *** elrabin has joined #angularjs
[21:05:45] *** buzzedwo_ has joined #angularjs
[21:06:38] *** fedenunez has quit IRC
[21:07:02] <cj> Respek: yeah, I've found angular-bootstrap to be pretty clumsy WRT documentation
[21:07:13] *** hey has joined #angularjs
[21:07:15] *** daynaskully has quit IRC
[21:07:15] *** buzzedword has quit IRC
[21:07:25] *** hey has quit IRC
[21:07:28] <cj> okay, have any of you used yeoman to generate build trees and deploy builds?
[21:07:52] <cj> I'm trying 'grunt build' and then doing an scp -r of that directory to a web server. The app just doesn't show up.
[21:08:14] *** Pspfolio has quit IRC
[21:08:38] *** sssilver has joined #angularjs
[21:10:10] *** elrabin has quit IRC
[21:10:21] *** AimerPaddle has joined #angularjs
[21:10:39] *** LeBlaaanc has joined #angularjs
[21:10:59] *** soee has quit IRC
[21:11:01] *** Z3R0 has joined #angularjs
[21:11:18] *** soee has joined #angularjs
[21:11:59] <gambl0re> im getting "Error: [$injector:modulerr] http://errors.angularjs.org/1.4.7/$injector/modulerr?p0=biz..."
[21:12:08] <gambl0re> https://gist.github.com/rickywid/f2a4f6c251063525f57f
[21:12:17] <gambl0re> anyone see anything wrong?
[21:12:31] *** csharper has quit IRC
[21:13:07] *** csharper has joined #angularjs
[21:13:26] *** buzzedwo_ has quit IRC
[21:14:32] *** cotko has joined #angularjs
[21:14:40] *** evotuned has joined #angularjs
[21:15:41] <icfantv> cj: you should switch to Angular UI Bootstrap (shameless plug)
[21:15:49] *** buzzedword has joined #angularjs
[21:15:50] *** uNki has joined #angularjs
[21:17:21] *** e7d has joined #angularjs
[21:17:39] *** ewooy has quit IRC
[21:18:54] <gambl0re> nevermind. fixed it
[21:19:10] *** erol has joined #angularjs
[21:19:16] *** Ir1sh has joined #angularjs
[21:19:39] *** Ir1sh has quit IRC
[21:20:04] *** uNki has quit IRC
[21:20:16] *** Ir1sh has joined #angularjs
[21:21:15] *** Aliks has joined #angularjs
[21:22:06] *** ewooy has joined #angularjs
[21:22:08] *** joshontheweb has quit IRC
[21:22:30] *** Jardayn has quit IRC
[21:23:37] *** erol has quit IRC
[21:24:11] *** mischat has joined #angularjs
[21:26:05] *** ril is now known as ril[away]
[21:26:30] *** raininja has quit IRC
[21:26:34] *** ahaeger has quit IRC
[21:27:12] *** ril[away] is now known as ril
[21:27:18] *** evotuned has quit IRC
[21:28:07] *** Z3R0 has quit IRC
[21:28:34] *** fnx has quit IRC
[21:29:05] *** csharper has quit IRC
[21:29:46] *** edm23 has quit IRC
[21:29:58] *** YamakasY has joined #angularjs
[21:30:03] *** BlinkyBill has joined #angularjs
[21:30:39] *** YamakasY has left #angularjs
[21:32:37] *** poosanth has quit IRC
[21:33:03] *** sbellina has quit IRC
[21:33:16] *** Z3R0 has joined #angularjs
[21:33:25] *** dpicky has joined #angularjs
[21:33:55] *** csharper has joined #angularjs
[21:33:59] *** Guest63993 has left #angularjs
[21:34:07] *** AimerPaddle has quit IRC
[21:34:19] *** juddey has joined #angularjs
[21:35:15] *** Z3R0 has quit IRC
[21:35:56] *** AimerPaddle has joined #angularjs
[21:36:25] *** edm has joined #angularjs
[21:36:36] <jdo_dk> How to create this "custom" query to my rest api: https://dpaste.de/0kLv
[21:36:55] *** bengillies has joined #angularjs
[21:37:00] *** ararog has joined #angularjs
[21:37:07] *** baweaver has joined #angularjs
[21:37:39] *** ewooy has quit IRC
[21:37:50] *** ararog has joined #angularjs
[21:38:26] *** baweaver has quit IRC
[21:38:56] *** Hornist has joined #angularjs
[21:39:00] *** proprobe has joined #angularjs
[21:39:37] *** Hornist has quit IRC
[21:41:44] *** bengillies has quit IRC
[21:41:45] *** ahaeger has joined #angularjs
[21:42:36] *** fedenunez1 has quit IRC
[21:42:46] *** annlewis has joined #angularjs
[21:43:43] *** LeBlaaanc has quit IRC
[21:44:15] *** mandric has quit IRC
[21:44:17] *** raininja has joined #angularjs
[21:44:18] <OnkelTem> Hi all
[21:44:51] *** LeBlaaanc has joined #angularjs
[21:45:21] *** proprobe has quit IRC
[21:45:25] *** dpicky_ has joined #angularjs
[21:45:31] *** ewooy has joined #angularjs
[21:46:04] *** mandric has joined #angularjs
[21:47:30] *** annlewis has quit IRC
[21:47:47] *** baweaver has joined #angularjs
[21:47:48] *** dpicky has quit IRC
[21:48:54] *** AntJ has quit IRC
[21:51:32] *** p0k0 has joined #angularjs
[21:52:05] *** jetpackjoe has joined #angularjs
[21:52:39] *** jetpackjoe has quit IRC
[21:53:19] *** jetpackjoe has joined #angularjs
[21:53:34] *** dpicky has joined #angularjs
[21:53:53] *** jetpackjoe has quit IRC
[21:54:22] *** Ugolin has quit IRC
[21:54:29] *** Aliks has quit IRC
[21:55:15] *** Ugolin has joined #angularjs
[21:55:31] *** dpicky_ has quit IRC
[21:56:05] *** dpicky_ has joined #angularjs
[21:56:21] *** cvanball has quit IRC
[21:57:11] *** Sna4x8 has quit IRC
[21:57:28] *** wrainbolt has joined #angularjs
[21:58:04] *** dpicky has quit IRC
[21:58:30] *** mnaser has quit IRC
[21:58:30] *** Aliks has joined #angularjs
[21:59:33] *** EllaineSilva has quit IRC
[21:59:50] *** lite_ has joined #angularjs
[22:00:03] *** doxavore has joined #angularjs
[22:00:50] *** randomdoude has joined #angularjs
[22:01:16] *** rickhanlonii has joined #angularjs
[22:01:27] *** lite_ has quit IRC
[22:01:57] <doxavore> Has anyone seen a way to nest ng-model within custom directives? eg, <dir-outer ng-model="boundVal"><dir-inner ng-model="somethingAlsoBoundToBoundVal"/></dir-outer>
[22:03:04] <doxavore> essentially, I have some logic in dir-inner that works well enough on its own, but I'd like a new directive dir-outer to wrap it with some additional behavior and defaults (but otherwise be able to be used as a drop-in replacement for dir-inner)
[22:03:13] *** joshontheweb has joined #angularjs
[22:03:50] *** Ugolin has quit IRC
[22:04:07] *** wrainbolt has quit IRC
[22:04:26] *** mutsayu has quit IRC
[22:05:30] *** Aliks has quit IRC
[22:05:33] *** sbellina has joined #angularjs
[22:05:47] *** mnaser has joined #angularjs
[22:06:01] <edm> Hey guys Im trying to create a filter using John Papa's multiple module approach and I'm getting a weird error I dont understand
[22:06:59] *** elrabin has joined #angularjs
[22:07:14] *** Coldblackice has joined #angularjs
[22:07:21] *** kk_drop has quit IRC
[22:07:35] <edm> Error: [$injector:unpr] Unknown provider: checkmarkFilterProvider <- checkmarkFilter
[22:07:54] <edm> Thats the error I'm getting so I'm just using the checkmark filter from angular's website as a test
[22:08:58] *** speeddragon has joined #angularjs
[22:09:12] *** AntJ has joined #angularjs
[22:09:23] *** ewooy has quit IRC
[22:09:33] *** buzzedword has quit IRC
[22:10:17] *** lite_ has joined #angularjs
[22:10:20] *** raininja has quit IRC
[22:10:37] *** wrainbolt has joined #angularjs
[22:10:58] <edm> Any ideas?
[22:11:40] *** raininja has joined #angularjs
[22:11:41] *** dc has joined #angularjs
[22:11:52] *** ril has quit IRC
[22:11:58] *** lite_ has quit IRC
[22:12:07] *** doppio|Laptop has joined #angularjs
[22:14:15] *** Sna4x8 has joined #angularjs
[22:14:28] *** snurfery has joined #angularjs
[22:15:49] *** juro has joined #angularjs
[22:16:06] *** rickhanlonii has quit IRC
[22:18:36] *** jetpackjoe has joined #angularjs
[22:19:29] *** juro has quit IRC
[22:19:30] *** thirdknife has joined #angularjs
[22:20:27] *** sterns has quit IRC
[22:21:15] *** lmatteis has joined #angularjs
[22:21:34] *** davi has quit IRC
[22:21:46] *** joshontheweb has quit IRC
[22:22:24] *** baweaver has quit IRC
[22:22:34] *** LeBlaaanc has quit IRC
[22:23:33] *** lite_ has joined #angularjs
[22:23:46] *** Zalabinsky has quit IRC
[22:26:44] *** lite_ has quit IRC
[22:28:41] *** hohl has quit IRC
[22:29:31] *** ahaeger has quit IRC
[22:30:30] *** LondonAppDev has quit IRC
[22:30:54] *** annlewis has joined #angularjs
[22:31:23] *** sctskw has quit IRC
[22:31:40] *** rickhanl_ has joined #angularjs
[22:32:14] *** Shayanjm has quit IRC
[22:32:51] *** rickhanl_ has quit IRC
[22:33:33] *** Shayanjm has joined #angularjs
[22:34:29] *** nraibaud has quit IRC
[22:34:38] *** nraibaud has joined #angularjs
[22:34:40] *** ewooy has joined #angularjs
[22:35:02] *** raininja has quit IRC
[22:35:06] *** Aliks has joined #angularjs
[22:35:11] *** sbasso has quit IRC
[22:35:29] *** annlewis has quit IRC
[22:36:24] *** PointBlank has joined #angularjs
[22:37:17] *** joshontheweb has joined #angularjs
[22:37:29] *** mischat has quit IRC
[22:38:31] *** buzzedword has joined #angularjs
[22:38:44] *** morissette has quit IRC
[22:39:18] *** sergey_ has quit IRC
[22:39:21] <PointBlank> Hi all, hope you are all ok :), So I have been looking into authorization methods in angular and I havnt found much about claims based authorization any insight ?
[22:39:48] *** LeBlaaanc has joined #angularjs
[22:41:00] *** ararog has quit IRC
[22:41:43] *** LeBlaaanc has quit IRC
[22:41:59] *** Coldblackice has quit IRC
[22:42:30] *** nraibaud has quit IRC
[22:42:36] *** F1LT3R has joined #angularjs
[22:43:04] *** buzzedword has quit IRC
[22:43:31] *** ewooy has quit IRC
[22:44:51] *** daslicht has quit IRC
[22:44:53] *** LeBlaaanc has joined #angularjs
[22:45:32] *** ewooy has joined #angularjs
[22:45:51] *** ewooy has quit IRC
[22:46:03] *** snurfery has quit IRC
[22:46:19] *** jcooke has quit IRC
[22:46:44] *** VictorCL has joined #angularjs
[22:48:06] *** srgabg has joined #angularjs
[22:48:33] <srgabg> hey
[22:48:52] *** thirdknife has quit IRC
[22:48:57] *** srgabg has quit IRC
[22:50:17] *** dlam has quit IRC
[22:50:28] *** VictorCL has quit IRC
[22:50:30] *** dlam has joined #angularjs
[22:51:41] *** buzzedword has joined #angularjs
[22:53:21] *** wrainbolt has quit IRC
[22:53:35] <OnkelTem> wafflejock: saviour, are you here?
[22:55:05] *** shooteram has joined #angularjs
[22:55:39] *** nraibaud has joined #angularjs
[22:55:52] <OnkelTem> Is there something which is called after the controller?
[22:55:52] *** doppio|Laptop has quit IRC
[22:56:55] <F1LT3R> Holla!
[22:58:26] *** ngbot has joined #angularjs
[22:58:27] <ngbot> [angular.js] petebacondarwin pushed 1 new commit to master: http://git.io/vRvWK
[22:58:27] <ngbot> angular.js/master 6a0686d Peter Bacon Darwin: fix(formatNumber): cope with large and small number corner cases...
[22:58:27] *** ngbot has left #angularjs
[22:58:48] <F1LT3R> I've been trying to figure out how to lazyload controllers and directives for a while, I finally think I'm getting the hang of things. Here's a demo (feedback appreciated): http://plnkr.co/edit/XU7MIXGAnU3kd6CITWE7?p=preview
[23:00:05] *** magellanicloud has quit IRC
[23:00:27] *** thirdknife has joined #angularjs
[23:00:30] *** senayar has joined #angularjs
[23:00:46] *** ngbot has joined #angularjs
[23:00:47] <ngbot> [angular.js] petebacondarwin pushed 1 new commit to v1.4.x: http://git.io/vRvlz
[23:00:47] <ngbot> angular.js/v1.4.x 9c49eb1 Peter Bacon Darwin: fix(formatNumber): cope with large and small number corner cases...
[23:00:47] *** ngbot has left #angularjs
[23:01:23] <wafflejock> OnkelTem: not that I can think of but you can just do whatever needs to be done at the bottom of the controller... I think in most cases you really want to be depending on some async operation though, are you working with prerender.io?
[23:01:46] *** jareddlc has quit IRC
[23:02:02] *** jareddlc has joined #angularjs
[23:02:20] *** jdo_dk has quit IRC
[23:02:26] *** F1LT3R has quit IRC
[23:02:26] *** nraibaud has quit IRC
[23:02:31] *** jareddlc has quit IRC
[23:03:42] <OnkelTem> wafflejock: no, I've never had it a go
[23:04:06] <OnkelTem> wafflejock: I wrote my own phantomjs scripts for this task
[23:04:20] <OnkelTem> Also I've updated this: https://github.com/angular-ui/ui-router/issues/2403
[23:04:23] <wafflejock> OnkelTem: ah okay well this is how prerender handles it OnkelTem: I just fixed this on one of my sites recently too the documentation is here https://prerender.io/documentation/best-practices but basically I
[23:04:25] <PointBlank> Can anyone point me to the right resources. I want to know how to control UI visibility of objects (for example edit button) in a granular manner in angular that has a REST API backend which has enforced security. I am looking at claims based because it seems quite granular but the net lacks resources on the topic so I'm asking here
[23:04:28] <OnkelTem> wafflejock: and now test case is ready!
[23:04:44] *** diosney has quit IRC
[23:04:59] <OnkelTem> wafflejock: oh, thanks I'm gonna check it out (was searching for docs when you wrote)
[23:05:00] *** F1LT3R has joined #angularjs
[23:05:08] *** diosney has joined #angularjs
[23:05:10] *** LeBlaaanc has quit IRC
[23:05:51] *** ewooy has joined #angularjs
[23:06:03] *** LeBlaaanc has joined #angularjs
[23:06:03] *** shooteram has left #angularjs
[23:06:11] <wafflejock> yeah they basically just have a global flag so if after the async stuff it's aware of has completed it checks to see if the global flag is set to false, if it is it does some timeout/interval or something to wait till it becomes true
[23:06:17] <OnkelTem> wafflejock: hm so it uses window.prerenderReady, but.. same thing - when it is set and by which facility?
[23:06:39] <OnkelTem> timeout is stupid actually :)
[23:06:52] *** jlebrech has joined #angularjs
[23:06:53] <OnkelTem> sure depending on what you're doing but
[23:07:15] <wafflejock> eh might be adding a setter to check if the prerenderReady is set but it's up to the end developer to set that in their code then
[23:07:37] *** dszmaj has quit IRC
[23:08:03] *** zigzagzig has quit IRC
[23:08:04] <wafflejock> prerender.io just watches for any outstanding async tasks in chrome (not sure how that's done) but after that it checks for this boolean and if the end developer set it then it's up to them to mark it as true at some point in the future, otherwise after 20s or so prerender times out and assumes something went wrong and saves the current state
[23:08:09] <OnkelTem> ok, I still hope there is specific and nice NG solution for this. I feel like I'm walk around
[23:08:12] <OnkelTem> walking*
[23:08:12] *** dpicky_ has quit IRC
[23:08:24] <wafflejock> well what are you trying to do exactly?
[23:09:36] *** Poeticode has quit IRC
[23:09:41] *** dpicky has joined #angularjs
[23:09:59] <OnkelTem> wafflejock: http://plnkr.co/edit/ED0SGYyJerO1kaNDCwGv?p=preview - this is the test case I'm working on
[23:10:02] <wafflejock> OnkelTem: http://stackoverflow.com/questions/11340038/phantomjs-not-waiting-for-full-page-load <-- general stuff about phantomjs and waiting for page load, but if you're just doing the same thing prerender does why not just run their package?
[23:10:03] *** baweaver has joined #angularjs
[23:10:20] <OnkelTem> wafflejock: I want to set 'ready' flag on <html> element when the last view is rendered
[23:10:20] *** dpicky has quit IRC
[23:10:54] <wafflejock> not sure what you mean by last view is rendered exactly
[23:11:11] <austinsk8s> so I have an object map and I am looking for an object with a property of a specific value, and then I want to return that objects index. Best way to do this in angular?
[23:11:12] <wafflejock> since it's a SPA the views will be changing based on user interaction or whatever changes in the model might be going on
[23:11:13] <OnkelTem> wafflejock: well, I spent a lot of time 1.5 years ago to write my scripts for phantomjs, I just don't feel like I'm ready to kick that stuff
[23:11:18] *** OtherAllan has joined #angularjs
[23:11:23] *** baweaver has quit IRC
[23:11:26] *** jlebrech has quit IRC
[23:11:36] *** dpicky has joined #angularjs
[23:11:59] *** baweaver has joined #angularjs
[23:12:14] <OnkelTem> wafflejock: A state transition. After it's done, controllers work, and then views are rendered. And each emits $viewContentLoaded.
[23:12:15] *** LeBlaaanc has quit IRC
[23:12:16] *** dpicky has quit IRC
[23:12:28] <OnkelTem> (or actually it's a broacasts)
[23:12:28] *** Aliks has quit IRC
[23:12:33] *** citizen-stig has quit IRC
[23:12:38] *** LeBlaaanc has joined #angularjs
[23:12:53] *** fscala has quit IRC
[23:13:20] *** nraibaud has joined #angularjs
[23:13:45] <OnkelTem> wafflejock: if you look into console output of my test case, you'll see what I'm talking about: there are two viewContentLoaded events for each scope, from the bottom to the top
[23:13:53] *** idr0p has quit IRC
[23:14:23] *** dpicky has joined #angularjs
[23:14:41] *** aubsrey_ has joined #angularjs
[23:15:18] <wafflejock> right no I follow that part I just don't really see what the overall goal is?
[23:15:29] *** fscala has joined #angularjs
[23:15:54] *** Schalla has joined #angularjs
[23:15:55] *** Schalla has joined #angularjs
[23:16:00] *** LeBlaaanc has quit IRC
[23:16:16] *** idr0p has joined #angularjs
[23:16:17] <wafflejock> I mean are these scripts in node using phantom to do something on some angular page where you want to know when it's loaded? if so would look at it from the PhantomJS perspective and using the global is a way to work around if there isn't anything to watch on the phantom side of things to guarantee the processing is complete
[23:17:04] *** dpicky_ has joined #angularjs
[23:17:18] *** LeBlaaanc has joined #angularjs
[23:17:43] <wafflejock> you could have the directive that we talked about having on the body be within the templates for the content and have it emit/broadcast an event and you'd know the controller for the view is loaded at that point and the template has been compiled and linked but all depends on what you actually need it to do if any of that would make sense
[23:18:02] *** nraibaud has quit IRC
[23:18:10] *** thirdknife has quit IRC
[23:18:14] <OnkelTem> wafflejock: https://gist.github.com/OnkelTem/34bfce2ff96980d401f8 - ok, this is my main phantomjs script. Page watch related stuff beings from 93rd line
[23:18:59] *** dpicky has quit IRC
[23:19:08] *** dpicky has joined #angularjs
[23:19:50] <OnkelTem> tl;dr - it just waits for status='ready' attr
[23:20:27] *** thirdknife has joined #angularjs
[23:20:35] *** subnomo has joined #angularjs
[23:21:03] *** dpicky__ has joined #angularjs
[23:21:09] *** prolink007 has joined #angularjs
[23:21:20] <OnkelTem> and then outputs a snapshot to a calling server script, which feeds it back to the user agent (presumably - a SE bot)
[23:21:24] *** dpicky_ has quit IRC
[23:21:47] *** Mr-label has quit IRC
[23:23:01] *** dpicky has quit IRC
[23:23:04] *** dpicky_ has joined #angularjs
[23:23:14] *** senayar_ has joined #angularjs
[23:23:22] <wafflejock> yeah I mean I just did it with the prerenderReady on window recently and basically all I had to do was set window.prerenderReady = false; in the controller for the view that I wanted it to delay on and then in the callback that set the data onto the scope I just set prerenderReady = true; and it worked, not sure if they have some extra little delay that allowed the scope to process built in or what but I didn't need to add anything
[23:23:40] <austinsk8s> I have an object map and I am looking for an object with a property of a specific value, and then I want to return that objects index. Best way to do this in angular?
[23:23:40] *** mandric has quit IRC
[23:23:42] *** s3shs has joined #angularjs
[23:24:00] *** senayar has quit IRC
[23:24:09] <wafflejock> OnkelTem: would check out the source here and see what black magic they're implementing :) https://github.com/prerender/prerender
[23:24:16] *** baweaver has quit IRC
[23:24:17] *** jhirley has joined #angularjs
[23:24:23] *** Aliks has joined #angularjs
[23:24:41] *** diegoaguilar has joined #angularjs
[23:25:23] *** mandric has joined #angularjs
[23:25:30] *** dpicky__ has quit IRC
[23:26:30] <wafflejock> yeah looks like they just listen for the resource requested events https://github.com/prerender/prerender/blob/b841241cc96343ab903e6856cb49bf4508b4b344/lib/server.js and have a timeout and if it hasn't been long enough it continues to wait, then it kicks off the check to see if prerenderReady is set to see if it should keep waiting
[23:26:32] *** ewooy has quit IRC
[23:27:04] <OnkelTem> wafflejock: quite universal :)
[23:27:15] *** thirdknife has quit IRC
[23:28:26] *** walden is now known as walden|brb
[23:29:37] *** ilmgb has joined #angularjs
[23:29:40] <OnkelTem> wafflejock: yet, I'd like to solve it in application logic. So I created a directive on a body, but its controller or post link is not being called. How to make it to react and after all the others?
[23:29:50] *** GitGud has quit IRC
[23:30:15] <OnkelTem> it is there btw, in the test case - renderTrigger directive
[23:30:36] *** s3shs has quit IRC
[23:30:39] *** MerlinDMC has quit IRC
[23:30:53] <wafflejock> well post link should run after any child directives post link has run
[23:31:40] *** annlewis has joined #angularjs
[23:31:43] *** MerlinDMC has joined #angularjs
[23:31:43] <OnkelTem> "renderTrigger's post link is triggered" is printed even before a state is starting to change
[23:31:49] <wafflejock> know the prelink is run on parents before children then post link goes the opposite way runs on the children before the parents, not sure where the controller instantiation fits in there, can check the $compile source out to see it all but sometimes hard to step through that
[23:32:06] <wafflejock> yeah if it's on the body it can happen before the ui-router or ngRoute stuff has started
[23:32:26] *** LeBlaaanc has quit IRC
[23:32:30] <wafflejock> but if you put the directive in the templates for each of the views that are "routed to" then it will execute only when those templates are done loading
[23:32:42] <wafflejock> which will be after the controller for that route has loaded too
[23:32:50] <wafflejock> pretty sure
[23:33:29] *** ren0v0 has quit IRC
[23:33:38] <wafflejock> basically the ui-view or ng-view directives or ui-sref or whatever on the page would process before your renderTrigger one on the body
[23:33:39] *** diosney has quit IRC
[23:33:49] <wafflejock> but the router may have not yet done anything to load templates or anything else yet
[23:33:51] <smacko> Are templates compiled before services are instantiated?
[23:33:57] *** Mr-label has joined #angularjs
[23:33:58] *** LeBlaaanc has joined #angularjs
[23:34:00] *** Ldip has joined #angularjs
[23:34:07] <OnkelTem> wafflejock: thanks for the idea, I'm gonna try it
[23:34:08] <prolink007> can i get some assistance with this angular 2 problem, here is the link to my issue. http://stackoverflow.com/q/34031481/427763
[23:34:24] *** ilmgb has quit IRC
[23:34:34] *** Ir1sh has quit IRC
[23:34:47] <prolink007> please reply to the question in stack overflow
[23:34:50] *** ren0v0 has joined #angularjs
[23:34:53] <prolink007> i am not going to be able to stick around here
[23:36:10] *** sbasso has joined #angularjs
[23:36:33] *** kk has joined #angularjs
[23:36:34] *** annlewis has quit IRC
[23:36:39] <kk> привки
[23:37:07] <OnkelTem> kk: отвратительное слово
[23:37:39] *** itaipu has quit IRC
[23:38:05] <kk> :) добрый вечер тогда). я решил начать изучать ангуляржс, у меня вопрос без ноде.жс он не работает?
[23:38:05] *** dpicky has joined #angularjs
[23:38:15] *** bengillies has joined #angularjs
[23:38:39] <smacko> /leave
[23:38:59] *** CanyonMan has joined #angularjs
[23:39:02] *** smacko has left #angularjs
[23:39:03] *** Mr-label has quit IRC
[23:39:14] *** mylord has joined #angularjs
[23:39:21] <kk> потому что у меня была идея написать на нем вебинтерфейс для одной своей программы но кажется теперь что он не подойдет
[23:39:36] *** dpicky_ has quit IRC
[23:40:26] *** s00pcan has quit IRC
[23:40:54] *** walden|brb is now known as walden
[23:41:05] *** ewooy has joined #angularjs
[23:41:06] <leehambley> how can I detect if I am using jqLite ?
[23:41:19] <leehambley> I'd like to avoid it (just lost some time into wiredep rewriting my imports into the wrong order, and breaking the world)
[23:42:35] *** dre_ has joined #angularjs
[23:42:49] <dre_> I'm seeing this in a couple of places in the docs: <div [ng-class]="special">NgClass is special</div>
[23:43:03] <dre_> is that meant to have an extra pair of quotes around "special"
[23:43:14] <dre_> like <div [ng-class]="'special'">NgClass is special</div>, perhaps?
[23:43:15] *** bengillies has quit IRC
[23:44:21] *** s00pcan has joined #angularjs
[23:44:22] *** tomas has quit IRC
[23:44:29] <dre_> it's usually given without context, so it could be OK, of course
[23:45:20] *** LeBlaaanc has quit IRC
[23:45:35] *** tomas has joined #angularjs
[23:45:36] *** tomas has joined #angularjs
[23:46:42] *** prolink007 has quit IRC
[23:47:04] *** bradgignac_ has quit IRC
[23:47:27] *** defendguin has joined #angularjs
[23:47:51] *** leehambley has quit IRC
[23:48:19] *** Respek has quit IRC
[23:49:22] *** LeBlaaanc has joined #angularjs
[23:49:47] *** mven has quit IRC
[23:49:55] *** itaipu has joined #angularjs
[23:51:14] *** Mr-label has joined #angularjs
[23:51:24] *** dre_ has quit IRC
[23:51:40] *** jhirley has quit IRC
[23:52:38] *** LeBlaaanc has quit IRC
[23:53:02] *** dcherman2 has quit IRC
[23:54:45] *** dpicky_ has joined #angularjs
[23:55:27] *** baweaver has joined #angularjs
[23:56:04] *** dpicky_ has quit IRC
[23:56:59] *** dman777_alter has quit IRC
[23:57:05] *** baweaver has quit IRC
[23:57:12] *** mandric has quit IRC
[23:57:27] *** atomicb0mb has quit IRC
[23:57:42] *** dpicky has quit IRC
[23:58:38] *** xtreamwayz has quit IRC
[23:58:56] *** dre_ has joined #angularjs
[23:59:42] *** austinsk8s has quit IRC
[23:59:58] *** nanuko has quit IRC
top

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