[00:00:00] *** bePolite has quit IRC
[00:01:05] *** leolrrj-alt has quit IRC
[00:01:14] *** buzzedword has quit IRC
[00:01:20] *** walden is now known as walden|afk
[00:01:25] *** kitcat711 has quit IRC
[00:03:35] *** fees has quit IRC
[00:05:27] *** Guiltylemon is now known as GuiltyLemon
[00:05:29] <kegster> is there an angular view controller that's worth anything?
[00:05:47] *** buzzedword has joined #angularjs
[00:07:48] <kegster> would i just handle views as say... each view a div with ng-show="" using a custom var with a custom view key?
[00:08:37] <taxilian> kegster what do you mean by "view controller", exactly? what are you trying to accomplish?
[00:08:45] *** siba has quit IRC
[00:08:46] <taxilian> states? routing?
[00:09:26] *** jbarket has quit IRC
[00:10:03] <tritian> Hello, I'm using ngAnimate and it seems like it waits for the ng-leave to finish before executing the ng-enter - is there any way to get them to run simultaneously
[00:10:15] *** zivester has quit IRC
[00:10:39] *** buzzedword has quit IRC
[00:11:36] *** bew has quit IRC
[00:12:10] *** Oleander has quit IRC
[00:12:38] *** aghiuru has quit IRC
[00:12:59] *** p0k0 has joined #angularjs
[00:13:55] *** Oleander has joined #angularjs
[00:14:00] *** SevenZark7 has joined #angularjs
[00:15:34] *** mven has quit IRC
[00:16:46] *** dimtruck is now known as zz_dimtruck
[00:16:58] *** ycon_ has joined #angularjs
[00:18:40] *** GuiltyLemon is now known as Guiltylemon
[00:19:00] *** dan2k3k4 has quit IRC
[00:20:08] *** ashgotti has joined #angularjs
[00:20:15] *** hefox has joined #angularjs
[00:20:27] *** Oleander has quit IRC
[00:20:28] *** dcherman has joined #angularjs
[00:20:46] <ashgotti> Hello everyone. I want to load a JS file once my app is loaded. I'm using $scope.$on('$viewContentLoaded', function(){}); but this runs everytime new content is brought in. I only need it done once.
[00:22:18] <archon-> then don't use $on, just load it
[00:23:00] <ashgotti> How do it load it once everything is loaded though?
[00:23:10] <archon-> what is "everything" ?
[00:23:34] <ashgotti> I'm fetching data from a 3 JSON sources
[00:23:59] <taxilian> use promises with the load, and when all three resolve run your result
[00:25:04] <ashgotti> a little over my head, going to google that
[00:25:44] <taxilian> it's worth knowing how to use promises anyway; basically a promise is an async return value. instead of giving it a callback function, you store the promise it returns (angular has $q for promises)
[00:25:45] <kegster> taxilian, well different views for the application. being in html, i imagine i would encapsulate each "view" as a div. or is just each window a div by itself?
[00:26:07] *** cstipkovic has quit IRC
[00:26:15] <taxilian> ashgotti: I think there is a $q.all([promise1, promise2, promise3]).then(function(res) { /* do your stuff here */ });
[00:26:44] <taxilian> kegster: Personally I use angular-ui-router for things like that, and it works well. You could do it a lot of ways, including the one you described
[00:26:53] <ashgotti> I'm using ui.router
[00:26:58] <taxilian> but one thing to keep in mind is to carefully decide when to use ng-show and when ng-hide
[00:27:05] <kegster> would i use ng-show without router?
[00:27:06] <kegster> well
[00:27:10] <taxilian> so these are different views of the same page?
[00:27:16] <taxilian> bleh, that's not what I meant to write
[00:27:19] <kegster> i would use a var to be set for the viwe key perhaps
[00:27:20] <taxilian> when to use ng-show and when ng-if
[00:27:37] <kegster> i created a root scope or something (noob here)
[00:27:47] <kegster> and was able to have a global var accessible
[00:28:03] <kegster> so my_view = 'this_specific_view'; logic for ng-show
[00:28:12] <taxilian> if you use ng-show then all the directives (and watches) are active, if you use ng-if then when it's not true it actually removes it all from the page. there is a cost in time to do that, but a cost in processing to leave it there
[00:28:14] <kegster> taxilian, i just imagine any view. trying to figure out what to call what lol.
[00:28:18] *** Oleander has joined #angularjs
[00:28:28] <kegster> hm
[00:28:36] <kegster> so using ng-show would be bad performance
[00:28:50] <taxilian> kegster: note that angular-ui-router supports nested states, so you can have a parent state with a template and a <div ui-view></div> in it which will take child states
[00:28:53] <kegster> angular-ui-router handles this?
[00:28:56] <taxilian> yes
[00:29:04] <kegster> i imagine the ng-show is for the local divs/windows
[00:29:16] <kegster> and router for the global views
[00:29:21] <taxilian> things that appear/disappear depending on what is happening inside a single state, yes
[00:29:36] *** Bodin has quit IRC
[00:29:41] <taxilian> if it's something you'd want to get into and out of using a back/forward button then it should all be ui-router
[00:29:48] <kegster> yeah def
[00:29:50] <taxilian> if not, then you can do other things like ng-show or ng-if
[00:30:02] <archon-> most people use ui-router anyway
[00:30:03] <taxilian> honestly it just takes practice and thought to figure out when to do what
[00:30:04] <archon-> afaik
[00:30:05] <kegster> good bc i was wanting to get into routes
[00:30:19] <kegster> i used codeschool's video tutorials to get started on just the logic, but everything was older
[00:30:46] *** doxavore has quit IRC
[00:30:56] *** buzzedword has joined #angularjs
[00:31:15] <kegster> the routes were very nice, but i saw everything was dated so kinda gave up hope
[00:31:53] <kegster> checkingout router
[00:32:44] *** killa_kyle has quit IRC
[00:32:46] *** hswolff has joined #angularjs
[00:32:48] <taxilian> I don't think it's changed significantly in quite awhile. the component router will likely replace it, from what I understand, but it's not ready yet
[00:32:57] *** mrtost has joined #angularjs
[00:33:24] *** mrtost has quit IRC
[00:33:29] *** aghiuru has joined #angularjs
[00:35:40] *** buzzedword has quit IRC
[00:36:44] *** s3shs has joined #angularjs
[00:36:50] <tritian> ui-router is good
[00:37:20] *** mary5030 has joined #angularjs
[00:37:24] <drej> this statement is partially correct
[00:37:24] <s3shs> Should app.run be the last thing I do in the last file I load from my .html?
[00:37:39] <s3shs> drej ?
[00:38:11] *** aghiuru has quit IRC
[00:39:28] <tritian> wtf is app.run
[00:39:28] *** Oleander has quit IRC
[00:40:02] <BahamutWC|Work> module.run
[00:40:16] <s3shs> Sure. My modules named app.
[00:40:40] <tritian> i dont think i've ever done .run
[00:40:43] *** macabre has quit IRC
[00:40:45] <tritian> how does my shit... run
[00:40:52] <tritian> heh
[00:40:57] *** fiddo has quit IRC
[00:41:00] <s3shs> Magic!
[00:41:03] *** rho has joined #angularjs
[00:41:03] *** rho has joined #angularjs
[00:42:07] <tritian> wewp
[00:42:10] <s3shs> So if I want to set something up in $rootScope, where do I do it?
[00:44:33] *** TyrfingMjolnir has joined #angularjs
[00:47:03] <tritian> i dont understand why my ng-enter executes delayed after my ng-leave does
[00:47:23] <tritian> i wish i could make these two animations simultaneous
[00:47:34] *** Oleander has joined #angularjs
[00:47:47] <tritian> maybe the ng-repeat is taking too long, causing the delay
[00:48:26] *** vrockai has quit IRC
[00:49:28] *** looker has quit IRC
[00:50:32] *** jrist has quit IRC
[00:51:50] <tritian> hmmm no it seems to definitely be delayed somehow :|
[00:51:56] <tritian> not just from processing
[00:52:08] <tritian> guh
[00:52:36] *** Marble68 has quit IRC
[00:52:40] *** dcherman has quit IRC
[00:53:02] *** senayar has joined #angularjs
[00:53:02] *** senayar has joined #angularjs
[00:53:35] *** bengillies has joined #angularjs
[00:53:54] *** mary5030_ has joined #angularjs
[00:53:59] *** jbarket has joined #angularjs
[00:54:39] *** jae has quit IRC
[00:54:44] *** sbellina has quit IRC
[00:55:07] *** Oleander has quit IRC
[00:55:12] *** diegoaguilar has quit IRC
[00:55:27] *** ome has joined #angularjs
[00:55:49] *** sbellina has joined #angularjs
[00:56:15] *** mary5030 has quit IRC
[00:56:38] *** yanivkalfa has quit IRC
[00:57:53] *** jr3 has quit IRC
[00:58:20] *** bengillies has quit IRC
[00:58:54] *** Oleander has joined #angularjs
[00:59:03] *** buzzedword has joined #angularjs
[01:00:35] *** sssilver has quit IRC
[01:01:12] *** nanoz has joined #angularjs
[01:01:23] *** Oleander has quit IRC
[01:01:57] *** mary5030_ has quit IRC
[01:03:26] *** buzzedword has quit IRC
[01:04:06] *** ashgotti has quit IRC
[01:04:59] *** jrist has joined #angularjs
[01:06:04] *** jbarket has quit IRC
[01:07:49] *** johnreedlol123 has quit IRC
[01:07:52] *** Magik6k has quit IRC
[01:08:58] *** SpikeSpiegel has quit IRC
[01:08:58] *** SpikeSpiegel has joined #angularjs
[01:09:05] *** deez79 has joined #angularjs
[01:09:15] *** sbellina has quit IRC
[01:09:29] *** siba has joined #angularjs
[01:10:00] *** pimlu has quit IRC
[01:10:21] *** pimlu has joined #angularjs
[01:10:53] *** diegoaguilar has joined #angularjs
[01:11:26] *** Guest76167 has quit IRC
[01:12:01] *** nya_ has joined #angularjs
[01:12:34] *** ziyadb has quit IRC
[01:13:06] *** C0nundrum has quit IRC
[01:13:35] *** kgee has quit IRC
[01:13:39] *** kgee_ has joined #angularjs
[01:13:46] *** panurge has joined #angularjs
[01:14:05] *** cacts|works has quit IRC
[01:14:57] *** doginal has joined #angularjs
[01:15:29] *** rickmak_ has joined #angularjs
[01:16:35] *** nya_ has quit IRC
[01:18:55] *** s3shs has quit IRC
[01:19:23] *** C0nundrum has joined #angularjs
[01:19:38] *** beakman has quit IRC
[01:19:40] *** mischat has quit IRC
[01:20:23] *** rickmak_ has quit IRC
[01:21:17] *** s3shs has joined #angularjs
[01:22:10] *** bayousoft has joined #angularjs
[01:22:29] *** speeddragon has quit IRC
[01:25:17] *** hlai has joined #angularjs
[01:25:30] *** hswolff has quit IRC
[01:25:57] *** mellernoia has quit IRC
[01:26:00] *** pimlu has quit IRC
[01:26:46] *** saysora has quit IRC
[01:27:06] *** bbankes has quit IRC
[01:27:39] *** hlai has quit IRC
[01:28:36] *** beakman has joined #angularjs
[01:30:20] *** mary5030 has joined #angularjs
[01:33:36] *** genta_boy has quit IRC
[01:34:32] *** wartdev has joined #angularjs
[01:40:59] *** TyrfingMjolnir has quit IRC
[01:41:07] *** wonder95 has quit IRC
[01:41:23] *** speeddragon has joined #angularjs
[01:41:53] *** jr3 has joined #angularjs
[01:42:39] *** frem has quit IRC
[01:45:54] *** agus15 has joined #angularjs
[01:47:08] *** doodlehaus has joined #angularjs
[01:47:27] <agus15> so been looking thru the docs on angular 2....cant find out how to set up a timer....would use $timeout but doesnt seem to work....maybe i am doing it wrong? any help
[01:48:56] <s3shs> If I have a service that loads data from the server. How do I kick it off to do the first load?
[01:49:16] *** zz_dimtruck is now known as dimtruck
[01:50:18] *** hswolff has joined #angularjs
[01:50:26] *** speeddragon has quit IRC
[01:51:35] *** buzzedword has joined #angularjs
[01:51:42] *** DanSkaggs has quit IRC
[01:52:31] *** flappynerd has quit IRC
[01:53:42] *** iraj has quit IRC
[01:54:38] <agus15> is this not the right place to ask for help?
[01:56:16] *** buzzedword has quit IRC
[01:56:23] *** bluezone__ has joined #angularjs
[01:57:08] *** DrShoggoth has joined #angularjs
[01:57:28] *** rchavik has joined #angularjs
[01:58:06] *** Bomber4Chats has quit IRC
[02:00:19] *** thrillgore has quit IRC
[02:02:15] <agus15> just looking for the directive i would need to use for a timer
[02:02:58] <agus15> or a link to something?
[02:03:29] *** zeezey has quit IRC
[02:03:30] *** FIFOd has joined #angularjs
[02:03:38] *** kuadrosx has quit IRC
[02:04:16] *** nya_ has joined #angularjs
[02:06:25] *** speeddragon has joined #angularjs
[02:06:27] *** gambl0re has joined #angularjs
[02:08:37] *** s3shs has quit IRC
[02:11:16] *** plutoniix has joined #angularjs
[02:12:32] *** kopasetik has quit IRC
[02:13:56] *** bayousoft has quit IRC
[02:14:10] *** icfantv has quit IRC
[02:15:07] *** thrillgore has joined #angularjs
[02:17:24] *** steven10172 has joined #angularjs
[02:17:28] *** mary5030 has quit IRC
[02:17:28] *** Sample has joined #angularjs
[02:17:49] *** speeddragon has quit IRC
[02:17:57] *** shoelessone has joined #angularjs
[02:18:34] *** shoelessone has quit IRC
[02:18:37] *** Anatoli_k has quit IRC
[02:20:09] *** speeddragon has joined #angularjs
[02:20:09] *** mischat has joined #angularjs
[02:21:35] *** wontoner has joined #angularjs
[02:21:40] *** encryptd_fractal has joined #angularjs
[02:22:04] *** agus15 has quit IRC
[02:22:34] *** p0k0 has quit IRC
[02:24:16] *** dragonpiper has joined #angularjs
[02:24:22] *** C0nundrum has quit IRC
[02:27:14] *** speeddragon has quit IRC
[02:27:35] *** doodlehaus has quit IRC
[02:29:03] *** LeBlaaanc has quit IRC
[02:29:57] *** speeddragon has joined #angularjs
[02:30:08] *** rho has quit IRC
[02:31:28] *** Aliks has quit IRC
[02:31:42] *** kp666 has quit IRC
[02:32:05] *** kp666 has joined #angularjs
[02:32:32] *** jtimon has quit IRC
[02:33:07] *** SpikeSpiegel has quit IRC
[02:34:03] *** dimtruck is now known as zz_dimtruck
[02:34:51] *** rud has quit IRC
[02:35:06] *** rud_ has joined #angularjs
[02:35:28] *** speeddragon has quit IRC
[02:35:54] *** speeddragon has joined #angularjs
[02:35:56] *** zac has joined #angularjs
[02:37:05] *** marr has quit IRC
[02:37:27] *** beakman has quit IRC
[02:39:50] *** sbellina has joined #angularjs
[02:41:53] *** yky_ has quit IRC
[02:44:34] *** joshontheweb has quit IRC
[02:44:34] *** buzzedword has joined #angularjs
[02:45:24] *** devians has joined #angularjs
[02:45:46] *** kuadrosx has joined #angularjs
[02:47:47] *** sbellina has quit IRC
[02:48:11] *** doppio|work has joined #angularjs
[02:48:24] *** Sample has quit IRC
[02:48:58] *** codeitloadit has quit IRC
[02:49:59] *** buzzedword has quit IRC
[02:50:46] *** hrusti_ has quit IRC
[02:51:12] *** crystalmaiden has joined #angularjs
[02:51:17] *** LeBlaaanc has joined #angularjs
[02:51:32] *** Guiltylemon is now known as GuiltyLemon
[02:53:01] <doppio|work> I want to integrate a blog into an Angular app I'm developing. Can anyone recommend a CMS that has a RESTful JSON API, that I could set up to use my existing Mongoose authentication for commenting?
[02:53:47] *** mary5030 has joined #angularjs
[02:54:21] *** baweaver has joined #angularjs
[02:54:32] <doppio|work> Wordpress has a JSON REST API, but I don't think I can use my existing authentication system, since WP has no Mongo support
[02:54:47] *** bengillies has joined #angularjs
[02:54:55] *** sqram has joined #angularjs
[02:55:04] *** snewpy has joined #angularjs
[02:55:18] *** graphettion has joined #angularjs
[02:55:45] *** hefox has quit IRC
[02:56:01] *** Bomber4Chats_ has joined #angularjs
[02:56:15] *** Jardayn has quit IRC
[02:56:33] *** Aliks has joined #angularjs
[02:58:57] *** s3shs has joined #angularjs
[02:59:23] *** bengillies has quit IRC
[02:59:28] *** LeBlaaan_ has joined #angularjs
[02:59:28] *** baweaver has quit IRC
[03:00:46] *** mischat has quit IRC
[03:01:13] *** zac has quit IRC
[03:02:35] *** joeco_m_t has joined #angularjs
[03:02:38] *** LeBlaaanc has quit IRC
[03:02:38] *** speeddragon has quit IRC
[03:02:39] *** kgee_ has quit IRC
[03:03:22] *** Bloomer has joined #angularjs
[03:04:01] *** doxavore has joined #angularjs
[03:04:04] *** joeco_m_t is now known as TruthSeeker
[03:04:10] *** zz_dimtruck is now known as dimtruck
[03:04:19] *** TruthSeeker has quit IRC
[03:04:23] *** JackFruh has joined #angularjs
[03:04:40] *** joeco_m has quit IRC
[03:06:56] *** greatdex has joined #angularjs
[03:07:46] *** rickmak_ has joined #angularjs
[03:09:55] *** rickmak_ has quit IRC
[03:10:05] *** ron_frown has joined #angularjs
[03:13:01] *** jr3 has quit IRC
[03:14:48] *** hswolff has quit IRC
[03:14:51] *** encryptd_fractal has quit IRC
[03:14:54] *** mary5030 has quit IRC
[03:15:27] *** jr3 has joined #angularjs
[03:15:46] *** s3shs has quit IRC
[03:16:26] *** s3shs has joined #angularjs
[03:16:35] *** nilsi has joined #angularjs
[03:16:57] *** macabre has joined #angularjs
[03:17:07] *** jr3 has left #angularjs
[03:18:19] *** rickmak_ has joined #angularjs
[03:19:25] *** Poeticode has joined #angularjs
[03:20:16] *** FIFOd has quit IRC
[03:20:30] *** rickmak_ has quit IRC
[03:21:14] *** mary5030 has joined #angularjs
[03:21:29] *** rickmak_ has joined #angularjs
[03:22:29] *** sqram has quit IRC
[03:23:34] *** raijin has joined #angularjs
[03:24:57] *** FIFOd has joined #angularjs
[03:26:34] *** FIFOd has joined #angularjs
[03:26:47] *** Zamerick has quit IRC
[03:31:51] *** senayar has quit IRC
[03:32:16] *** burzum has joined #angularjs
[03:34:03] *** burzum2 has quit IRC
[03:35:45] *** FIFOd has quit IRC
[03:36:31] *** mary5030 has quit IRC
[03:36:42] *** Dev0n is now known as Dev0n_
[03:37:20] *** s3shs_ has joined #angularjs
[03:39:15] *** s3shs has quit IRC
[03:39:33] *** loinad has quit IRC
[03:40:42] *** doginal has quit IRC
[03:42:41] *** joshontheweb has joined #angularjs
[03:43:21] <wafflejock> tritian: the .run functions defined on a module get executed immediately after the config functions get called during angular bootstrap process
[03:44:59] <wafflejock> doppio|work: not sure what you're looking for regarding "CMS" functionality but there are quite a few rich text editor options out there, TinyMCE (not as tiny as it sounds based on a conversation yeserday), QuillJS, Text-Angular, CKEditor, there was another one mentioned yesterday but don't see it in my scroll back, personally ended up using contentEditable directive from the angular site and using execCommand calls hooked into som
[03:45:15] <wafflejock> let me know if that message clipped and you care, might have gone over 500
[03:45:30] <doppio|work> ended with "and using execCommand calls hooked into so"
[03:45:42] <wafflejock> execCommand calls hooked into some custom directives to get what I wanted made
[03:45:43] *** aghiuru has joined #angularjs
[03:45:51] *** hswolff has joined #angularjs
[03:46:23] <doppio|work> Thank you, that gives me a great place to start!
[03:46:23] <wafflejock> basically there's a thing built into the browsers called "execCommand" that you can tell to "bold" or "h1" the selected text and it applies the appropriate changes to a contentEditable region to update the markup behind it then you can just pull that markup after it's edited
[03:46:28] <wafflejock> np
[03:47:04] <wafflejock> only difficulties really are dealing with images or videos if you want to give the end user the ability to add/edit those
[03:47:20] <doppio|work> Really I just want them to be able to submit text comments
[03:47:50] *** dimtruck is now known as zz_dimtruck
[03:47:56] <wafflejock> yah can just use a plain text input for that part if you're already storing stuff in Mongo can just dump the comments data into a new collection I would think
[03:47:58] *** nya_ has quit IRC
[03:48:18] *** nya_ has joined #angularjs
[03:48:21] *** Aliks has quit IRC
[03:48:25] *** zz_dimtruck is now known as dimtruck
[03:48:30] *** greatdex has quit IRC
[03:49:32] *** Aliks has joined #angularjs
[03:50:35] *** aghiuru has quit IRC
[03:53:09] *** Aliks has quit IRC
[03:54:32] *** doppio|work has quit IRC
[03:55:13] *** buzzedword has joined #angularjs
[03:55:53] *** dimtruck is now known as zz_dimtruck
[03:56:05] *** zz_dimtruck is now known as dimtruck
[03:56:34] *** mischat has joined #angularjs
[03:57:07] *** wartdev has quit IRC
[03:57:49] *** aghiuru has joined #angularjs
[03:57:49] *** jdummy has joined #angularjs
[03:58:09] *** raijin has quit IRC
[03:58:19] *** raijin has joined #angularjs
[03:59:02] *** hswolff has quit IRC
[03:59:35] <jdummy> Anyone know of an uber-easy way to use Moustache style iteration instead of ng-repeat?
[03:59:41] *** buzzedword has quit IRC
[04:00:06] <jdummy> e.g. {{#items}} {{item.title}} {{/items}}
[04:00:37] *** dimtruck is now known as zz_dimtruck
[04:01:32] *** sssilver has joined #angularjs
[04:01:46] *** aghiuru has quit IRC
[04:02:07] *** bengillies has joined #angularjs
[04:03:39] *** panurge has quit IRC
[04:06:31] *** zz_dimtruck is now known as dimtruck
[04:07:43] *** bengillies has quit IRC
[04:07:47] <ycon_> Hi all, I want to pass a $stateparam to a html elemtn (its a logo from the page before it). Whats the best way to do it?
[04:10:36] <wafflejock> ycon_: where's the logo stored? do you have an ID for it you can pass along instead of the full URL and reconstruct the actual URL in the controller that handles the destination state
[04:10:57] *** p0k0 has joined #angularjs
[04:11:15] <ycon_> wafflejock: logo is a URL available as a directive on the page before it
[04:11:53] *** DrShoggoth has quit IRC
[04:12:56] <ycon_> I think its' just basic js I need- I need to tell the html how to find that element? Im doing: var store_logo = $stateParams.store_logo;
[04:12:58] <wafflejock> ycon_: not sure about passing full URLs in stateParams directly but if that doesn't work you could store the URL into a service (have the service function return an "id" or index of the new URL), problem is that only works assuming they went from the running app being on one page and going to the other (won't work for "deep linking" purposes to get to the destination page without anything previously happening)
[04:15:37] *** SevenZark7 has quit IRC
[04:18:10] *** wontoner has quit IRC
[04:18:51] *** aghiuru has joined #angularjs
[04:19:15] <ycon_> wafflejock: thanks. I've just go it to work for an id (which is passed to a $http get). But how to I get it to become a directive in HTML to be accessed?
[04:19:19] <jdummy> ycon_: base64 encode the logo url first?
[04:20:35] *** sbellina has joined #angularjs
[04:22:30] *** encryptd_fractal has joined #angularjs
[04:22:42] *** nanoz has quit IRC
[04:22:49] <ycon_> jdummy: Im not famililar with that. Is that done in this file? Or the file it came from?
[04:23:44] <jdummy> ycon_: it would be both, I guess... it's just a safe(r) way to pass the logo url in the stateParam url...
[04:23:48] <jdummy> atob() and btoa()
[04:23:50] *** aghiuru has quit IRC
[04:25:03] *** jr3 has joined #angularjs
[04:25:12] <jdummy> I'm not sure I entirely understand your question... but you could use btoa() on the logo url, then pass the result in the url of your app... then on the receiving end, decode it using atob()
[04:25:43] <jdummy> then just set that value as a scope property and throw it into your img tag
[04:26:07] <jdummy> ycon_: be aware of the danger of allowing the user to pass in that value though
[04:26:11] *** nilsi has quit IRC
[04:26:58] <jdummy> if you have the data, you should use wafflejock's suggestion
[04:27:16] *** buzzedword has joined #angularjs
[04:27:28] *** ome has quit IRC
[04:28:35] *** mischat has quit IRC
[04:29:09] *** encryptd_fractal has quit IRC
[04:29:48] *** graphettion has quit IRC
[04:30:22] *** aghiuru has joined #angularjs
[04:31:31] *** sylvanmist has quit IRC
[04:31:35] *** buzzedword has quit IRC
[04:31:37] *** bayousoft has joined #angularjs
[04:32:52] *** jhirley has quit IRC
[04:33:26] *** buzzedword has joined #angularjs
[04:33:45] *** LeBlaaan_ has quit IRC
[04:35:08] *** aghiuru has quit IRC
[04:36:11] *** bayousoft has quit IRC
[04:37:16] *** achantavy has joined #angularjs
[04:37:41] *** doginal has joined #angularjs
[04:37:50] *** heavyhorse has quit IRC
[04:38:16] *** buzzedword has quit IRC
[04:38:17] *** dudecancode has joined #angularjs
[04:38:51] <dudecancode> Hey all.
[04:38:52] *** ron_frown has quit IRC
[04:39:57] *** skcin7 has quit IRC
[04:40:48] *** doginal_ has joined #angularjs
[04:41:11] *** venkat_330 has joined #angularjs
[04:41:31] *** quakephil has quit IRC
[04:41:46] *** aghiuru has joined #angularjs
[04:42:15] *** doginal has quit IRC
[04:42:15] *** doginal_ is now known as doginal
[04:42:40] *** Aliks has joined #angularjs
[04:44:17] *** doxavore has quit IRC
[04:45:33] *** dudecancode has quit IRC
[04:45:52] *** Aliks has quit IRC
[04:46:32] *** aghiuru has quit IRC
[04:46:51] <ycon_> (forget lines 8 & 9- I'll remove them)
[04:46:58] *** mary5030 has joined #angularjs
[04:48:21] <jdummy> ycon_: hmmm... ng-bind-html-unsafe is deprecated, but why do you need pass html at all?
[04:48:28] <jdummy> I thought you were setting an img src
[04:48:50] <ycon_> jdummy: I am, that was just my basic understanding of doing it. Coudl you show me?
[04:49:17] <jdummy> ycon_: have you used angular's templating at all yet?
[04:49:34] <ycon_> yes a fair bit. Not sure why this has me stummped
[04:50:48] *** Aliks has joined #angularjs
[04:50:52] <jdummy> ycon_: are you getting some sort of error or something? I guess I don't understand the problem... <img src='{{store_logo}}'/> should work... but <img ng-src='{{store_logo}}'/> is recommended to avoid a 404 before angular has a chance to parse the {{store_logo}} variable
[04:51:53] *** mary5030 has quit IRC
[04:52:08] *** castlelore has joined #angularjs
[04:52:47] <ycon_> jdummy: I can't use {{store.logo}} as it's in a different controller to the one before. I'm doing a resolve
[04:53:06] *** jbarket has joined #angularjs
[04:53:13] *** aghiuru has joined #angularjs
[04:53:15] *** mven has joined #angularjs
[04:54:33] <jdummy> ycon_: aren't you passing the value for it in the URL?
[04:54:59] <ycon_> Nope, just passing the whole URL of the logo
[04:55:44] *** buzzedword has joined #angularjs
[04:55:57] <jdummy> ycon_: I'm thoroughly confused by your paste. Line 6 can't be what you want. Also, this is a service, not a controller
[04:56:05] *** s3shs_ has quit IRC
[04:56:07] <jdummy> Right?
[04:56:20] *** ron_frown has joined #angularjs
[04:56:31] <jdummy> $scope.store_logo = $stateParams.store_logo;
[04:56:44] <jdummy> then simply <img ng-src='{{store_logo}}'/>
[04:57:15] <jdummy> Line 6 is overwriting the entire scope object. Certainly there must be some errors throwing, no?
[04:57:18] *** jbarket has quit IRC
[04:57:32] *** Aliks has quit IRC
[04:57:56] *** aghiuru has quit IRC
[04:58:16] *** Aliks has joined #angularjs
[04:59:13] <ycon_> jdummy: sorry that was an old one. Here's what I'm trying, and the store_logo isn't arriving in my html.
[04:59:25] *** Aliks has quit IRC
[05:00:37] *** charuru has quit IRC
[05:00:49] <jdummy> ycon_: but where's your controller?
[05:01:00] *** Aliks has joined #angularjs
[05:01:09] <jdummy> ycon_: somewhere you need to be storing the data in the $scope object
[05:01:18] *** raijin has quit IRC
[05:02:19] *** buzzedword has quit IRC
[05:02:38] *** macabre has quit IRC
[05:04:17] *** spriz has quit IRC
[05:04:17] *** aghiuru has joined #angularjs
[05:04:30] *** raijin has joined #angularjs
[05:04:46] *** wonder95 has joined #angularjs
[05:04:51] *** Aliks has quit IRC
[05:05:29] *** nilsi has joined #angularjs
[05:05:50] *** fairuz has joined #angularjs
[05:05:59] *** RangerRick has quit IRC
[05:06:04] <jdummy> Sorry ycon_ , I can't help. It seems you're making many random changes without taking the time to understand what's wrong.
[05:06:06] *** jbarket has joined #angularjs
[05:07:03] *** spriz has joined #angularjs
[05:07:20] <jdummy> I recommend taking a step back and think about the overall goal. When you hit a problem during implementation, check for errors... test the data to ensure it's what you expect it to be, etc.
[05:08:24] *** test has joined #angularjs
[05:08:25] *** buzzedword has joined #angularjs
[05:08:49] *** test is now known as Guest86599
[05:09:20] *** aghiuru has quit IRC
[05:10:25] *** diegoaguilar has quit IRC
[05:10:34] *** nya_ has quit IRC
[05:10:57] *** nya_ has joined #angularjs
[05:11:55] <jdummy> In other words... it's kind of like saying "It doesn't work, can someone help?", without a specific problem.
[05:12:02] *** hefox has joined #angularjs
[05:12:24] *** speaking1ode has joined #angularjs
[05:13:05] *** Aliks has joined #angularjs
[05:13:09] *** RangerRick has joined #angularjs
[05:13:22] *** buzzedword has quit IRC
[05:14:26] *** ryanar has joined #angularjs
[05:15:10] *** aghiuru has joined #angularjs
[05:16:20] *** speakingcode has quit IRC
[05:17:38] <ycon_> jdummy: Understood. Thanks tho. My basic problem was that using $scope.store_logo = $stateParams.store_logo; wasn't arriving in my HTML. Just wanted to know where I was going wrong
[05:18:21] <jdummy> ycon_: Did you try console.log($stateParams.store_logo)
[05:18:23] <jdummy> ?
[05:19:08] *** jbarket has quit IRC
[05:19:14] <jdummy> It's probably not simply a string then... but an object. You *may* need to use $sce in this case... which is on the same trail as bind-unsafe
[05:20:06] *** aghiuru has quit IRC
[05:20:48] *** castlelore is now known as sylvanmist
[05:20:53] *** jdummy has quit IRC
[05:21:25] *** hefox has quit IRC
[05:22:34] *** iateadonut has joined #angularjs
[05:24:05] *** doginal has quit IRC
[05:24:15] *** bePolite has joined #angularjs
[05:24:16] *** bePolite has quit IRC
[05:24:16] *** bePolite has joined #angularjs
[05:25:57] *** mischat has joined #angularjs
[05:27:51] *** Aliks has quit IRC
[05:30:06] *** b0x has joined #angularjs
[05:30:06] *** b0x has joined #angularjs
[05:33:17] *** diegoaguilar has joined #angularjs
[05:34:46] *** Aliks has joined #angularjs
[05:36:10] *** tiagoboldt has quit IRC
[05:36:24] *** juddey has quit IRC
[05:36:41] *** aghiuru has joined #angularjs
[05:37:20] *** mocx has left #angularjs
[05:38:05] *** JackFruh has quit IRC
[05:40:54] *** heavyhorse has joined #angularjs
[05:41:38] *** aghiuru has quit IRC
[05:41:47] *** Aliks has quit IRC
[05:42:07] *** nya_ has quit IRC
[05:42:27] *** Sample has joined #angularjs
[05:42:33] *** nya_ has joined #angularjs
[05:43:06] *** sbellina has quit IRC
[05:44:53] *** sbellina has joined #angularjs
[05:45:13] *** crystalmaiden has quit IRC
[05:49:03] *** zeioth has quit IRC
[05:54:19] *** Sample has quit IRC
[05:55:53] *** dopesong has joined #angularjs
[05:56:35] *** ryanar has quit IRC
[05:57:41] *** sbellina has quit IRC
[05:58:08] *** jr3 has quit IRC
[05:58:32] *** aghiuru has joined #angularjs
[05:59:52] *** Sky[x] has joined #angularjs
[06:00:00] *** mischat has quit IRC
[06:00:47] *** dopesong has quit IRC
[06:02:53] *** siba has quit IRC
[06:03:10] *** aghiuru has quit IRC
[06:04:36] *** bengillies has joined #angularjs
[06:04:54] *** Burgerz has quit IRC
[06:06:06] *** k1ng4400 has joined #angularjs
[06:06:06] *** k1ng4400 has joined #angularjs
[06:06:07] *** k1ng440 has quit IRC
[06:07:01] *** baweaver has joined #angularjs
[06:07:43] *** Poeticode has quit IRC
[06:08:42] *** Dmitri has joined #angularjs
[06:09:06] *** aghiuru has joined #angularjs
[06:09:34] *** bengillies has quit IRC
[06:10:20] *** n00bdev has joined #angularjs
[06:12:59] *** dszmaj has quit IRC
[06:13:05] *** Dmitri has quit IRC
[06:13:56] *** aghiuru has quit IRC
[06:14:21] *** boneskull[away] has quit IRC
[06:14:55] *** thezanke has joined #angularjs
[06:15:17] *** selva_ has joined #angularjs
[06:15:48] <selva_> some body help to learn angular js
[06:20:43] *** aghiuru has joined #angularjs
[06:21:40] *** n00bdev has quit IRC
[06:22:28] *** boneskull has joined #angularjs
[06:23:14] *** stuartm has quit IRC
[06:23:19] *** stuartm_ has joined #angularjs
[06:24:53] *** Aliks has joined #angularjs
[06:25:09] *** codeitloadit has joined #angularjs
[06:25:20] *** aghiuru has quit IRC
[06:25:32] *** dcherman has joined #angularjs
[06:26:13] *** encryptd_fractal has joined #angularjs
[06:26:34] *** rchavik has quit IRC
[06:26:39] *** Aliks has quit IRC
[06:31:00] *** encryptd_fractal has quit IRC
[06:31:20] *** wonder95 has quit IRC
[06:31:22] *** codeitloadit has quit IRC
[06:31:41] *** sbellina has joined #angularjs
[06:32:03] *** hefox has joined #angularjs
[06:33:34] *** yes`r has joined #angularjs
[06:34:59] *** diegoaguilar has quit IRC
[06:36:26] *** Sample has joined #angularjs
[06:38:53] *** fscala has quit IRC
[06:40:09] *** fscala has joined #angularjs
[06:41:58] *** aghiuru has joined #angularjs
[06:45:54] *** baweaver has quit IRC
[06:46:39] *** Burgerz has joined #angularjs
[06:46:52] *** aghiuru has quit IRC
[06:48:46] *** Sample has quit IRC
[06:53:19] *** hefox has quit IRC
[06:53:43] *** fairuz has left #angularjs
[06:56:22] *** phrozensilver has quit IRC
[06:56:26] *** Ozd has joined #angularjs
[06:56:40] *** mischat has joined #angularjs
[06:57:15] *** selva_ has quit IRC
[06:57:56] *** Sample has joined #angularjs
[06:58:48] *** speakingcode has joined #angularjs
[06:58:53] *** davi has joined #angularjs
[07:01:23] *** speaking1ode has quit IRC
[07:02:48] *** aghiuru has joined #angularjs
[07:06:08] *** ron_frown has quit IRC
[07:06:09] *** bengillies has joined #angularjs
[07:06:44] *** joyalist has joined #angularjs
[07:07:20] *** aghiuru has quit IRC
[07:07:49] *** Aliks has joined #angularjs
[07:08:39] *** kuadrosx has quit IRC
[07:10:09] *** bengillies has quit IRC
[07:10:34] *** zeezey has joined #angularjs
[07:11:06] *** DavidDudson has joined #angularjs
[07:14:39] *** macabre has joined #angularjs
[07:14:50] *** boneskull has quit IRC
[07:14:55] *** rscata has joined #angularjs
[07:18:59] *** Voyage has joined #angularjs
[07:19:25] *** macabre has quit IRC
[07:22:46] *** buzzedword has joined #angularjs
[07:26:26] *** erol has joined #angularjs
[07:27:55] *** buzzedword has quit IRC
[07:28:46] *** mischat has quit IRC
[07:31:24] *** Aliks_ has joined #angularjs
[07:31:39] *** Voyage has quit IRC
[07:32:23] *** Voyage has joined #angularjs
[07:32:23] *** Voyage has joined #angularjs
[07:32:41] *** soee has joined #angularjs
[07:33:56] *** sixr420 has quit IRC
[07:34:43] *** erve has joined #angularjs
[07:35:08] *** Aliks has quit IRC
[07:36:07] *** jae has joined #angularjs
[07:36:20] *** sixr420 has joined #angularjs
[07:36:31] *** ziyadb has joined #angularjs
[07:36:44] *** GuiltyLemon is now known as Guiltylemon
[07:38:38] *** pimlu has joined #angularjs
[07:40:10] *** skcin7 has joined #angularjs
[07:41:32] *** siba has joined #angularjs
[07:41:35] *** sbellina has quit IRC
[07:41:54] *** buzzedword has joined #angularjs
[07:43:05] *** skcin7 has quit IRC
[07:43:38] *** punknroll has joined #angularjs
[07:43:39] *** nya__ has joined #angularjs
[07:44:12] *** nya_ has quit IRC
[07:44:30] *** skcin7 has joined #angularjs
[07:44:41] *** soee has quit IRC
[07:45:40] *** soee has joined #angularjs
[07:46:46] *** buzzedword has quit IRC
[07:47:08] *** skcin7 has quit IRC
[07:47:56] *** skcin7 has joined #angularjs
[07:48:25] *** aghiuru has joined #angularjs
[07:49:12] *** sbellina has joined #angularjs
[07:51:01] *** jstroem has joined #angularjs
[07:53:22] *** aghiuru has quit IRC
[07:54:27] *** yanivkalfa has joined #angularjs
[07:57:16] *** buzzedword has joined #angularjs
[07:57:49] *** hefox has joined #angularjs
[07:57:54] *** ycon_ has quit IRC
[07:59:56] *** aghiuru has joined #angularjs
[08:00:15] *** Sky[x] has quit IRC
[08:00:32] *** Sky[x] has joined #angularjs
[08:02:00] *** buzzedword has quit IRC
[08:04:04] *** ensyde has joined #angularjs
[08:04:09] <Voyage> when will v2 release?
[08:04:12] <Voyage> stable I mean
[08:04:46] *** aghiuru has quit IRC
[08:06:24] *** SpikeSpiegel has joined #angularjs
[08:07:53] *** bePolite has quit IRC
[08:09:06] *** yanivkalfa has quit IRC
[08:09:13] *** ensyde has quit IRC
[08:09:40] *** ensyde has joined #angularjs
[08:10:01] *** Debnet has joined #angularjs
[08:10:33] *** sqram has joined #angularjs
[08:14:50] *** raijin has quit IRC
[08:16:42] *** Voyage has quit IRC
[08:18:47] *** nikola_ has joined #angularjs
[08:19:24] *** icebox has joined #angularjs
[08:19:53] *** ybl has joined #angularjs
[08:20:18] *** brollypop has joined #angularjs
[08:20:46] *** jstroem has quit IRC
[08:21:24] *** jstroem has joined #angularjs
[08:21:32] *** dcherman has quit IRC
[08:21:55] *** pretag has joined #angularjs
[08:22:22] *** nikola_ has left #angularjs
[08:22:41] *** nya__ has quit IRC
[08:22:51] *** dan2k3k4 has joined #angularjs
[08:23:07] *** nya_ has joined #angularjs
[08:23:30] *** yanivkalfa has joined #angularjs
[08:25:52] *** tibus29 has joined #angularjs
[08:26:18] *** mischat has joined #angularjs
[08:26:18] *** jstroem has quit IRC
[08:26:23] *** Debnet`Work has joined #angularjs
[08:26:36] *** tibus29 has quit IRC
[08:26:51] *** Guiltylemon is now known as GuiltyLemon
[08:27:40] *** encryptd_fractal has joined #angularjs
[08:27:43] *** Debnet`Work has quit IRC
[08:27:54] *** buzzedword has joined #angularjs
[08:28:04] *** yanivkalfa has quit IRC
[08:29:32] *** Debnet has quit IRC
[08:31:18] *** Debnet has joined #angularjs
[08:31:55] *** encryptd_fractal has quit IRC
[08:32:56] *** buzzedword has quit IRC
[08:33:15] *** Aliks has joined #angularjs
[08:33:34] *** iraj has joined #angularjs
[08:33:34] *** buzzedword has joined #angularjs
[08:34:11] *** brollypop has quit IRC
[08:36:35] *** Aliks_ has quit IRC
[08:37:00] *** svycka has joined #angularjs
[08:37:15] *** leolrrj-alt has joined #angularjs
[08:38:46] *** buzzedword has quit IRC
[08:39:42] *** cornerma1 has joined #angularjs
[08:40:07] *** sssilver has quit IRC
[08:42:22] *** ilmgb has joined #angularjs
[08:42:53] *** cornerman has quit IRC
[08:42:59] *** plekplek has joined #angularjs
[08:43:02] *** cornerma1 is now known as cornerman
[08:43:02] *** ilmgb has quit IRC
[08:43:21] *** nya_ has quit IRC
[08:43:23] *** ilmgb has joined #angularjs
[08:43:41] *** nya_ has joined #angularjs
[08:45:28] *** joshontheweb has quit IRC
[08:45:32] *** aghiuru has joined #angularjs
[08:47:16] *** riz has joined #angularjs
[08:47:48] *** nikola_ has joined #angularjs
[08:47:49] *** riz has quit IRC
[08:48:18] *** nikola_ has left #angularjs
[08:48:53] *** brollypop has joined #angularjs
[08:50:22] *** aghiuru has quit IRC
[08:52:06] *** yky_ has joined #angularjs
[08:53:41] <ybl> How do I post url-encoded value and a json data in the same request?
[08:54:39] <ybl> I used $.params for urlencoded before, and a JSON object for the body, but how do I use both ?
[08:54:58] *** tarnus has quit IRC
[08:55:17] *** Aliks has quit IRC
[08:58:48] *** Aliks has joined #angularjs
[08:59:07] *** dutis has joined #angularjs
[08:59:21] *** dutis has quit IRC
[08:59:49] *** mischat has quit IRC
[09:00:35] *** Sky[x] has quit IRC
[09:02:14] <ybl> I want to make a PATCH request to /api/item/update?item_id=1 with the updated item in the body as JSON
[09:03:36] *** Sky[x] has joined #angularjs
[09:05:12] *** fixl has joined #angularjs
[09:06:37] *** jstroem has joined #angularjs
[09:07:19] *** bengillies has joined #angularjs
[09:07:40] *** Zamerick has joined #angularjs
[09:07:50] *** poacher2k has joined #angularjs
[09:09:11] *** joshontheweb has joined #angularjs
[09:09:16] *** Aliks has quit IRC
[09:10:18] *** illume has joined #angularjs
[09:13:26] *** kk_drop has joined #angularjs
[09:15:31] *** Aliks has joined #angularjs
[09:17:35] *** Sample has quit IRC
[09:18:22] *** nya_ has quit IRC
[09:18:32] *** nya_ has joined #angularjs
[09:19:11] *** jae has quit IRC
[09:19:41] *** phuong has joined #angularjs
[09:20:04] *** Dmitri has joined #angularjs
[09:21:06] *** AndrewIsh has joined #angularjs
[09:24:19] *** iceball has joined #angularjs
[09:25:38] *** mosulica has joined #angularjs
[09:27:17] *** tangorri has joined #angularjs
[09:27:25] *** jae has joined #angularjs
[09:28:41] *** spriz has quit IRC
[09:28:50] *** qdk has quit IRC
[09:28:52] *** one_zero has joined #angularjs
[09:29:16] *** spriz has joined #angularjs
[09:31:07] *** aghiuru has joined #angularjs
[09:31:41] *** spriz has quit IRC
[09:32:07] *** bcSquared- has joined #angularjs
[09:32:16] *** spriz has joined #angularjs
[09:32:22] *** BahamutWC|Laptop has quit IRC
[09:32:55] *** Voyage has joined #angularjs
[09:33:14] <Voyage> what new features are comming in angular? where can I know? how tough would be migration?
[09:33:22] <Voyage> from v1 to v2
[09:33:32] *** vrockai has joined #angularjs
[09:33:35] *** Aliks has quit IRC
[09:34:18] *** bcSquared has quit IRC
[09:34:41] *** spriz has quit IRC
[09:34:55] *** buzzedword has joined #angularjs
[09:35:16] *** spriz has joined #angularjs
[09:35:34] *** VeeWee has joined #angularjs
[09:35:58] *** aghiuru has quit IRC
[09:36:40] <icebox> Voyage: googling there are other resources about migration and diffs
[09:37:40] *** spriz has quit IRC
[09:38:16] *** spriz has joined #angularjs
[09:38:28] <Voyage> when is the confirm release date?
[09:38:46] *** guilbep has joined #angularjs
[09:39:27] <Voyage> icebox, I didnt got the exact date anywhere
[09:39:52] *** buzzedword has quit IRC
[09:39:59] *** brollypop has quit IRC
[09:40:10] *** hefox has quit IRC
[09:40:41] *** spriz has quit IRC
[09:40:46] <icebox> Voyage: you know, "when it is ready" is the mantra for open source projects about release dates
[09:40:56] *** erms has joined #angularjs
[09:41:17] *** spriz has joined #angularjs
[09:41:27] <Voyage> should I start my project in v2 or v1?
[09:41:37] <Voyage> if i want to start today
[09:42:41] <Voyage> and briefly speaking. in a nutshell. (without googling). what do you think, how much work and to be done for migration?
[09:43:41] *** spriz has quit IRC
[09:43:44] *** GuiltyLemon is now known as Guiltylemon
[09:43:45] *** Guiltylemon is now known as GuiltyLemon
[09:44:17] *** spriz has joined #angularjs
[09:44:19] *** GuiltyLemon is now known as Guiltylemon
[09:44:45] *** luiz_lha has joined #angularjs
[09:45:09] *** luiz_lha is now known as Guest64716
[09:45:17] <icebox> Voyage: about the migration, it depends how you wrote the code. if you followed best practices and you use the upgrade approach suggested in the link above, the migration should be "smooth".
[09:45:30] * squeakytoy2 enter frustration mode
[09:45:53] *** TyrfingMjolnir has joined #angularjs
[09:45:57] <Voyage> thanks'
[09:46:09] *** brollypop has joined #angularjs
[09:46:41] *** spriz has quit IRC
[09:46:48] <icebox> Voyage: about v1 or v2, it depends on team skills, project requirements and so on... don't forget v2 is still in beta
[09:47:13] *** ilhami has joined #angularjs
[09:47:17] *** spriz has joined #angularjs
[09:47:36] <icebox> Voyage: in my humble opinion, I would start with 1.5, following strictly best practices
[09:47:47] <ilhami> hey
[09:47:57] *** TyrfingMjolnir_ has joined #angularjs
[09:48:04] <ilhami> should I use a factory for a crud application? :)
[09:48:30] <squeakytoy2> for some unexplained reason, my controller is invoked 2x, but its only declared 1x in the code with ng-controller.. amazing.
[09:48:36] <ilhami> this
[09:48:39] *** hefox has joined #angularjs
[09:49:11] <ilhami> what's wrong with factory? :D
[09:49:14] *** BigBangUDR has joined #angularjs
[09:49:34] *** cotko has joined #angularjs
[09:49:41] *** spriz has quit IRC
[09:50:17] *** spriz has joined #angularjs
[09:50:36] *** TyrfingMjolnir has quit IRC
[09:50:36] *** TyrfingMjolnir_ is now known as TyrfingMjolnir
[09:51:07] <ilhami> oh.. resource is a factory
[09:51:10] *** Guiltylemon is now known as GuiltyLemon
[09:51:20] *** GuiltyLemon is now known as Guiltylemon
[09:51:36] <squeakytoy2> whats the best way to troubleshoot why a controller is invoked twice?
[09:51:48] *** dopesong has joined #angularjs
[09:51:49] <squeakytoy2> looking at the callstack, i just see lots of angular internal code
[09:52:24] <ilhami> squeakytoy2, dude
[09:52:30] *** cotko has quit IRC
[09:52:40] *** spriz has quit IRC
[09:52:54] *** BigBangUDR has quit IRC
[09:53:08] *** B0ltzy has joined #angularjs
[09:53:10] *** wartdev has joined #angularjs
[09:53:17] *** BigBangUDR has joined #angularjs
[09:53:17] *** spriz has joined #angularjs
[09:53:19] *** cotko has joined #angularjs
[09:54:32] *** Guiltylemon is now known as GuiltyLemon
[09:54:50] *** B0ltzy has quit IRC
[09:55:11] *** sbellina has quit IRC
[09:55:33] *** senayar has joined #angularjs
[09:55:34] *** senayar has joined #angularjs
[09:55:40] *** spriz has quit IRC
[09:55:52] <squeakytoy2> ilhami, yea?
[09:56:18] *** spriz has joined #angularjs
[09:56:21] <ilhami> show some code ?
[09:57:05] *** Aliks has joined #angularjs
[09:57:26] *** B0ltzy has joined #angularjs
[09:58:41] *** spriz has quit IRC
[09:59:03] *** phuong has quit IRC
[09:59:18] *** spriz has joined #angularjs
[10:00:00] *** BeerBuddy has joined #angularjs
[10:00:16] *** marthinal has joined #angularjs
[10:01:33] *** ome has joined #angularjs
[10:01:41] *** spriz has quit IRC
[10:02:18] *** spriz has joined #angularjs
[10:03:42] <squeakytoy2> i had a typo in an ng-include, and suddenly angular starts loading each of my controllers twice
[10:04:11] *** pimlu has quit IRC
[10:04:31] *** yky_ has quit IRC
[10:05:27] *** qdk has joined #angularjs
[10:06:03] *** mischat has joined #angularjs
[10:06:15] *** jenny_ has joined #angularjs
[10:06:37] <Voyage> icebox, hm
[10:06:38] <squeakytoy2> thank god i am a defensive coder
[10:07:03] <ilhami> I am offensive :D
[10:07:04] *** jenny_ has quit IRC
[10:07:19] <Voyage> icebox, why wouldnt you start with v2 beta and easily migrate to stable (which is expected to be released in few weeks/months
[10:07:53] *** Aliks has quit IRC
[10:08:31] *** nachtwandler has joined #angularjs
[10:09:31] <icebox> Voyage, because, for instance, there are no ui libs ready for angular2 (Material for Angular2 is not ready)... then imagine dozens of programmers working on a project with a beta release... usually a project has a due date :)
[10:10:03] <Voyage> hm
[10:10:04] <Voyage> got it
[10:10:08] <Voyage> thanks!!
[10:10:28] *** Aliks has joined #angularjs
[10:10:40] *** VSP has joined #angularjs
[10:10:47] <VSP> hi there,
[10:11:18] <VSP> I would like to know if we can use Angular JS 1.x for a new application that will be built starting this month?
[10:11:34] <ilhami> I am using 1.4.8
[10:11:37] <ilhami> since it's stable
[10:11:43] *** B0ltzy has quit IRC
[10:12:04] <VSP> I need to propose this as a framework for an application being built from scratch
[10:12:35] <VSP> it should not call for an upgrade when Angular 2.0 is out in production
[10:12:36] *** fpfitzke has joined #angularjs
[10:12:57] *** maryl has joined #angularjs
[10:12:59] <squeakytoy2> VSP, whats the life span of your new application?
[10:13:06] *** BigBangUDR has quit IRC
[10:13:11] *** ahaeger has joined #angularjs
[10:13:22] <squeakytoy2> VSP, (until framework refactor)
[10:13:24] <ilhami> will it be difficult to mirgrate from 1.4.8 to 2.0?
[10:13:31] <squeakytoy2> i would say yes
[10:13:40] <ilhami> why? I heard ngUpgrade would make it easier
[10:13:56] <squeakytoy2> because one is in javascript, other in ts?
[10:14:06] <ilhami> ts?
[10:14:13] <squeakytoy2> TypeScript
[10:14:19] <ilhami> why did they do that?
[10:14:35] <squeakytoy2> because TS is more flexible than JS
[10:14:43] <squeakytoy2> feature-rich
[10:14:46] *** startupality has joined #angularjs
[10:14:50] <VSP> but the question is that can we build it so that it does not require an upgrade
[10:15:05] <VSP> I mean run it for other 5 years assuming everything else is stable
[10:15:20] <ilhami> 1.4.8 will be supported for how many more years?
[10:15:24] <squeakytoy2> VSP, Angular 1.x will still be supported for a couple of years
[10:15:27] <VSP> Angular JS 2.0 also has support for Javascript
[10:15:33] *** yanivkalfa has joined #angularjs
[10:15:51] <squeakytoy2> VSP, are you saying Angular 2 can be written in plain javascript?
[10:15:55] <ybl> How do I post url-encoded value and a json data in the same request?
[10:16:05] <ybl> I want to make a PATCH request to /api/item/update?item_id=1 with the updated item in the body as JSON
[10:16:22] <VSP> yes, I believe, the documentation says so
[10:16:38] <squeakytoy2> VSP, can you link to that?
[10:16:45] <squeakytoy2> VSP, because i have only seen typescript code
[10:16:58] *** aghiuru has joined #angularjs
[10:17:26] *** msilva has joined #angularjs
[10:17:28] <squeakytoy2> VSP, which section are you taling about?
[10:17:36] <ilhami> Although we're getting started in TypeScript, you can also write Angular 2 apps in JavaScript and Dart by selecting either of those languages from the combo-box in the banner.
[10:18:00] <ilhami> Good. :P
[10:18:00] <squeakytoy2> VSP, again, i only see .ts file extensions
[10:18:06] *** Dmitri has quit IRC
[10:18:21] <ilhami> dude read the box on the page
[10:18:31] *** dromar56 has joined #angularjs
[10:18:32] <squeakytoy2> which one?
[10:18:42] <ilhami> do they look like .ts extensions? :D
[10:18:49] <squeakytoy2> oh that
[10:18:54] *** spriz has quit IRC
[10:19:00] <ilhami> Dart is also supported.
[10:19:07] *** dopesong has quit IRC
[10:19:19] *** spriz has joined #angularjs
[10:19:33] <squeakytoy2> ok, i didnt see that
[10:19:48] <squeakytoy2> angular 2 for JS looks like its a lot of boilerplate, hence why ts probably exists
[10:19:49] *** soee_ has joined #angularjs
[10:20:49] *** one_zero has quit IRC
[10:21:15] <VSP> squeakytoy2, the link I put, says that Angular 2.0 apps can be written in JS and Dart
[10:21:16] <VSP> 5 min quick start
[10:21:16] <VSP> on the left navigation panel click on 5 min Qucikstart
[10:21:34] *** aghiuru has quit IRC
[10:21:38] <squeakytoy2> yea, thanks
[10:21:39] <squeakytoy2> saw it
[10:22:53] *** spriz has quit IRC
[10:23:19] *** spriz has joined #angularjs
[10:23:35] *** soee has quit IRC
[10:23:55] *** drptbl has joined #angularjs
[10:24:04] *** rickmak_ has quit IRC
[10:24:07] <VSP> so my dilemma is that can we build an application today with 1.x and expect it to run without an upgrade for 2 more years
[10:24:31] *** DavidDudson has quit IRC
[10:24:31] <VSP> I am not seeing very good alternatives to Angular either
[10:24:50] *** tuskkk___ has joined #angularjs
[10:25:37] <VSP> there is knockout, but supports MVVM only
[10:25:37] <VSP> Aurelia also supports only MVVM I believe
[10:26:08] <VSP> Angular has become so popular that other frameworks did not have large footprint
[10:26:53] *** spriz has quit IRC
[10:27:10] <ilhami> there are a lot of frameworks
[10:27:12] <ilhami> Meteor
[10:27:15] <ilhami> e.g.
[10:27:16] *** hefox has quit IRC
[10:27:19] *** spriz has joined #angularjs
[10:27:21] <ilhami> Ember
[10:27:58] *** yanivkalfa has quit IRC
[10:28:56] *** B0ltzy has joined #angularjs
[10:29:03] *** zeezey has quit IRC
[10:29:46] <stuartm_> ts file extensions? Umm, that's not going to be confusing given that the ts extension is already registered and used for MPEG transport stream video files
[10:30:02] <ilhami> lulz
[10:30:53] *** spriz has quit IRC
[10:31:19] *** spriz has joined #angularjs
[10:32:50] *** rickmak_ has joined #angularjs
[10:32:55] *** yky_ has joined #angularjs
[10:33:02] *** Cokee has joined #angularjs
[10:33:26] *** Dmitri has joined #angularjs
[10:33:52] *** spriz has quit IRC
[10:34:20] *** spriz has joined #angularjs
[10:34:41] *** sd_ has joined #angularjs
[10:34:43] <sd_> hi
[10:34:53] <stuartm_> well, that's MS for you ... ignoring convention once again - I wonder what windows does when you try to open a .ts file, does it open a video player or a text editor?
[10:35:05] *** sd_ is now known as Guest91032
[10:35:40] *** buzzedword has joined #angularjs
[10:35:41] *** ensyde has quit IRC
[10:35:48] *** spriz is now known as eax
[10:36:18] *** eax is now known as Guest62030
[10:36:28] *** Guest62030 is now known as spriz
[10:36:35] *** mischat has quit IRC
[10:36:59] *** spriz is now known as baefjaes
[10:37:08] *** baefjaes is now known as spriz
[10:38:31] *** startupality has quit IRC
[10:38:37] *** spriz is now known as hulaboy
[10:38:39] *** VSP has quit IRC
[10:38:40] *** hulaboy is now known as spriz
[10:39:32] * ybl still waiting for an answer
[10:40:31] <ilhami> stuartm_, Windows is a no go. :P
[10:41:33] *** jtimon has joined #angularjs
[10:41:38] *** buzzedword has quit IRC
[10:41:50] <stuartm_> I hear some people still use it
[10:42:08] *** sbasso has joined #angularjs
[10:42:38] *** bbankes has joined #angularjs
[10:44:36] *** Aliks_ has joined #angularjs
[10:44:56] *** devians has quit IRC
[10:45:14] *** yanivkalfa has joined #angularjs
[10:45:28] <ilhami> lol
[10:45:35] <ilhami> most of the world uses it
[10:45:50] *** startupality has joined #angularjs
[10:45:57] *** dopesong has joined #angularjs
[10:46:14] *** Anatoli_k has joined #angularjs
[10:47:35] *** Aliks has quit IRC
[10:48:11] *** startupality has quit IRC
[10:48:15] *** kent_ has joined #angularjs
[10:50:17] *** dopesong has quit IRC
[10:50:36] *** kent_ has quit IRC
[10:50:39] *** Aliks_ has quit IRC
[10:51:40] *** schneider has joined #angularjs
[10:51:45] *** yanivkalfa has quit IRC
[10:51:51] *** ThuyNguyen has joined #angularjs
[10:52:35] *** BeerBuddy has quit IRC
[10:55:36] *** tarnus has joined #angularjs
[10:55:39] *** codeman has joined #angularjs
[10:56:45] *** bePolite has joined #angularjs
[10:57:33] *** marr has joined #angularjs
[10:58:01] *** bePolite has joined #angularjs
[10:58:48] *** fpfitzke has quit IRC
[10:59:04] *** SpikeSpiegel has left #angularjs
[10:59:04] *** SpikeSpiegel has joined #angularjs
[10:59:23] *** Bomber4Chats_ has quit IRC
[10:59:33] *** waverider has joined #angularjs
[11:00:30] *** tarnus has quit IRC
[11:02:04] *** dopesong has joined #angularjs
[11:02:19] *** aghiuru has joined #angularjs
[11:02:31] *** Bomber4Chats_ has joined #angularjs
[11:03:21] *** lnrdo has joined #angularjs
[11:04:08] *** benvantende has joined #angularjs
[11:07:10] *** aghiuru has quit IRC
[11:08:00] *** erol has quit IRC
[11:08:14] *** rickmak_ has quit IRC
[11:08:17] *** bePolite has quit IRC
[11:10:32] *** erol has joined #angularjs
[11:10:58] *** speeddragon has joined #angularjs
[11:11:11] *** jlebrech has joined #angularjs
[11:11:55] *** Bomber4Chats_ has quit IRC
[11:14:57] *** rickmak_ has joined #angularjs
[11:15:11] *** Cokee has quit IRC
[11:16:14] *** calmbird has joined #angularjs
[11:18:49] *** buzzedword has joined #angularjs
[11:24:14] *** step1step2 has quit IRC
[11:24:38] *** pimpin has joined #angularjs
[11:26:28] *** buzzedword has quit IRC
[11:27:36] *** Bloomer has quit IRC
[11:30:09] *** Cokee has joined #angularjs
[11:30:11] *** ThuyNguyen has quit IRC
[11:30:59] *** GuiltyLemon is now known as Guiltylemon
[11:31:10] *** mischat has joined #angularjs
[11:31:38] *** jbarket has joined #angularjs
[11:31:38] *** lnrdo has quit IRC
[11:31:58] *** lnrdo has joined #angularjs
[11:32:10] *** jae has quit IRC
[11:32:19] *** BahamutWC|Laptop has joined #angularjs
[11:33:04] *** devians has joined #angularjs
[11:33:51] *** jae has joined #angularjs
[11:34:13] *** BahamutWC|Laptop has joined #angularjs
[11:34:25] *** BahamutWC|Laptop has quit IRC
[11:37:09] *** BahamutWC|Laptop has joined #angularjs
[11:38:07] *** BahamutWC|Laptop has quit IRC
[11:38:17] *** Guiltylemon is now known as GuiltyLemon
[11:38:27] *** jenelizabeth has quit IRC
[11:38:30] *** GuiltyLemon is now known as Guiltylemon
[11:38:32] *** b0x has quit IRC
[11:39:49] *** BahamutWC|Laptop has joined #angularjs
[11:40:01] *** jenelizabeth__ has joined #angularjs
[11:40:15] *** step1step2 has joined #angularjs
[11:40:41] *** devians has quit IRC
[11:40:42] *** jenelizabeth__ has quit IRC
[11:40:50] *** BahamutWC|Laptop has joined #angularjs
[11:41:02] *** jenelizabeth_ has joined #angularjs
[11:41:48] *** BahamutWC|Laptop has quit IRC
[11:42:59] *** yanivkalfa has joined #angularjs
[11:43:27] *** nilsi has quit IRC
[11:43:27] *** raijin has joined #angularjs
[11:44:04] *** BeerBuddy has joined #angularjs
[11:44:22] *** pimpin has quit IRC
[11:44:28] *** heavyhorse has quit IRC
[11:45:23] *** BahamutWC|Laptop has joined #angularjs
[11:45:28] *** pimpin has joined #angularjs
[11:45:36] *** BahamutWC|Laptop has quit IRC
[11:46:10] *** buzzedword has joined #angularjs
[11:46:38] *** bengillies has quit IRC
[11:47:03] *** bengillies has joined #angularjs
[11:47:28] *** jae is now known as Jae
[11:47:44] *** aniruddh has joined #angularjs
[11:48:15] *** BeerBuddy has quit IRC
[11:48:18] <aniruddh> Hello
[11:48:51] <aniruddh> Is there any example for angular js crud application with zend framework 2.0 with ACL ?
[11:49:41] *** Foad_NH has joined #angularjs
[11:49:55] *** BeerBuddy has joined #angularjs
[11:50:26] *** jbarket has quit IRC
[11:50:40] *** solars has joined #angularjs
[11:50:56] <Foad_NH> Hi, I have a question, I have an $http.get(..) request, the request returns 200 status, but angular catch it in error function, not success. Why?
[11:51:05] *** ilmgb has quit IRC
[11:51:10] *** buzzedword has quit IRC
[11:51:12] *** BeerBuddy has quit IRC
[11:51:18] *** Aliks has joined #angularjs
[11:51:35] *** startupality has joined #angularjs
[11:52:23] *** ilmgb has joined #angularjs
[11:53:09] *** ryanar has joined #angularjs
[11:53:10] *** leolrrj-alt has joined #angularjs
[11:53:30] *** startupality has quit IRC
[11:53:36] *** devians has joined #angularjs
[11:54:02] <ilhami> Foad_NH, please show some code.
[11:55:35] *** Aliks has quit IRC
[11:55:57] *** buzzedword has joined #angularjs
[11:56:45] *** elyssonmr has joined #angularjs
[11:56:51] *** yky_ has quit IRC
[11:57:41] *** ryanar has quit IRC
[11:59:25] *** yanivkalfa has quit IRC
[12:00:00] *** mischat has quit IRC
[12:00:32] *** alam has joined #angularjs
[12:00:41] *** phrozensilver has joined #angularjs
[12:01:48] *** Sky[x] has quit IRC
[12:02:19] *** Sky[x] has joined #angularjs
[12:02:38] *** mischat has joined #angularjs
[12:02:55] *** Dmitri has quit IRC
[12:03:45] *** leolrrj-alt is now known as leolrrj_
[12:03:59] *** B0ltzy has quit IRC
[12:04:11] *** buzzedword has quit IRC
[12:05:11] *** elperdut_ has joined #angularjs
[12:05:41] *** Magik6k has joined #angularjs
[12:06:39] *** Magik6k has joined #angularjs
[12:06:56] *** phrozensilver has quit IRC
[12:07:39] *** Schalla has quit IRC
[12:09:45] *** heavyhorse has joined #angularjs
[12:10:54] *** fees has joined #angularjs
[12:11:05] *** erol has quit IRC
[12:11:19] *** pimpin has quit IRC
[12:13:56] *** heavyhorse has quit IRC
[12:14:03] *** aghiuru has joined #angularjs
[12:14:54] *** aniruddh has quit IRC
[12:18:15] *** fpfitzke has joined #angularjs
[12:18:18] *** Guiltylemon is now known as GuiltyLemon
[12:18:39] *** jlebrech has quit IRC
[12:18:52] *** bengilli_ has joined #angularjs
[12:19:22] *** aghiuru has quit IRC
[12:20:22] *** plutoniix has quit IRC
[12:20:56] *** jstroem has quit IRC
[12:21:38] *** jlebrech_ has joined #angularjs
[12:21:43] *** bengillies has quit IRC
[12:21:58] *** jstroem has joined #angularjs
[12:22:25] *** speeddragon has quit IRC
[12:22:49] *** alam has quit IRC
[12:23:08] *** erol has joined #angularjs
[12:24:26] *** speeddragon has joined #angularjs
[12:25:40] *** dimtruck is now known as zz_dimtruck
[12:28:16] *** dopesong has quit IRC
[12:29:30] *** pimpin has joined #angularjs
[12:29:52] *** fpfitzke has quit IRC
[12:30:52] *** mellernoia has joined #angularjs
[12:31:21] *** taspat has joined #angularjs
[12:32:05] *** jstroem has quit IRC
[12:32:26] *** speakingcode has quit IRC
[12:32:57] <taspat> hi, I want to change dynamically the datepicker language. When page loads, datepicker correctly applied the locale. But then I want to do $locale.id = 'en-us'; for example. This does not change the datepicker language to english
[12:33:05] <taspat> How can approach this and make it work?
[12:33:07] *** Alex_ has joined #angularjs
[12:33:10] *** jstroem has joined #angularjs
[12:33:33] *** Alex_ has quit IRC
[12:34:54] *** schneider has quit IRC
[12:35:29] *** ahaeger has quit IRC
[12:36:04] <six> okay, I'm being an idiot. I'm using inline array annotation to define a controller. How do I pass a ui-router resolve object to it?
[12:37:14] *** BeerBuddy has joined #angularjs
[12:37:38] *** jonno11 has joined #angularjs
[12:37:54] *** soee_ has quit IRC
[12:38:26] *** Cokee has quit IRC
[12:38:45] *** ahaeger has joined #angularjs
[12:39:12] <six> okay I was being an idiot. Nevermind. :)
[12:40:37] *** angularjs824 has joined #angularjs
[12:41:08] <angularjs824> Hello
[12:41:42] *** devians has quit IRC
[12:42:09] *** Debnet has quit IRC
[12:42:21] *** jonno11_ has joined #angularjs
[12:42:25] *** tiagoboldt has joined #angularjs
[12:42:47] *** SevenZark7 has joined #angularjs
[12:42:49] *** moop has left #angularjs
[12:42:54] *** jonno11_ has quit IRC
[12:43:19] *** deeb has joined #angularjs
[12:43:20] *** jonno11_ has joined #angularjs
[12:44:15] *** tangorri has quit IRC
[12:44:19] <six> taspat: I'd start by making sure the datepicker actually supports dynamically changing the language
[12:44:22] *** bradjones has joined #angularjs
[12:44:23] *** bradjones has joined #angularjs
[12:44:44] *** jonno11 has quit IRC
[12:45:15] *** jonno11__ has joined #angularjs
[12:45:42] *** angularjs824 has quit IRC
[12:46:12] *** soee has joined #angularjs
[12:46:36] *** quit has joined #angularjs
[12:46:43] *** soee has quit IRC
[12:47:22] *** quit has quit IRC
[12:47:46] *** Dmitri has joined #angularjs
[12:48:03] *** jonno11_ has quit IRC
[12:48:35] *** dan2k3k4 has quit IRC
[12:48:37] *** soee has joined #angularjs
[12:49:28] *** B0ltzy has joined #angularjs
[12:49:32] *** jenelizabeth_ has quit IRC
[12:49:33] *** joyalist has quit IRC
[12:49:58] *** jenelizabeth_ has joined #angularjs
[12:50:26] *** k_ has joined #angularjs
[12:51:18] *** hswolff has joined #angularjs
[12:51:33] *** fpfitzke has joined #angularjs
[12:51:38] *** illume has quit IRC
[12:52:43] *** erol has quit IRC
[12:54:02] <kschlesselmann> Hi. I'd like to create an angular2 typescript component that draws a chart. Anyone a suggestion what libraries I should use? I'm used to Chart.js but right now I got no clue how I should integrate it in my angular2 app
[12:54:08] *** bengilli_ has quit IRC
[12:54:28] *** Cokee has joined #angularjs
[12:54:35] *** pretag has quit IRC
[12:54:35] *** bengillies has joined #angularjs
[12:55:52] *** Voyage has quit IRC
[12:56:09] *** coaster has joined #angularjs
[12:56:27] *** fscala has quit IRC
[12:56:52] *** tarnus has joined #angularjs
[12:57:00] *** odin_ has quit IRC
[12:57:27] *** pretag has joined #angularjs
[12:57:42] *** fscala has joined #angularjs
[12:58:01] <taspat> six im searching on the web
[12:58:02] *** aghiuru has joined #angularjs
[12:58:07] <taspat> hope I can do that
[12:58:07] *** ngbot has joined #angularjs
[12:58:08]
<ngbot> [angular.js] petebacondarwin pushed 1 new commit to master: http://git.io/vu8AZ
[12:58:08] <ngbot> angular.js/master 3c5827b Konstantin Ulitin: docs(loader): fix type in `@return` tag for `angular.module()`...
[12:58:08] *** ngbot has left #angularjs
[12:58:16] *** ngbot has joined #angularjs
[12:58:17]
<ngbot> [angular.js] petebacondarwin pushed 1 new commit to v1.4.x: http://git.io/vu8An
[12:58:17] <ngbot> angular.js/v1.4.x b8773a7 Konstantin Ulitin: docs(loader): fix type in `@return` tag for `angular.module()`...
[12:58:17] *** ngbot has left #angularjs
[12:58:25] *** SpikeSpiegel has left #angularjs
[12:58:26] *** SpikeSpiegel has joined #angularjs
[12:58:39] *** Anatoli_k has quit IRC
[12:58:42] *** snewpy has quit IRC
[12:59:10] *** rickmak_ has quit IRC
[12:59:52] *** hswolff has quit IRC
[13:00:43] *** wartdev has quit IRC
[13:01:15] *** tarnus has quit IRC
[13:01:46] *** fixl has quit IRC
[13:02:06] *** ahaeger has quit IRC
[13:02:08] *** fixl has joined #angularjs
[13:02:34] *** p0k0 has quit IRC
[13:02:41] *** hswolff has joined #angularjs
[13:02:42] *** fixl has quit IRC
[13:03:57] *** buzzedword has joined #angularjs
[13:04:24] *** zz_dimtruck is now known as dimtruck
[13:05:19] *** marthinal has quit IRC
[13:05:20] <k_> help
[13:05:22] *** hswolff has quit IRC
[13:05:35] *** erol has joined #angularjs
[13:06:47] *** svycka has quit IRC
[13:07:07] <ilhami> with?
[13:08:04] *** buzzedword has quit IRC
[13:08:48] *** dan2k3k4 has joined #angularjs
[13:09:24] *** hdeshev has joined #angularjs
[13:09:28] *** hswolff has joined #angularjs
[13:09:37] *** ngbot has joined #angularjs
[13:09:37]
<ngbot> [angular.js] petebacondarwin pushed 1 new commit to master: http://git.io/vu8h2
[13:09:37] <ngbot> angular.js/master b2b896f Andy Patterson: test(booleanAttrsSpec): add unit test for IE11 URL parsing failure...
[13:09:37] *** ngbot has left #angularjs
[13:11:32] *** mischat has quit IRC
[13:11:49] *** Claus has joined #angularjs
[13:13:00] *** Claus has left #angularjs
[13:14:05] *** raijin has quit IRC
[13:15:55] *** dimtruck is now known as zz_dimtruck
[13:16:59] *** schneider has joined #angularjs
[13:17:15] *** odin_ has joined #angularjs
[13:18:06] *** jonno11___ has joined #angularjs
[13:18:42] *** jonno11___ has joined #angularjs
[13:18:45] *** dopesong has joined #angularjs
[13:18:57] *** fpfitzke has quit IRC
[13:19:44] *** kam270 has quit IRC
[13:19:56] *** jonno11__ has quit IRC
[13:21:52] *** tiagoboldt has quit IRC
[13:22:17] *** lnrdo has quit IRC
[13:22:26] *** ngbot has joined #angularjs
[13:22:26]
<ngbot> [angular.js] petebacondarwin pushed 1 new commit to v1.4.x: http://git.io/vu4fr
[13:22:26] <ngbot> angular.js/v1.4.x 1f8431b Andy Patterson: test(booleanAttrsSpec): add unit test for IE11 URL parsing failure...
[13:22:26] *** ngbot has left #angularjs
[13:22:47] *** lnrdo has joined #angularjs
[13:23:04] *** dopesong has quit IRC
[13:23:14] *** jonno11___ has quit IRC
[13:23:32] *** jonno11___ has joined #angularjs
[13:25:09] *** dopesong has joined #angularjs
[13:26:42] *** Dev0n_ is now known as Dev0n
[13:28:14] *** B0ltzy has quit IRC
[13:28:42] *** jonno11____ has joined #angularjs
[13:28:45] *** jonno11___ has quit IRC
[13:29:29] *** jonno11____ has quit IRC
[13:29:55] *** jonno11____ has joined #angularjs
[13:30:10] *** fpfitzke has joined #angularjs
[13:30:14] *** jonno11____ has quit IRC
[13:31:07] *** quakephil has joined #angularjs
[13:31:43] *** davlefouAMD has joined #angularjs
[13:32:39] *** miqid has joined #angularjs
[13:33:04] *** lnrdo_ has joined #angularjs
[13:35:09] *** lnrdo has quit IRC
[13:36:08] *** kam270 has joined #angularjs
[13:37:12] *** lnrdo has joined #angularjs
[13:38:15] *** lnrdo_ has quit IRC
[13:38:37] *** ademcaglin has joined #angularjs
[13:39:15] *** buzzedword has joined #angularjs
[13:39:38] *** speakingcode has joined #angularjs
[13:41:16] <silverdust> Is there a way to have ng-click on a node and not have it's click action affect child nodes
[13:41:35] *** kam270 has quit IRC
[13:41:53] <silverdust> what will be the $('.item:not(.item-child)') of jQuery
[13:42:26] *** lnrdo has quit IRC
[13:42:53] *** TyrfingMjolnir has quit IRC
[13:43:37] *** kam270 has joined #angularjs
[13:43:38] *** tangorri has joined #angularjs
[13:44:12] *** jonno11____ has joined #angularjs
[13:44:16] *** buzzedword has quit IRC
[13:44:46] *** kam270 has quit IRC
[13:44:59] <calmbird> silverdust: sure, use stop propagation
[13:46:19] *** B0ltzy has joined #angularjs
[13:47:02] *** erve has quit IRC
[13:47:28] *** ome has quit IRC
[13:47:36] *** jonno11_____ has joined #angularjs
[13:47:55] *** Mediogre has joined #angularjs
[13:48:36] *** alinou has joined #angularjs
[13:48:50] *** jonno11____ has quit IRC
[13:49:06] *** Hounddog has joined #angularjs
[13:51:14] <silverdust> Thanks calmbird
[13:53:38] *** ngbot has joined #angularjs
[13:53:39]
<ngbot> [angular.js] petebacondarwin pushed 1 new commit to master: http://git.io/vu4nF
[13:53:39] <ngbot> angular.js/master e020b89 Matias Niemelä: fix(ngAnimate): do not use event.timeStamp anymore for time tracking...
[13:53:39] *** ngbot has left #angularjs
[13:53:48] *** virt- has joined #angularjs
[13:56:40] *** speeddragon has quit IRC
[13:57:16] *** jamesdinh has joined #angularjs
[13:58:36] <silverdust> calmbird: I have this ng-click="showMenu = !showMenu; $event.stopPropagation();"
[13:58:42] *** svycka has joined #angularjs
[13:58:55] <silverdust> but yet the child node is still affected when I click
[13:59:01] <calmbird> thats weird
[13:59:17] *** jonno11______ has joined #angularjs
[13:59:20] <kschlesselmann> How can I access an element in an angular2 template? I'd like to do something like <whatever>.getElementById("myChart")
[14:00:13] *** jamesdinh has left #angularjs
[14:00:16] *** ed-ilyin-lv has joined #angularjs
[14:00:24] *** tarnus has joined #angularjs
[14:01:49] *** jonno11_____ has quit IRC
[14:02:10] *** ed-ilyin-lv has quit IRC
[14:02:18] *** jonno11_______ has joined #angularjs
[14:02:21] *** tiagoboldt has joined #angularjs
[14:02:36] *** iraj has quit IRC
[14:03:56] *** tiagoboldt has quit IRC
[14:04:26] *** jonno11______ has quit IRC
[14:05:20] *** ademcaglin has quit IRC
[14:06:06] *** dodobrain has quit IRC
[14:06:20] <calmbird> or mby not
[14:07:46] *** zz_dimtruck is now known as dimtruck
[14:07:53] *** punknroll has quit IRC
[14:08:14] <calmbird> yeah well you need stoppropagation on child
[14:08:50] <calmbird> prety unhandy
[14:08:50] *** fpfitzke has quit IRC
[14:08:51] *** ngbot has joined #angularjs
[14:08:52]
<ngbot> [angular.js] petebacondarwin pushed 1 new commit to v1.3.x: http://git.io/vu48u
[14:08:52] <ngbot> angular.js/v1.3.x d386b7a Matias Niemelä: fix(ngAnimate): do not use event.timeStamp anymore for time tracking...
[14:08:52] *** ngbot has left #angularjs
[14:09:12] *** fpfitzke has joined #angularjs
[14:09:15] <calmbird> Or in click function you can check clicked class element, there is a bit of options, none is nice i think.
[14:09:18] *** k_ has quit IRC
[14:09:41] *** ngbot has joined #angularjs
[14:09:41]
<ngbot> [angular.js] petebacondarwin pushed 1 new commit to v1.2.x: http://git.io/vu485
[14:09:42] <ngbot> angular.js/v1.2.x 8d83b56 Matias Niemelä: fix(ngAnimate): do not use event.timeStamp anymore for time tracking...
[14:09:42] *** ngbot has left #angularjs
[14:10:54] *** punknroll has joined #angularjs
[14:11:06] *** schneider has quit IRC
[14:11:30] *** asteele has quit IRC
[14:11:36] *** SpikeSpiegel has quit IRC
[14:12:13] *** buzzedword has joined #angularjs
[14:12:39] *** Debnet has joined #angularjs
[14:12:44] *** fpfitzke has quit IRC
[14:12:59] *** ahaeger has joined #angularjs
[14:13:19] *** fpfitzke has joined #angularjs
[14:13:19] *** squeakytoy2 has quit IRC
[14:13:43] *** BeerBuddy has quit IRC
[14:14:33] *** squeakytoy2 has joined #angularjs
[14:15:34] *** kblin has joined #angularjs
[14:15:37] <kblin> hi folks
[14:17:25] *** buzzedword has quit IRC
[14:17:35] *** nya_ has quit IRC
[14:17:39] *** cliluw has quit IRC
[14:17:47] *** GuiltyLemon is now known as Guiltylemon
[14:18:05] *** nya_ has joined #angularjs
[14:18:09] *** cliluw has joined #angularjs
[14:18:25] *** walden|afk is now known as walden
[14:19:11] *** Guiltylemon is now known as GuiltyLemon
[14:19:20] *** GuiltyLemon is now known as Guiltylemon
[14:19:31] *** fpfitzke has quit IRC
[14:19:35] *** morissette has joined #angularjs
[14:19:59] *** Guiltylemon is now known as GuiltyLemon
[14:20:03] *** fpfitzke has joined #angularjs
[14:20:08] *** GuiltyLemon is now known as Guiltylemon
[14:20:16] *** dimtruck is now known as zz_dimtruck
[14:20:21] *** Guiltylemon is now known as GuiltyLemon
[14:20:33] *** GuiltyLemon is now known as Guiltylemon
[14:20:40] *** buzzedword has joined #angularjs
[14:20:49] *** mary5030 has joined #angularjs
[14:20:51] *** BeerBuddy has joined #angularjs
[14:21:19] *** TyrfingMjolnir has joined #angularjs
[14:21:43] *** Hounddog has quit IRC
[14:22:02] *** joshontheweb has quit IRC
[14:23:00] *** Bloomer has joined #angularjs
[14:23:35] *** nya_ has quit IRC
[14:24:09] *** DJDelusional has joined #angularjs
[14:24:09] <ilhami> icebox, tell me when you are here
[14:25:43] *** diegoaguilar has joined #angularjs
[14:25:52] *** buzzedword has quit IRC
[14:26:24] *** Guiltylemon is now known as GuiltyLemon
[14:27:54] *** ahaeger has quit IRC
[14:27:57] *** vs_ has joined #angularjs
[14:28:08] *** fpfitzke has quit IRC
[14:30:40] *** jonno11________ has joined #angularjs
[14:31:02] *** step1step2 has quit IRC
[14:31:20] *** vs_ has quit IRC
[14:32:14] *** iceball has quit IRC
[14:32:46] *** jonno11_______ has quit IRC
[14:33:32] *** raijin has joined #angularjs
[14:33:40] *** lnrdo has joined #angularjs
[14:34:59] *** deeb has quit IRC
[14:35:05] *** Sky[x] has quit IRC
[14:38:56] *** ahaeger has joined #angularjs
[14:39:07] *** erol has quit IRC
[14:40:15] *** step1step2 has joined #angularjs
[14:41:45] *** sunny1994 has joined #angularjs
[14:41:54] *** B0ltzy has quit IRC
[14:42:13] *** frem has joined #angularjs
[14:42:16] *** doodlehaus has joined #angularjs
[14:42:23] *** sunny1994 has quit IRC
[14:43:47] *** drej has quit IRC
[14:44:24] *** BeerBuddy has quit IRC
[14:45:26] *** BahamutWC|Laptop has joined #angularjs
[14:45:56] *** BeerBuddy has joined #angularjs
[14:47:01] *** lnrdo_ has joined #angularjs
[14:47:01] *** benvantende has quit IRC
[14:47:01] *** lnrdo has quit IRC
[14:47:27] *** benvantende has joined #angularjs
[14:48:08] *** dman777_1lter has joined #angularjs
[14:50:26] *** Pspfolio has joined #angularjs
[14:51:13] *** devians has joined #angularjs
[14:51:28] *** marthinal has joined #angularjs
[14:51:43] *** BeerBuddy has quit IRC
[14:52:04] *** erol has joined #angularjs
[14:53:10] *** jonno11________ has quit IRC
[14:53:42] *** hrusti has joined #angularjs
[14:53:44] *** doodlehaus has quit IRC
[14:53:46]
<dp> I just switched from a locally hosted angular.js file to a CDNJS hosted file, and now I'm getting the following error: https://goo.gl/4xOHpB -- any suggestions?
[14:54:16] *** VeeWee has quit IRC
[14:55:33] *** realies has quit IRC
[14:56:16] *** speeddragon has joined #angularjs
[14:56:34] <hrusti> If user is inactive for some time, I want to log him out. Should I use $timeout function to achieve this behaviour?
[14:56:43] *** thezanke has joined #angularjs
[14:56:58] <zomg> dp: use a nonminified version to get a more useful error
[14:57:30] <dp> zomg: excellent. Thanks.
[14:57:54] *** mischat has joined #angularjs
[14:58:16] *** jr3 has joined #angularjs
[14:58:31] *** JamesG93 has joined #angularjs
[14:58:50] *** max_dev has quit IRC
[15:00:11] *** jonno11________ has joined #angularjs
[15:00:45] *** max_dev has joined #angularjs
[15:01:40] *** realies has joined #angularjs
[15:01:43] *** Z3R0 has joined #angularjs
[15:01:56] *** realies has quit IRC
[15:01:56] *** realies has joined #angularjs
[15:02:06] *** calmbird has quit IRC
[15:02:48] *** DJDelusional has quit IRC
[15:03:39] *** ahaeger has left #angularjs
[15:04:02] *** zz_dimtruck is now known as dimtruck
[15:04:05] *** Foad_NH has quit IRC
[15:05:01] *** JamesG93 has quit IRC
[15:06:11] *** Z3R0 has quit IRC
[15:06:15] *** Bloomer has quit IRC
[15:06:47] *** paperElectron has quit IRC
[15:08:09] *** mischat_ has joined #angularjs
[15:09:13] *** B0ltzy has joined #angularjs
[15:09:53] *** italoacasas has joined #angularjs
[15:11:20] *** bayousoft has joined #angularjs
[15:11:30] *** mischat has quit IRC
[15:12:14] *** jr3 has quit IRC
[15:12:36] *** buzzedword has joined #angularjs
[15:12:36] *** fpfitzke has joined #angularjs
[15:13:19] *** beakman has joined #angularjs
[15:13:35] *** paperElectron has joined #angularjs
[15:13:52] *** fpfitzke has quit IRC
[15:14:44] *** italoacasas has quit IRC
[15:15:00] *** encryptd_fractal has joined #angularjs
[15:15:53] *** bew has joined #angularjs
[15:16:15] *** siba has quit IRC
[15:16:55] *** Poeticode has joined #angularjs
[15:17:14] *** buzzedword has quit IRC
[15:17:51] *** devians has quit IRC
[15:17:57] *** mischat_ has quit IRC
[15:18:33] *** mischat has joined #angularjs
[15:19:03] *** nya_ has joined #angularjs
[15:19:38] <silverdust> I have a dropdown I show with ng-click ng-show . I want to be able to hide it when any other part of the document body but it is clicked
[15:19:58] <silverdust> does this mean I'll have to set a ng-click on body for it?
[15:20:20] *** italoacasas has joined #angularjs
[15:20:46] *** Armen has joined #angularjs
[15:20:46] <silverdust> I just need to change it's value to false each time other parts of body is clicked
[15:21:30] *** jonno11________ has quit IRC
[15:21:44] *** aghiuru has quit IRC
[15:21:46] *** Sky[x] has joined #angularjs
[15:22:21] *** Uka has joined #angularjs
[15:22:58] <Poeticode> Why not have it hidden onmouseleave?
[15:23:47] *** dp has left #angularjs
[15:24:06] *** Uka has left #angularjs
[15:24:10] *** raijin has quit IRC
[15:24:13] *** mary5030 has quit IRC
[15:25:55] *** miqid has quit IRC
[15:26:13] <kschlesselmann> How can I access "<canvas id="chart" width="400" height="400"></canvas>" if it's defined in template: "" in angular2? It seems I cannot just use document.getElementById("chart"); because that results in a null pointer
[15:26:21] *** hrusti has quit IRC
[15:26:21] *** hrusti has joined #angularjs
[15:29:22] *** mischat has quit IRC
[15:29:28] *** dimtruck is now known as zz_dimtruck
[15:29:51] <Poeticode> Are you wrapping it in single-quotes and only using double-quotes in the element? ie, '<canvas id="chart" width="400" height="400"></canvas>' otherwise it'll blow up
[15:33:00] *** Sky[x] has quit IRC
[15:34:28] *** skkks has joined #angularjs
[15:35:11] *** skkks has quit IRC
[15:36:10] *** zac has joined #angularjs
[15:36:59] *** s3shs has joined #angularjs
[15:39:31] *** zlude has joined #angularjs
[15:40:32] <kschlesselmann> Poeticode: I use multiline strings with ``
[15:40:37] *** Sky[x] has joined #angularjs
[15:40:50] *** BeerBuddy has joined #angularjs
[15:40:53] *** denisra has joined #angularjs
[15:40:58] *** zeioth has joined #angularjs
[15:41:04] <zlude> Hello! I'm using a form field just like this: <input type="text" ng-model="search.id">, I wanna know if it's possible to search id and name in the same field. something like ng-model="search.id|search.name"
[15:41:16] <kschlesselmann> Everything works fine … I just can't get a reference to the dom element because it doesn't exist until expanded …
[15:41:40] *** chizbang has quit IRC
[15:42:02] *** aghiuru has joined #angularjs
[15:42:11] *** diegoaguilar has quit IRC
[15:43:28] *** plekplek has quit IRC
[15:43:40] <dan2k3k4> does angular ui bootstrap 0.12.1 support custom div slides? :s
[15:44:01] *** Junior has quit IRC
[15:44:08] <Poeticode> Alrighty, just wanted to make sure it wasn't a small mistake like that. I'm not familiar with Ang2 so I can't help any further D: @ kschlesselmann
[15:44:22] *** bayousoft has quit IRC
[15:45:22] *** jonno11________ has joined #angularjs
[15:46:23] *** aghiuru has quit IRC
[15:47:57] *** CAPITANOOO has joined #angularjs
[15:48:04] *** pbgc has joined #angularjs
[15:48:09] *** mellernoia-work has joined #angularjs
[15:48:29] *** bayousoft has joined #angularjs
[15:48:33] *** ThuyNguyen has joined #angularjs
[15:48:46] *** mellernoia has quit IRC
[15:49:09] *** ybl has quit IRC
[15:49:41] *** alinou has quit IRC
[15:50:13] *** mischat has joined #angularjs
[15:50:44] <ThuyNguyen> Hi all, please help me how to re-render <header> in angular2
[15:51:14] <ThuyNguyen> Hi all, please help me how to re-render <header> in angular2, thanks
[15:53:34] *** zz_dimtruck is now known as dimtruck
[15:55:05] *** mosulica has quit IRC
[15:55:20] *** erve has joined #angularjs
[15:55:21] *** killa_kyle has joined #angularjs
[15:55:22] *** doodlehaus has joined #angularjs
[15:56:36] *** sixr420 has quit IRC
[15:56:52] *** sixr420 has joined #angularjs
[15:56:58] <weeblo> quick question
[15:57:05] <weeblo> i got a directive
[15:57:16] <weeblo> inside of it i got a transcluded directive
[15:57:21] *** charuru has joined #angularjs
[15:57:22] *** chizbang has joined #angularjs
[15:57:37] <weeblo> bindings: { title: '@' }, template: '{{hcComponentTitle.title}} <md-divider></md-divider>'
[15:57:41] <weeblo> with a title binding
[15:57:59] *** phrozensilver has joined #angularjs
[15:58:18] <weeblo> how can my directive change this binding
[15:58:33] <weeblo> on a click or something
[15:59:23] *** jbarket has joined #angularjs
[15:59:32] *** achantavy has quit IRC
[16:00:36] *** jayeshsolanki has joined #angularjs
[16:00:42] *** edrocks_ has quit IRC
[16:00:47] *** yes`r has quit IRC
[16:00:51] *** edrocks has joined #angularjs
[16:00:58] *** ilmgb_ has joined #angularjs
[16:01:09] *** jayeshsolanki has joined #angularjs
[16:01:47] *** rscata has quit IRC
[16:02:01] *** jonno11________ has quit IRC
[16:02:23] *** kuadrosx has joined #angularjs
[16:02:27] *** macabre has joined #angularjs
[16:03:01] *** wonder95 has joined #angularjs
[16:03:04] *** asvptz has joined #angularjs
[16:03:08] *** elperdut_ has quit IRC
[16:05:18] *** doodlehaus has quit IRC
[16:05:20] *** ilmgb has quit IRC
[16:05:38] *** CAPITANOOO has quit IRC
[16:05:46] *** speaking1ode has joined #angularjs
[16:05:56] *** jayeshsolanki has quit IRC
[16:06:02] *** mary5030 has joined #angularjs
[16:06:26] *** Es0teric has joined #angularjs
[16:06:29] *** jr3 has joined #angularjs
[16:07:24] *** alinou has joined #angularjs
[16:07:30] *** dopesong has quit IRC
[16:07:31] *** Jae has quit IRC
[16:07:55] *** buzzedword has joined #angularjs
[16:08:30] *** speakingcode has quit IRC
[16:09:34] *** jayeshsolanki has joined #angularjs
[16:10:00] *** jayeshsolanki has joined #angularjs
[16:11:13] *** bennyc has joined #angularjs
[16:11:18] <asvptz> Hi! I have a question: how can I get a link to $compileProvider after bootstrapping (from outside of any angular code)? For some reasons I can't do this in .config
[16:11:37] *** SET002 has quit IRC
[16:11:59] *** SET002 has joined #angularjs
[16:12:06] *** speaking1ode has quit IRC
[16:13:07] *** buzzedword has quit IRC
[16:13:15] *** elperdut_ has joined #angularjs
[16:14:46] *** speeddragon has quit IRC
[16:15:13] *** speeddragon has joined #angularjs
[16:15:59] *** jayeshsolanki has quit IRC
[16:16:16] *** jayeshsolanki has joined #angularjs
[16:16:33] *** Bodin has joined #angularjs
[16:16:58] *** speakingcode has joined #angularjs
[16:17:50] *** alinou has quit IRC
[16:18:16] *** Sky[x] has quit IRC
[16:18:31] *** mven has quit IRC
[16:19:25] *** Dmitri has quit IRC
[16:19:25] *** Ir1sh has joined #angularjs
[16:19:39] *** dcherman has joined #angularjs
[16:21:10] *** knownasilya has joined #angularjs
[16:21:24] *** B0ltzy has quit IRC
[16:21:45] *** saratogga has joined #angularjs
[16:22:15] *** mary5030 has quit IRC
[16:23:22] *** mary5030 has joined #angularjs
[16:23:55] *** SevenZark7 has quit IRC
[16:24:46] *** brollypop has quit IRC
[16:25:06] <ilhami> hey
[16:25:32] *** johnnyfive has quit IRC
[16:25:58] *** genta_boy has joined #angularjs
[16:26:55] *** aghiuru has joined #angularjs
[16:27:23] *** Cokee has quit IRC
[16:27:50] *** Asiajey has joined #angularjs
[16:28:12] *** mven has joined #angularjs
[16:30:01] *** Asiajey has quit IRC
[16:30:01] *** Bloomer has joined #angularjs
[16:30:59] *** B0ltzy has joined #angularjs
[16:30:59] *** pretag has quit IRC
[16:31:00] *** mace_ has joined #angularjs
[16:31:21] *** mace_ has quit IRC
[16:31:29] *** diegoaguilar has joined #angularjs
[16:33:11] *** qdk has quit IRC
[16:33:40] *** crystalmaiden has joined #angularjs
[16:33:54] *** buzzedword has joined #angularjs
[16:34:15] *** jnylen has quit IRC
[16:34:29] *** Junior has joined #angularjs
[16:34:37] *** crystalmaiden has joined #angularjs
[16:34:58] *** jnylen has joined #angularjs
[16:35:01] *** crystalmaiden has quit IRC
[16:35:33] *** crystalmaiden has joined #angularjs
[16:35:43] *** asvptz has quit IRC
[16:35:43] <weeblo> angular 1.5 has a link function just as before right
[16:35:45] <weeblo> ?
[16:36:06] *** crystalmaiden has quit IRC
[16:36:13] <weeblo> i ask since the component has no scope and automaticlly does bindtocontroller
[16:36:23] *** sssilver has joined #angularjs
[16:36:30] *** sqwishy has left #angularjs
[16:36:35] *** crystalmaiden has joined #angularjs
[16:37:04] *** crystalmaiden has quit IRC
[16:37:43] *** crystalmaiden has joined #angularjs
[16:38:12] *** lnrdo_ has quit IRC
[16:38:15] *** speakingcode has quit IRC
[16:38:30] *** diegoaguilar has quit IRC
[16:38:44] *** lnrdo has joined #angularjs
[16:38:44] *** crystalmaiden has joined #angularjs
[16:38:48] *** zac has quit IRC
[16:39:08] *** buzzedword has quit IRC
[16:39:08] *** bayousoft has quit IRC
[16:39:14] *** crystalmaiden has quit IRC
[16:39:23] *** zac has joined #angularjs
[16:39:52] *** crystalmaiden has joined #angularjs
[16:40:14] *** zeezey has joined #angularjs
[16:40:20] *** crystalmaiden has quit IRC
[16:40:23] *** Dmitri has joined #angularjs
[16:40:43] *** s00pcan has quit IRC
[16:40:49] *** crystalmaiden has joined #angularjs
[16:41:32] *** crystalmaiden has quit IRC
[16:42:06] *** crystalmaiden has joined #angularjs
[16:42:21] *** soee has quit IRC
[16:42:23] *** geiltalasdair has quit IRC
[16:42:49] *** s00pcan has joined #angularjs
[16:42:50] *** crystalmaiden has quit IRC
[16:43:06] *** soee has joined #angularjs
[16:43:16] *** phrozensilver_ has joined #angularjs
[16:43:22] *** crystalmaiden has joined #angularjs
[16:43:57] *** buzzedword has joined #angularjs
[16:44:28] *** crystalmaiden has joined #angularjs
[16:45:05] *** crystalmaiden has quit IRC
[16:45:46] *** crystalmaiden has joined #angularjs
[16:46:00] *** phrozensilver has quit IRC
[16:46:20] *** crystalmaiden has quit IRC
[16:46:49] *** crystalmaiden has joined #angularjs
[16:47:16] *** pbgc has quit IRC
[16:47:16] *** Ozd has quit IRC
[16:47:28] *** crystalmaiden has quit IRC
[16:47:56] *** crystalmaiden has joined #angularjs
[16:48:35] *** crystalmaiden has quit IRC
[16:49:06] *** crystalmaiden has joined #angularjs
[16:50:07] *** crystalmaiden has joined #angularjs
[16:50:17] *** lnrdo has quit IRC
[16:50:35] *** TyrfingMjolnir has quit IRC
[16:50:48] *** diegoaguilar has joined #angularjs
[16:50:58] *** lnrdo_ has joined #angularjs
[16:51:47] *** Armen has quit IRC
[16:51:56] *** lnrdo_ has quit IRC
[16:52:31] *** lnrdo_ has joined #angularjs
[16:53:04] *** erol has quit IRC
[16:54:00] *** icebox has quit IRC
[16:54:01] *** johnnyfive has joined #angularjs
[16:54:09] *** johnnyfive has joined #angularjs
[16:54:41] *** doxavore has joined #angularjs
[16:55:03] *** taspat has quit IRC
[16:55:13] *** Bodin has quit IRC
[16:55:30] *** Bodin has joined #angularjs
[16:55:45] *** Jae has joined #angularjs
[16:56:33] *** Cokee has joined #angularjs
[16:56:44] <weeblo> hey hey there
[16:56:55] *** Pspfolio has quit IRC
[16:57:50] *** squeakytoy2 has quit IRC
[16:59:19] *** squeakytoy2 has joined #angularjs
[17:03:05] *** Es0teric has quit IRC
[17:04:35] *** Es0teric has joined #angularjs
[17:06:03] *** rho has joined #angularjs
[17:06:04] *** rho has joined #angularjs
[17:06:12] *** sssilver has quit IRC
[17:07:31] *** aghiuru has quit IRC
[17:08:05] *** okdamn has joined #angularjs
[17:08:09] *** aghiuru has joined #angularjs
[17:08:28] <okdamn> Hi, do i need to clear intervals when switching controller? for example on route change?
[17:09:29] *** F1LT3R has joined #angularjs
[17:10:07] *** hefox has joined #angularjs
[17:11:01] *** icfantv has joined #angularjs
[17:11:25] *** B0ltzy has quit IRC
[17:12:16] *** cacts|works has joined #angularjs
[17:12:19] *** B0ltzy has joined #angularjs
[17:13:04] *** aghiuru has quit IRC
[17:13:37] *** erol has joined #angularjs
[17:13:57] *** ilmgb_ has quit IRC
[17:14:25] *** ilmgb has joined #angularjs
[17:15:26] *** Es0teric has quit IRC
[17:16:15] *** dragonpiper has quit IRC
[17:17:33] *** Es0teric has joined #angularjs
[17:17:36] *** sctskw has joined #angularjs
[17:18:10] *** ilmgb_ has joined #angularjs
[17:18:55] *** ilmgb has quit IRC
[17:18:57] *** s3shs has quit IRC
[17:18:58] *** dcherman2 has joined #angularjs
[17:21:14] *** ilmgb_ has quit IRC
[17:21:43] *** ilmgb has joined #angularjs
[17:22:41] *** dcherman has quit IRC
[17:23:05] *** dcherman has joined #angularjs
[17:23:16] *** sssilver has joined #angularjs
[17:23:23] *** SomeKittens has quit IRC
[17:23:42] *** dszmaj has joined #angularjs
[17:24:28] *** dcherman2 has quit IRC
[17:25:13] *** hdeshev has left #angularjs
[17:25:27] *** dcherman2 has joined #angularjs
[17:25:47] *** DJDelusional has joined #angularjs
[17:25:49] *** hefox has quit IRC
[17:25:52] *** bayousoft has joined #angularjs
[17:26:21] *** zac has quit IRC
[17:26:28] *** sssilver has quit IRC
[17:26:32] *** ilmgb has quit IRC
[17:26:37] *** zac has joined #angularjs
[17:26:52] *** jonno11________ has joined #angularjs
[17:27:07] *** sssilver has joined #angularjs
[17:28:03] *** dcherman has quit IRC
[17:29:53] *** jonno11________ has quit IRC
[17:31:07] *** BeerBuddy has quit IRC
[17:32:57] *** jonno11_________ has joined #angularjs
[17:33:00] *** pbgc has joined #angularjs
[17:33:11] *** Coldblackice has quit IRC
[17:33:21] *** yes`r has joined #angularjs
[17:33:30] *** DV8_ has joined #angularjs
[17:33:41] *** sctskw has quit IRC
[17:35:37] *** punknroll has quit IRC
[17:35:57] *** bluezone__ is now known as bluezone
[17:36:11] *** mischat_ has joined #angularjs
[17:36:22] *** {DV8} has quit IRC
[17:37:56] *** bayousoft has quit IRC
[17:38:01] *** mischat_ has quit IRC
[17:38:27] *** jdvs has joined #angularjs
[17:38:32] *** mischat_ has joined #angularjs
[17:39:00] <jdvs> ng-show='(a || b) && (!c || !d || !e || !f)'
[17:39:18] <jdvs> if a is true and c is true, this element shouldn't show, right?
[17:39:35] *** mischat has quit IRC
[17:40:07] *** aghiuru has joined #angularjs
[17:40:42] <BahamutWC|Work> no
[17:40:46] *** poacher2k has quit IRC
[17:40:56] <BahamutWC|Work> it would be if a is true and c, d, e, or f are failsy
[17:40:58] <BahamutWC|Work> falsy*
[17:41:01] <BahamutWC|Work> err
[17:41:11] <BahamutWC|Work> it would be if a is true and c, d, e, and f is true*
[17:42:33] *** hefox has joined #angularjs
[17:43:58] *** sbellina has joined #angularjs
[17:44:06] *** pbgc has quit IRC
[17:45:36] *** okdamn has quit IRC
[17:45:53] *** ThuyNguyen has quit IRC
[17:45:56] *** Sample has joined #angularjs
[17:46:01] *** jonno11_________ has quit IRC
[17:46:27] *** jonno11_________ has joined #angularjs
[17:46:28] *** stuartm_ is now known as stuartm
[17:47:34] *** iateadonut has quit IRC
[17:48:40] *** fww has joined #angularjs
[17:49:07] *** fww has quit IRC
[17:49:07] *** fww has joined #angularjs
[17:49:25] *** sbasso has quit IRC
[17:49:28] *** BeerBuddy has joined #angularjs
[17:49:39] *** p0k0 has joined #angularjs
[17:50:09] *** BeerBuddy has quit IRC
[17:50:35] *** jonno11_________ has quit IRC
[17:50:37] <stuartm> jdvs: no, the second series of conditions basically say that if any of c-f are false then the result is true
[17:51:33] <stuartm> just guessing that what you were going for is !(c || d || e || f)
[17:52:44] *** jayeshsolanki has quit IRC
[17:56:04] *** Jae has quit IRC
[17:56:42] *** TyrfingMjolnir has joined #angularjs
[17:58:39] *** B0ltzy has quit IRC
[17:59:18] *** DJDelusional has quit IRC
[17:59:46] *** mary5030 has quit IRC
[18:00:12] *** Zalabinsky has joined #angularjs
[18:01:06] *** cotko has quit IRC
[18:01:24] *** maryl has quit IRC
[18:01:33] *** LeBlaaanc has joined #angularjs
[18:01:57] *** davlefouAMD has quit IRC
[18:03:54] *** sbellina has quit IRC
[18:05:26] *** marthinal has quit IRC
[18:05:35] *** merpnderp has joined #angularjs
[18:06:01] <merpnderp> I've got a really weird issue with angualr and bootstrap where this is hiding all of a bootstrap panel except the top border: ng-show="state.current.name != 'job description administration'"
[18:06:03] *** schneider has joined #angularjs
[18:06:35] *** icholy has joined #angularjs
[18:06:36] <merpnderp> I can't find any css that explains what is going on. But if I change the css to display:none or invisible, the top panel's border goes away. How does angular hide this stuff?
[18:07:03] *** icholy has quit IRC
[18:07:41] *** italoacasas has quit IRC
[18:09:00] *** waverider has quit IRC
[18:09:46] *** raijin has joined #angularjs
[18:10:17] *** DJDelusional has joined #angularjs
[18:10:35] *** GeekJon has joined #angularjs
[18:12:15] *** svycka has quit IRC
[18:12:21] *** nanuko has joined #angularjs
[18:12:36] *** bengillies has quit IRC
[18:13:11] *** bennyc has quit IRC
[18:13:36] *** jayeshsolanki has joined #angularjs
[18:13:45] *** jayeshsolanki has quit IRC
[18:13:46] *** DJDelusional has quit IRC
[18:14:31] <Poeticode> Are there any good tutorials on directives you guys recommend? I've got a basic understanding on them, but would like to learn them more in-depth, particularly since it seems they'll make the upgrade to Angular 2 easier when I'm able to do so.
[18:14:38] *** DJDelusional has joined #angularjs
[18:15:07] *** Debnet has quit IRC
[18:16:04] *** F1LT3R has quit IRC
[18:17:19] *** drptbl has quit IRC
[18:20:09] *** Schalla has joined #angularjs
[18:20:09] *** Schalla has joined #angularjs
[18:21:24] *** dopesong has joined #angularjs
[18:22:51] *** plutoniix has joined #angularjs
[18:22:58] *** tobias47n9e__ has joined #angularjs
[18:22:59] *** mischat_ has quit IRC
[18:25:50] *** senayar has quit IRC
[18:26:15] *** italoacasas has joined #angularjs
[18:26:52] *** Sample has quit IRC
[18:27:02] *** tobias47n9e_ has quit IRC
[18:27:45] *** s3shs has joined #angularjs
[18:28:57] *** GuiltyLemon is now known as Guiltylemon
[18:29:05] *** LeBlaaanc has quit IRC
[18:29:36] *** LeBlaaanc has joined #angularjs
[18:29:47] *** sol has joined #angularjs
[18:30:03] *** sol is now known as Guest63835
[18:31:13] *** mary5030 has joined #angularjs
[18:31:32] *** LeBlaaanc has quit IRC
[18:32:36] *** solars has quit IRC
[18:33:23] *** buzzedword has quit IRC
[18:33:58] *** buzzedword has joined #angularjs
[18:34:03] *** Jae has joined #angularjs
[18:34:53] *** erol has quit IRC
[18:35:11] *** dromar56 has quit IRC
[18:35:17] *** Dmitri has quit IRC
[18:35:33] *** yanivkalfa has joined #angularjs
[18:35:51] *** jbarket has quit IRC
[18:35:57] *** norbu has joined #angularjs
[18:36:07] *** norbu has quit IRC
[18:38:51] *** DJDelusional has quit IRC
[18:39:38] *** Guiltylemon is now known as GuiltyLemon
[18:40:17] *** aghiuru has quit IRC
[18:40:24] *** erol has joined #angularjs
[18:40:24] *** jr3 has quit IRC
[18:41:59] *** erms has quit IRC
[18:42:26] *** cocao has joined #angularjs
[18:42:36] *** kgee has joined #angularjs
[18:43:28] *** cotko has joined #angularjs
[18:43:32] *** gatman has joined #angularjs
[18:44:16] *** leolrrj-alt has joined #angularjs
[18:45:18] *** leolrrj_ has quit IRC
[18:45:27] *** yky_ has joined #angularjs
[18:45:49] *** vardyb has joined #angularjs
[18:46:22] *** AndrewIsh has quit IRC
[18:46:37] *** iraj has joined #angularjs
[18:47:41] *** mary5030 has quit IRC
[18:48:29] *** yanivkalfa has quit IRC
[18:49:48] *** Bennux has joined #angularjs
[18:51:11] *** aghiuru has joined #angularjs
[18:51:21] *** pimpin_ has joined #angularjs
[18:51:27] *** vardyb has quit IRC
[18:52:03] *** davi has quit IRC
[18:52:15] *** SomeKittens has joined #angularjs
[18:53:15] *** Rutix has joined #angularjs
[18:53:16] *** Rutix has joined #angularjs
[18:53:18] *** erol has quit IRC
[18:53:26] *** pimpin has quit IRC
[18:55:29] *** greengriminal has joined #angularjs
[18:55:37] *** pimpin_ has quit IRC
[18:55:48] *** LeBlaaanc has joined #angularjs
[18:56:15] *** aghiuru has quit IRC
[18:56:27] *** Bloomer has quit IRC
[18:56:46] *** genta_boy has quit IRC
[18:57:29] *** DJDelusional has joined #angularjs
[18:57:30] *** Es0teric has quit IRC
[18:58:05] *** pimlu has joined #angularjs
[18:58:19] *** fww has quit IRC
[18:58:52] *** tangorri has quit IRC
[18:59:16] *** erol has joined #angularjs
[18:59:40] *** buzzedword has quit IRC
[19:00:29] *** sergey has joined #angularjs
[19:01:19] *** ahaeger has joined #angularjs
[19:01:54] *** Aliks has joined #angularjs
[19:02:03] *** italoacasas has quit IRC
[19:02:31] *** stevenroose_ has joined #angularjs
[19:02:45] *** looker has joined #angularjs
[19:02:50] *** LeBlaaanc has quit IRC
[19:03:04] *** zac has quit IRC
[19:03:14] *** guilbep has quit IRC
[19:03:22] *** LeBlaaanc has joined #angularjs
[19:03:39] *** zac has joined #angularjs
[19:03:43] *** Sample has joined #angularjs
[19:04:16] *** hans_ has joined #angularjs
[19:04:47] <hans_> Hi
[19:05:04] <hans_> i am using return btoa(String.fromCharCode.apply(null, str)); for base 64 encoding for images
[19:05:13] *** nk121 has quit IRC
[19:05:14] <hans_> but its not working with bigger images?
[19:05:17] *** LeBlaaanc has quit IRC
[19:05:18] <hans_> anyone has an iidea?
[19:07:26] *** Schalla has quit IRC
[19:07:41] *** LeBlaaanc has joined #angularjs
[19:11:17] *** gatman has quit IRC
[19:11:56] *** erol has quit IRC
[19:12:40] *** Ronyrun has joined #angularjs
[19:12:58] *** bengillies has joined #angularjs
[19:13:00] *** buzzedword has joined #angularjs
[19:13:26] *** LeBlaaanc has quit IRC
[19:13:27] <TyrfingMjolnir> I have a table
[19:13:30] <TyrfingMjolnir> ngtable
[19:13:44] <TyrfingMjolnir> that displays data from a local cache on the client side
[19:13:48] *** buzzedword has quit IRC
[19:13:51] *** gatman has joined #angularjs
[19:14:02] <TyrfingMjolnir> How can this cache reload with new data?
[19:14:16] <TyrfingMjolnir> Preforably from the server side without polling
[19:14:50] *** LeBlaaanc has joined #angularjs
[19:15:02] <TyrfingMjolnir> Preforably postgres update and insert should be able to trigger something on the client side through the REST API
[19:16:32] *** marthinal has joined #angularjs
[19:16:58] *** atwoz has joined #angularjs
[19:17:30] <atwoz> hello?
[19:17:43] *** bengillies has quit IRC
[19:17:50] *** atwoz has quit IRC
[19:17:56] *** LeBlaaanc has quit IRC
[19:18:23] *** LeBlaaanc has joined #angularjs
[19:19:29] *** jlebrech_ has quit IRC
[19:20:25] *** jdvs has quit IRC
[19:20:52] *** codeitloadit has joined #angularjs
[19:21:41] *** yky_ has quit IRC
[19:22:09] *** dbclk has joined #angularjs
[19:27:54] <Sample> This channel seems exceptionally dead for 683 people, all questions no answers
[19:28:01] <Sample> no real talking at all
[19:28:23] *** ansimation has joined #angularjs
[19:28:41] *** ansimation has joined #angularjs
[19:28:43] <zomg> welcome to irc
[19:29:06] <zomg> tbh this channel has become more and more quiet since it seems many of the active people have moved to the angular buddies slack channels
[19:29:13] <Sample> that isn't how I would characterize IRC in general =P
[19:29:14] *** {DV8} has joined #angularjs
[19:29:30] *** elfenheart has joined #angularjs
[19:29:31] <Sample> ah, that's an interesting thing to note
[19:31:03] *** zac has quit IRC
[19:31:52] *** DV8_ has quit IRC
[19:32:06] *** SpikeSpiegel has joined #angularjs
[19:32:31] <SpikeSpiegel> booty
[19:33:08] *** LeBlaaanc has quit IRC
[19:34:02] *** Dmitri has joined #angularjs
[19:34:09] *** deepy has quit IRC
[19:34:33] *** deepy has joined #angularjs
[19:34:35] *** DJDelusional has quit IRC
[19:34:38] *** dan2k3k4 has quit IRC
[19:34:53] *** Es0teric has joined #angularjs
[19:35:52] *** DJDelusional has joined #angularjs
[19:35:54]
<ansimation> Anyone feel like helping out with something? Basically I am trying to add or remove values to/from an array as the boxes are checked but that part doesn't seem to be working for me. here's my code http://plnkr.co/edit/3vpG0dqNdMl9TpsT1huK?p=preview
[19:36:17] *** yes`r has quit IRC
[19:37:11] *** monk12 has joined #angularjs
[19:37:48] *** aghiuru has joined #angularjs
[19:38:21] *** baweaver has joined #angularjs
[19:38:48] *** Dmitri has quit IRC
[19:38:57] *** lemur has joined #angularjs
[19:39:26] *** msilva has quit IRC
[19:39:39] *** lemur has quit IRC
[19:39:40] *** juddey has joined #angularjs
[19:39:49] *** marthinal has quit IRC
[19:40:00] *** lemur has joined #angularjs
[19:40:08] *** Aliks has quit IRC
[19:40:19] *** encrypt__ has joined #angularjs
[19:40:46] *** vardyb has joined #angularjs
[19:41:08] *** encryptd_fractal has quit IRC
[19:42:19] *** denis-k has joined #angularjs
[19:42:38] *** baweaver has quit IRC
[19:43:07] *** denis-k has quit IRC
[19:43:25] *** krusty_ar has quit IRC
[19:43:43] *** GuiltyLemon is now known as Guiltylemon
[19:43:52] *** krusty_ar has joined #angularjs
[19:44:34] *** mary5030 has joined #angularjs
[19:45:49] *** asteele has joined #angularjs
[19:46:18] *** monk12 has joined #angularjs
[19:47:38] *** regedit has joined #angularjs
[19:47:52] *** LeBlaaanc has joined #angularjs
[19:48:31] *** lemur is now known as baweaver
[19:49:12] *** spydermonkee has joined #angularjs
[19:49:45] *** jr3 has joined #angularjs
[19:49:46] *** LeBlaaanc has quit IRC
[19:51:11] *** LeBlaaanc has joined #angularjs
[19:52:20] *** pbgc has joined #angularjs
[19:52:50] *** juddey has quit IRC
[19:53:44] *** yanivkalfa has joined #angularjs
[19:53:50] *** baweaver has quit IRC
[19:53:52] *** mothership has quit IRC
[19:53:59] *** ansimation has quit IRC
[19:54:17] *** baweaver has joined #angularjs
[19:54:44] *** {DV8} has quit IRC
[19:55:03] *** gatman has quit IRC
[19:55:24] *** ansimation has joined #angularjs
[19:55:30] *** Guiltylemon is now known as GuiltyLemon
[19:55:55] *** pbgc has quit IRC
[19:57:06] *** gatman has joined #angularjs
[19:58:06] <spydermonkee> I have been sure to have my external template nested within one single html element
[19:59:20] *** baweaver has quit IRC
[19:59:43] *** marthinal has joined #angularjs
[19:59:46] *** italoacasas has joined #angularjs
[20:00:49] *** Es0teric has quit IRC
[20:01:26] *** ahaeger has quit IRC
[20:01:39] *** buzzedword has joined #angularjs
[20:02:17] *** Sample_ has joined #angularjs
[20:02:34] *** p0k0 has quit IRC
[20:03:35] *** speeddragon has quit IRC
[20:03:38] *** lnrdo_ has quit IRC
[20:04:00] *** Es0teric has joined #angularjs
[20:05:19] *** yky_ has joined #angularjs
[20:05:35] *** Sample has quit IRC
[20:06:06] *** yanivkalfa has quit IRC
[20:06:18] *** Aliks has joined #angularjs
[20:07:41] *** sssilver has quit IRC
[20:10:35] *** sssilver has joined #angularjs
[20:10:48] *** Aliks has quit IRC
[20:11:36] *** elyphas has joined #angularjs
[20:11:48] *** sssilver has quit IRC
[20:13:07] *** elfenheart has quit IRC
[20:13:36] *** mutsayu has joined #angularjs
[20:14:01] *** chick_ has joined #angularjs
[20:14:14] *** bengillies has joined #angularjs
[20:14:39] *** s00pcan has quit IRC
[20:15:15] *** elperdut_ has quit IRC
[20:15:15] <mutsayu> when I have a controller, I use function with 'this'. I start by an undefined user variable like "this.user = null;" and when I have in my routes a resolve that succeeded, it added the user object to the controller's user variable (this.user I just mentioned) but how do I call the $apply? cuz since I ain't using $scope, it doesn't work. How do I re-apply the value?
[20:15:50] *** elperdut_ has joined #angularjs
[20:16:28] *** s00pcan has joined #angularjs
[20:16:41] *** DJDelusional has quit IRC
[20:18:24] *** hefox has quit IRC
[20:18:26] *** bengillies has quit IRC
[20:18:46] *** hefox has joined #angularjs
[20:18:47] *** jtimon has quit IRC
[20:18:55] *** GuiltyLemon is now known as Guiltylemon
[20:19:35] *** pimlu has quit IRC
[20:20:01] *** Guest63835 has quit IRC
[20:20:19] *** yanivkalfa has joined #angularjs
[20:20:58] *** sssilver has joined #angularjs
[20:21:06] *** pimlu has joined #angularjs
[20:22:21] *** Respek has joined #angularjs
[20:23:34] *** bayousoft has joined #angularjs
[20:23:41] *** Aliks has joined #angularjs
[20:23:43] *** zac has joined #angularjs
[20:24:20] *** ahhhndi has joined #angularjs
[20:26:20] *** jstroem has quit IRC
[20:26:50] *** sbellina has joined #angularjs
[20:27:03] *** spydermonkee has left #angularjs
[20:28:52] *** infinitone has joined #angularjs
[20:29:07] *** skcin7 has quit IRC
[20:29:15] *** non has joined #angularjs
[20:29:25] <non> hi guys
[20:29:38] *** sssilver has joined #angularjs
[20:30:28] *** dan2k3k4 has joined #angularjs
[20:30:38] *** soee_ has joined #angularjs
[20:31:28] *** soee has quit IRC
[20:32:26] <burzum> how can I turn an array of integer type ids [1, 3, 7] into a query string like id[]=1&id[]=3 so that I can read it via php from there?
[20:32:53] *** saratogga has quit IRC
[20:33:02] <schneider> I've added angular material to my project
[20:33:22] <schneider> and my app looks like: var app = angular.module('myApp', ['ui.bootstrap', 'ngMaterial']);
[20:33:41] <schneider> but because of ngMaterial injection i got this error
[20:33:48] *** yes`r has joined #angularjs
[20:34:35] *** bennyc has joined #angularjs
[20:34:51] <schneider> Error: $injector:modulerr
[20:34:51] <schneider> Module Error
[20:35:04] *** italoacasas has quit IRC
[20:35:07] <schneider> how to fix that?
[20:35:29] *** sssilver has quit IRC
[20:35:58] *** mary5030 has quit IRC
[20:37:14] *** yanivkalfa has quit IRC
[20:37:38] *** josdeha_rt has joined #angularjs
[20:37:41] <zomg> schneider: if you're using a minified version of angular, use an unminified one. Then, the error you get is a url, click it and look at what the page says
[20:37:55] <zomg> (it probably didn't paste correctly here because it's too long)
[20:38:16] *** Guiltylemon is now known as GuiltyLemon
[20:38:23] <schneider> yes i've tried to paste the link
[20:38:28] <schneider> but it's too long
[20:38:47] *** italoacasas has joined #angularjs
[20:39:22] <schneider> here is the link
[20:40:55] *** ASTP001 has quit IRC
[20:42:28] <zomg> yes like I said you need to use an unminified version of angular to get a better error
[20:42:40] *** buzzedword has quit IRC
[20:42:54] *** josdeha_rt has quit IRC
[20:43:30] *** ngbot has joined #angularjs
[20:43:30]
<ngbot> [angular.js] matsko created hubot-integration (+1 new commit): http://git.io/vuRAE
[20:43:30] <ngbot> angular.js/hubot-integration ea8fca1 Matias Niemelä: chore: test to see if hubot picks this up
[20:43:31] *** ngbot has left #angularjs
[20:43:31] *** marthinal has quit IRC
[20:43:35] *** josdeha_rt has joined #angularjs
[20:43:48] *** buzzedword has joined #angularjs
[20:43:59] *** DJDelusional has joined #angularjs
[20:44:39] *** mary5030 has joined #angularjs
[20:44:54] *** Rutix has quit IRC
[20:45:06] *** bennyc has quit IRC
[20:46:32] *** LeBlaaanc has quit IRC
[20:47:02] *** LeBlaaanc has joined #angularjs
[20:47:42] *** daFullStack has joined #angularjs
[20:48:28] <daFullStack> If you declare your app module and a controller in the <html> tag, is it possible to access scope variables in the <head> tag?
[20:48:46] *** poacher2k has joined #angularjs
[20:50:38] <daFullStack> but I have my service and controller in separate .js files (my app was created via yeoman)
[20:50:39] *** dtdrew has joined #angularjs
[20:50:48] *** skcin7 has joined #angularjs
[20:51:12] *** regedit has quit IRC
[20:51:34] *** josdeha_rt has quit IRC
[20:51:39] <daFullStack> For some reason, I can print the scope vars within the controller, but when I try to put them in <head><script src={{myscopevar}} + "some.js"></script> I get an error.
[20:52:06] <daFullStack> It says { is an unexpected token.
[20:52:10] *** nya_ has quit IRC
[20:52:23] *** nya_ has joined #angularjs
[20:53:26] *** josdeha_rt has joined #angularjs
[20:53:33] *** ASTP001 has joined #angularjs
[20:54:28] *** GuiltyLemon is now known as Guiltylemon
[20:54:42] *** Guiltylemon is now known as GuiltyLemon
[20:54:46] <sethetter> I'm trying to run protractor tests on Sauce Labs with Safari and it's running Safari 5 on Windows 7. How do I tell it to use Mac OSX?
[20:54:46] *** natual has joined #angularjs
[20:54:48] *** elyssonmr has quit IRC
[20:54:57] *** Aliks has quit IRC
[20:55:12] *** GuiltyLemon is now known as Guiltylemon
[20:55:22] *** Guiltylemon is now known as GuiltyLemon
[20:55:29] <natual> Hey guys. Does anyone know of a way to generate form markup from a ControlGroup with ngFormModel?
[20:55:44] *** GuiltyLemon is now known as Guiltylemon
[20:55:55] *** Guiltylemon is now known as GuiltyLemon
[20:55:57] *** GuiltyLemon is now known as Guiltylemon
[20:56:15] <natual> I have dynamic forms, defined in classes. The classes have a "getForm" method, which returns a control group and i use to render the form. It works perfectly, but i have to create a template for every possibility, which is terrible. :P
[20:58:25] *** Aliks has joined #angularjs
[20:58:42] *** skcin7 has quit IRC
[20:59:20] *** Es0teric has quit IRC
[20:59:24] *** p0k0 has joined #angularjs
[20:59:27] *** sbellina has quit IRC
[20:59:29] *** speakingcode has joined #angularjs
[20:59:36] *** daFullStack has quit IRC
[21:00:13] *** ngbot has joined #angularjs
[21:00:13]
<ngbot> [angular.js] matsko force-pushed hubot-integration from ea8fca1 to ad0986f: http://git.io/vu0fH
[21:00:14] <ngbot> angular.js/hubot-integration ad0986f Matias Niemelä: chore: test to see if hubot picks this up
[21:00:14] *** ngbot has left #angularjs
[21:01:51] <felixn> hey, this is more of a DOM question, but it's with angular. :D I'm doing automated visual testing, is there a way to have selenium wait for background images to load? readyState is only helpful for the initial page load, not after angular has initialized & all images have loaded
[21:02:09] *** LeBlaaanc has quit IRC
[21:02:14] *** yky_ has quit IRC
[21:02:27] <felixn> actually I should probably ask #selenium
[21:02:31] *** LeBlaaanc has joined #angularjs
[21:02:33] *** cvanball has joined #angularjs
[21:03:08] *** Es0teric has joined #angularjs
[21:03:12] *** yky_ has joined #angularjs
[21:03:26] *** zivester has joined #angularjs
[21:04:21] *** sssilver has joined #angularjs
[21:05:04] *** non has quit IRC
[21:05:28] *** elperdut_ has quit IRC
[21:06:35] *** sqram has quit IRC
[21:07:12] *** fnx has joined #angularjs
[21:07:37] *** elyphas has quit IRC
[21:08:52] *** Cokee has quit IRC
[21:08:54] <sethetter> felixn: I'm not 100% sure on this, but I know you can tell protractor (Selenium) to wait until an element is loaded, but I'm not sure if the image download is part of the element being present or not.
[21:09:05] *** ensyde has joined #angularjs
[21:09:44] *** Guiltylemon is now known as GuiltyLemon
[21:11:18] *** sbellina has joined #angularjs
[21:11:42] *** pimpin has joined #angularjs
[21:13:02] <dtdrew> Hey, I've got a quick question: I can't seem to find any official documentation on bundling and deploying an Angular 2.0 app. I found a couple snippets for jspm. Is this because it's still in the works? Presumably with the completion of the Tour of Heroes tutorial?
[21:13:39] *** killa_kyle has quit IRC
[21:14:06] *** LeBlaaanc has quit IRC
[21:14:44] *** pimlu has quit IRC
[21:14:48] *** bengillies has joined #angularjs
[21:15:35] *** pimlu has joined #angularjs
[21:17:36] *** dan2k3k5 has joined #angularjs
[21:17:40] *** regedit has joined #angularjs
[21:17:48] *** Z3R0 has joined #angularjs
[21:18:26] *** enlightenmental has joined #angularjs
[21:18:47] *** sbellina has quit IRC
[21:19:24] *** amruth has joined #angularjs
[21:19:30] <amruth> hello frnds
[21:19:38] *** bengillies has quit IRC
[21:19:59] <amruth> am new to angularjs.. need some help
[21:20:09] *** pimlu_ has joined #angularjs
[21:20:10] *** skcin7 has joined #angularjs
[21:20:46] *** yes`r has quit IRC
[21:21:19] *** LeBlaaanc has joined #angularjs
[21:21:45] *** dan2k3k4 has quit IRC
[21:21:47] <amruth> guys??!!!
[21:22:58] *** amruth has quit IRC
[21:23:14] *** pimlu has quit IRC
[21:23:24] *** leolrrj-alt is now known as leolrrj
[21:24:01] *** regedit has quit IRC
[21:24:24] *** F1LT3R has joined #angularjs
[21:24:59] *** yes`r has joined #angularjs
[21:25:13] *** GuiltyLemon is now known as Guiltylemon
[21:25:24] *** Guiltylemon is now known as GuiltyLemon
[21:25:58] *** dtdrew has quit IRC
[21:27:22] *** jstroem has joined #angularjs
[21:27:50] *** empyreany has quit IRC
[21:28:04] *** kgee has quit IRC
[21:28:21] *** killa_kyle has joined #angularjs
[21:28:23] *** sssilver has quit IRC
[21:29:08] *** erve has quit IRC
[21:29:39] *** GitGud has joined #angularjs
[21:29:47] *** leolrrj has quit IRC
[21:30:13] *** GitGud has left #angularjs
[21:30:35] *** sssilver has joined #angularjs
[21:30:39] *** leolrrj has joined #angularjs
[21:31:30] *** cactauz has joined #angularjs
[21:34:27] *** cacts|works has quit IRC
[21:34:53] *** holahola has joined #angularjs
[21:35:53] <holahola> hello
[21:37:16] *** VictorCL has joined #angularjs
[21:37:33] *** raijin has quit IRC
[21:37:44] *** mary5030 has quit IRC
[21:37:46] *** Coldblackice has joined #angularjs
[21:38:28] *** mary5030 has joined #angularjs
[21:40:06] *** itaipu has joined #angularjs
[21:40:58] *** mischat has joined #angularjs
[21:41:31] *** mischat has quit IRC
[21:41:44] *** VictorCL has quit IRC
[21:41:51] *** cocao has quit IRC
[21:43:19] *** squeakytoy2 has quit IRC
[21:43:48] *** squeakytoy2 has joined #angularjs
[21:44:08] *** buzzedword has quit IRC
[21:44:53] *** speeddragon has joined #angularjs
[21:45:14] *** Z3R0 has quit IRC
[21:45:19] *** ansimation has quit IRC
[21:45:46] <holahola> hello
[21:46:22] *** holahola has quit IRC
[21:46:28] *** buzzedword has joined #angularjs
[21:47:33] *** jpstone has joined #angularjs
[21:48:04] *** Codefria_ has joined #angularjs
[21:48:06] *** codeman has quit IRC
[21:48:19] *** natual has quit IRC
[21:48:32] *** dionysus has joined #angularjs
[21:48:44] *** sbellina has joined #angularjs
[21:48:50] <dionysus> good evening
[21:49:00] *** brandom_ has joined #angularjs
[21:51:54] *** buzzedword has quit IRC
[21:52:24] <F1LT3R> hello
[21:52:33] <F1LT3R> how do i "un"-bootstrap an element?
[21:52:50] *** snewpy has joined #angularjs
[21:52:50] *** snewpy has joined #angularjs
[21:53:17] *** jonno11_________ has joined #angularjs
[21:53:44] *** jonno11 has joined #angularjs
[21:55:01] *** mischat has joined #angularjs
[21:55:13] *** GuiltyLemon is now known as Guiltylemon
[21:55:23] *** Guiltylemon is now known as GuiltyLemon
[21:55:27] <da_wunder> hmm, anyone here know if @CanActivate is in ng2 the replacement for ng1 route resolves?
[21:55:29] *** Burgerz has quit IRC
[21:55:51] *** VictorCL has joined #angularjs
[21:57:17] *** bayousoft has quit IRC
[21:57:23] *** doodlehaus has joined #angularjs
[21:57:34] *** bayousoft has joined #angularjs
[21:57:43] *** VictorCL has quit IRC
[21:58:00] *** Burgerz has joined #angularjs
[21:58:31] *** sssilver has quit IRC
[21:59:06] *** dbclk_ has joined #angularjs
[21:59:34] *** VictorCL has joined #angularjs
[22:00:12] *** qdk has joined #angularjs
[22:00:13] *** dbclk has quit IRC
[22:00:26] *** sbellina has quit IRC
[22:01:09] *** pimpin has quit IRC
[22:02:04] *** saratogga has joined #angularjs
[22:03:01] *** speeddragon has quit IRC
[22:05:14] *** vrockai has quit IRC
[22:06:24] *** buzzedword has joined #angularjs
[22:06:24] *** saratogga has quit IRC
[22:07:29] *** Aliks has quit IRC
[22:07:56] *** bayousoft has quit IRC
[22:09:25] <ilhami> everybody is freaking asleep
[22:09:31] <ilhami> :D:D:D:D
[22:09:38] *** felixn has quit IRC
[22:10:08] *** mutsayu has left #angularjs
[22:10:17] <Poeticode> or working on code they get paid to write
[22:10:34] *** andynu has quit IRC
[22:10:41] *** ycon_ has joined #angularjs
[22:11:23] *** buzzedword has quit IRC
[22:11:35] *** cactauz has quit IRC
[22:13:14] *** Zamerick has quit IRC
[22:13:52] *** Armen has joined #angularjs
[22:14:16] *** Aliks has joined #angularjs
[22:14:31] *** LeBlaaanc has quit IRC
[22:14:33] *** buzzedword has joined #angularjs
[22:14:45] *** sssilver has joined #angularjs
[22:14:55] *** GuiltyLemon is now known as Guiltylemon
[22:15:05] *** Guiltylemon is now known as GuiltyLemon
[22:15:13] *** GuiltyLemon is now known as Guiltylemon
[22:15:23] *** Guiltylemon is now known as GuiltyLemon
[22:15:25] *** felixn has joined #angularjs
[22:16:05] *** dromar56 has joined #angularjs
[22:17:31] *** Prithwiraj has joined #angularjs
[22:17:38] <Prithwiraj> hi all
[22:17:45] *** DShark has joined #angularjs
[22:17:57] <Prithwiraj> a very basic web development question
[22:17:57] *** bayousoft has joined #angularjs
[22:18:56] *** F1LT3R has quit IRC
[22:19:16] <Prithwiraj> i want to set a cookie(just the userId) from the login servlet(in java) after user is validated and then access it from my landing page(index.html) using javascript..
[22:19:30] *** buzzedword has quit IRC
[22:19:34] <Prithwiraj> is that possible
[22:19:35] <Prithwiraj> ?
[22:19:52] <Prithwiraj> set using java and get using javascript..
[22:20:22] *** poacher2k has quit IRC
[22:20:25] *** jbarket has joined #angularjs
[22:20:49] *** saratogga has joined #angularjs
[22:21:56] *** speeddragon has joined #angularjs
[22:23:02] *** leolrrj-alt has joined #angularjs
[22:23:16] <da_wunder> don't see why that won't work
[22:23:18] *** leolrrj-alt has quit IRC
[22:23:33] <da_wunder> but i recommend that you forgot those cookies and start to use jwt
[22:23:48] *** leolrrj-alt has joined #angularjs
[22:24:00] <looker> there is separate channel for ng2 ?
[22:24:14] *** ansimation has joined #angularjs
[22:24:51] *** Mediogre has quit IRC
[22:25:13] *** VictorCL has quit IRC
[22:25:56] *** toysqueaky has joined #angularjs
[22:26:13] *** kgee has joined #angularjs
[22:26:14] *** leolrrj has quit IRC
[22:26:30] *** Jardayn has joined #angularjs
[22:26:42] *** felixn_ has joined #angularjs
[22:27:03] <sweeper> the first rule of ng2 is that you do not talk about ng2
[22:27:50] *** VictorCL has joined #angularjs
[22:28:31] *** Rutix has joined #angularjs
[22:28:32] *** Rutix has joined #angularjs
[22:29:06] *** ycon_ has quit IRC
[22:29:29] *** bayousoft has quit IRC
[22:29:53] *** felixn has quit IRC
[22:30:00] *** ahhhndi has quit IRC
[22:30:35] *** speeddragon has quit IRC
[22:31:01] *** ngbot has joined #angularjs
[22:31:01]
<ngbot> [angular.js] petebacondarwin pushed 1 new commit to master: http://git.io/vu0rB
[22:31:02] <ngbot> angular.js/master 1358b3c Peter Bacon Darwin: chore(saucelabs): update to latest sauce version
[22:31:02] *** ngbot has left #angularjs
[22:31:20] *** felixn_ has quit IRC
[22:31:20] *** felixn has joined #angularjs
[22:31:41] *** dopesong has quit IRC
[22:31:51] *** ngbot has joined #angularjs
[22:31:52]
<ngbot> [angular.js] petebacondarwin pushed 1 new commit to master: http://git.io/vu0ry
[22:31:52] <ngbot> angular.js/master 776972e Martin Staffa: fix(ngAnimate): allow removing classes that are added by a running animation...
[22:31:52] *** ngbot has left #angularjs
[22:33:26] *** VictorCL has quit IRC
[22:34:13] <da_wunder> sweeper: and why is that
[22:35:01] *** jonno11 has quit IRC
[22:35:13] *** GuiltyLemon is now known as Guiltylemon
[22:35:23] *** Guiltylemon is now known as GuiltyLemon
[22:35:36] *** F1LT3R has joined #angularjs
[22:36:39] *** ngbot has joined #angularjs
[22:36:39] <ngbot> angular.js/master 8955cfb Lucas Mirelmann: feat($compile): Allow ES6 classes as controllers with `bindToController: true`...
[22:36:39] *** ngbot has left #angularjs
[22:37:46] *** compeman has quit IRC
[22:39:00] *** ycon_ has joined #angularjs
[22:39:04] *** Guest16 has joined #angularjs
[22:39:44] *** fnx has quit IRC
[22:40:09] *** jonno11 has joined #angularjs
[22:40:18] *** doodlehaus has quit IRC
[22:42:36] *** cactauz has joined #angularjs
[22:43:40] *** dodobrain has joined #angularjs
[22:43:54] *** ycon_ has quit IRC
[22:44:29] *** ycon_ has joined #angularjs
[22:45:55] *** speeddragon has joined #angularjs
[22:46:06] *** VictorCL has joined #angularjs
[22:46:39] *** aghiuru has quit IRC
[22:46:41] *** jonno11 has quit IRC
[22:46:54] *** cactauz has quit IRC
[22:47:54] *** jonno11 has joined #angularjs
[22:49:18] *** skcin7_ has joined #angularjs
[22:49:32] *** Es0teric has quit IRC
[22:50:01] *** Es0teric has joined #angularjs
[22:50:41] *** ESpiney has quit IRC
[22:51:09] *** skcin7 has quit IRC
[22:51:15] *** ycon_ has quit IRC
[22:51:32] <sethetter> Anyone here using grunt-protractor-runner? I'm passing a `capabilities` object but it's still requiring `browser` and ignoring the settings in capabilities.
[22:52:04] *** troks has joined #angularjs
[22:53:13] *** sbellina has joined #angularjs
[22:53:49] *** cactauz has joined #angularjs
[22:54:19] *** leolrrj has joined #angularjs
[22:54:25] *** xiinotulp has joined #angularjs
[22:54:30] *** bayousoft has joined #angularjs
[22:55:17] *** troks has quit IRC
[22:57:03] *** leolrrj-alt has quit IRC
[22:57:05] *** VictorCL has quit IRC
[22:57:13] *** buzzedword has joined #angularjs
[22:57:21] *** VictorCL has joined #angularjs
[22:57:31] *** LeBlaaanc has joined #angularjs
[22:57:46] *** plutoniix has quit IRC
[22:59:44] *** cactauz has quit IRC
[23:00:39] *** Codefria_ has quit IRC
[23:01:36] *** saratogga has quit IRC
[23:01:43] *** gatman_ has joined #angularjs
[23:02:22] *** sergey has quit IRC
[23:02:27] *** felixn_ has joined #angularjs
[23:03:01] *** morissette has quit IRC
[23:03:51] *** Abdul_ has joined #angularjs
[23:03:57] <Abdul_> Hi
[23:04:12] *** felixn has quit IRC
[23:04:38] <Abdul_> i need help on re-direction on angular from google-log in
[23:04:46] *** Jammy_Work has quit IRC
[23:05:00] *** zac has quit IRC
[23:05:00] <Abdul_> i am able to log-in to google using angular
[23:05:15] *** gatman has quit IRC
[23:05:25] <Abdul_> but i need to re-direct to dashboard
[23:05:27] *** xiinotulp has quit IRC
[23:05:34] <Abdul_> can some one help me on this..
[23:05:39] *** VictorCL has quit IRC
[23:05:41] *** josdeha_rt has quit IRC
[23:06:00] *** leolrrj-alt has joined #angularjs
[23:06:08] <ilhami> why not just use $window.location ?
[23:06:31] <Abdul_> i used windows location, but its not working..
[23:06:47] *** leolrrj-alt has quit IRC
[23:07:03] <Abdul_> $window.location = '/#/'
[23:07:10] *** cactauz has joined #angularjs
[23:07:14] <Abdul_> this way i tried..but not working ...
[23:07:22] *** leolrrj-alt has joined #angularjs
[23:07:37] <Abdul_> any other method i can use in my login.controller..?
[23:07:38] *** leolrrj has quit IRC
[23:07:44] <ilhami> $window.location.href = '';
[23:07:46] <ilhami> try this
[23:08:02] <Abdul_> ok.fine..i will try now..
[23:09:46] *** mischat has quit IRC
[23:09:55] <Abdul_> do i need give full path of my URL - $window.location.href = 'full path'; ..?
[23:10:32] *** Dmitri has joined #angularjs
[23:10:37] *** saratogga has joined #angularjs
[23:10:42] <ilhami> hmm try both.
[23:11:27] *** dopesong has joined #angularjs
[23:11:28] <Abdul_> ok.sure..i am trying now..
[23:11:46] *** bayousoft has quit IRC
[23:11:55] *** greengriminal has quit IRC
[23:13:26] *** jstroem has quit IRC
[23:13:29] *** theverbg has joined #angularjs
[23:14:10] *** siba has joined #angularjs
[23:15:02] *** Dmitri has quit IRC
[23:16:04] *** bengillies has joined #angularjs
[23:18:11] *** dan2k3k5 has quit IRC
[23:19:27] *** raijin has joined #angularjs
[23:19:38] <Abdul_> @ilhami...its not working ..still i am able to log-in only google account..
[23:19:59] <ilhami> dunno
[23:20:00] <ilhami> D
[23:20:02] <ilhami> :D
[23:20:12] <ilhami> I am not so good at angular and js yet.
[23:20:12] <Abdul_> where should declared...this windows location to re-direct to dashboard.
[23:20:13] *** jlebrech has joined #angularjs
[23:20:34] *** bengillies has quit IRC
[23:21:05] *** dman777_1lter has quit IRC
[23:21:54] *** F1LT3R has quit IRC
[23:22:48] *** Poeticode has quit IRC
[23:22:48] *** dan2k3k4 has joined #angularjs
[23:22:54] *** elperdut_ has joined #angularjs
[23:25:00] *** jlebrech has quit IRC
[23:25:03] *** dan2k3k5 has joined #angularjs
[23:25:22] *** enlightenmental has quit IRC
[23:25:39] *** elperdut_ has quit IRC
[23:26:35] *** Zalabinsky has quit IRC
[23:27:20] *** Sky[x] has joined #angularjs
[23:28:35] *** dan2k3k4 has quit IRC
[23:28:44] *** sbellina has quit IRC
[23:30:10] *** jj has joined #angularjs
[23:30:30] *** jj has quit IRC
[23:31:56] *** ilhami has quit IRC
[23:32:12] *** DJDelusional has quit IRC
[23:32:36] *** bayousoft has joined #angularjs
[23:33:09] *** mellernoia-work has quit IRC
[23:33:30] *** enlightenmental has joined #angularjs
[23:35:24] *** Jae has quit IRC
[23:35:39] *** mellernoia has joined #angularjs
[23:36:07] *** nblue has joined #angularjs
[23:37:33] *** elperdut_ has joined #angularjs
[23:38:33] *** cvanball has quit IRC
[23:39:19] *** bennyc has joined #angularjs
[23:39:45] *** SevenZark7 has joined #angularjs
[23:40:26] *** ajk27 has joined #angularjs
[23:40:33] *** Jae has joined #angularjs
[23:41:28] *** ensyde has quit IRC
[23:41:46] *** ajk27 has quit IRC
[23:42:07] *** Sky[x] has quit IRC
[23:42:32] <Abdul_> anyone can help to re-direct google log into user dashboard without saving into DB.
[23:42:35] *** LeBlaaanc has quit IRC
[23:42:43] *** hefox has quit IRC
[23:42:59] *** LeBlaaanc has joined #angularjs
[23:43:16] *** italoacasas has quit IRC
[23:43:19] <Abdul_> some one suggested to use $window.location.href = '';
[23:43:41] <Abdul_> i used but still going to google log-in rather dashboard...
[23:43:57] <Abdul_> could you please suggest where exactly i can use this..
[23:44:37] *** TyrfingMjolnir has quit IRC
[23:44:51] *** nya_ has quit IRC
[23:45:11] *** mven has quit IRC
[23:45:12] *** ngbot has joined #angularjs
[23:45:12]
<ngbot> [angular.js] matsko force-pushed hubot-integration from ad0986f to 95f5edb: http://git.io/vu0fH
[23:45:12] <ngbot> angular.js/hubot-integration 95f5edb Matias Niemelä: chore: test to see if hubot picks this up
[23:45:12] *** ngbot has left #angularjs
[23:47:43] *** toysqueaky has quit IRC
[23:48:02] *** ycon_ has joined #angularjs
[23:48:14] *** subone has joined #angularjs
[23:48:28] *** ngbot has joined #angularjs
[23:48:28]
<ngbot> [angular.js] matsko force-pushed hubot-integration from 95f5edb to c6de9d0: http://git.io/vu0fH
[23:48:29] <ngbot> angular.js/hubot-integration c6de9d0 Matias Niemelä: chore: test to see if hubot picks this up
[23:48:29] *** ngbot has left #angularjs
[23:49:30] *** Guest16 has quit IRC
[23:50:34] <subone> Can anyone suggest a good way to notify an outer element that an inner element is animating with module.animation? The inner animation will effect the outer, so the outer needs to be restarted. I just need a way inside module.animation, given the inner element a way to notify the outer element to restart the animation. Something like element.myFn = function resetAnimation() {}
[23:51:03] *** cactauz is now known as cacts|works
[23:51:10] *** dan2k3k5 has quit IRC
[23:51:40] *** obbs has quit IRC
[23:51:56] *** buzzedword has quit IRC
[23:52:04] *** zivester has quit IRC
[23:52:16] <subone> Currently I have a directive for this, and it's easy to do require: '^outerDirective', but having trouble converting this to work with module animation for ng-if/ng-show/etc
[23:54:17] *** buzzedword has joined #angularjs
[23:54:39] *** obbs has joined #angularjs
[23:55:32] *** bayousoft has quit IRC
[23:56:32] *** encrypt__ has quit IRC
[23:56:41] *** kk_drop has quit IRC
[23:57:25] *** baweaver has joined #angularjs
[23:58:01] *** Abdul_ has quit IRC
[23:58:01] *** carpdiem has joined #angularjs
[23:58:23] *** Abdul_ has joined #angularjs
[23:58:46] *** KasperS has joined #angularjs
[23:58:54] *** bennyc has quit IRC
[23:59:37] *** ecmacoder has joined #angularjs
[23:59:41] *** jhirley has joined #angularjs
[23:59:49] *** buzzedword has quit IRC