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

Toggle Join/Part | bottom
[00:00:35] <after_r> I need the home link to go to just /
[00:00:40] *** yts has quit IRC
[00:00:50] <murtali> hey, looking for advice/design pattern for organizing functions used the view files that are dependent on data
[00:00:59] <murtali> *used by the view files
[00:01:07] *** Geertje123_ has quit IRC
[00:01:20] <after_r> wafflej0ck_: but the URL is not being updated
[00:01:45] *** eamonn has joined #angularjs
[00:03:04] *** yts has joined #angularjs
[00:03:54] *** cotko has joined #angularjs
[00:04:34] *** patrick99e99 has quit IRC
[00:05:12] *** squeakytoy has joined #angularjs
[00:05:14] *** tomengland_mbp has joined #angularjs
[00:05:28] *** codeninja-don has joined #angularjs
[00:05:35] *** monir has joined #angularjs
[00:05:38] <mtree> hello, i'm using ui-router for my few steps form. I have inputs that are ng-bound to parent controller. But when I go to the next step, data from first one is lost. Why?
[00:06:11] *** a3gis has joined #angularjs
[00:06:32] <wafflej0ck_> mtree: murtali: use a factory/service for storing your data for use across controllers
[00:06:47] <mtree> wafflej0ck_: but its single controller... is it?
[00:06:49] <wafflej0ck_> after_r: would try the UrlMatcher method then
[00:07:05] *** jmichaelward has quit IRC
[00:07:11] <wafflej0ck_> mtree: no when you navigate away and come back a new instance of the controller is made
[00:07:14] *** jonr22 has joined #angularjs
[00:07:18] <mtree> Ohhh!
[00:07:26] <wafflej0ck_> mtree: the factory/service are singletons and persist for the life of the app
[00:08:03] *** yoshokatana has joined #angularjs
[00:08:05] <mtree> do you have any simple tutorial explaining how I can pass data from the input to the factory?
[00:08:05] *** WeeJeWel has quit IRC
[00:08:25] <mtree> maybe i should try googling it before asking.. :)
[00:08:27] *** epantzar has joined #angularjs
[00:08:27] *** eBureau has joined #angularjs
[00:08:54] *** cakirke has joined #angularjs
[00:09:25] <wafflej0ck_> mtree: http://stackoverflow.com/questions/26695410/how-to-get-the-http-request-data-in-my-example/26695484#26695484 <-- this is a post I made has the essentials also does some manual caching but you can check out $http cache it might do what you need too, I just kinda prefer doing that part myself
[00:09:48] <mtree> perfect! Thanks. :-)
[00:10:14] <wafflej0ck_> np
[00:10:46] *** codeninja-don has quit IRC
[00:11:02] *** boxmein_ is now known as boxmein
[00:11:26] <after_r> am i doing something wrong though?
[00:11:28] *** iksik has quit IRC
[00:11:48] *** mary5030 has quit IRC
[00:11:56] *** jonr22 has quit IRC
[00:11:57] *** h-darklow_ has quit IRC
[00:12:06] *** soee_ has joined #angularjs
[00:12:18] *** nimomo has joined #angularjs
[00:12:21] *** mary5030 has joined #angularjs
[00:12:43] <Grokling> mtree: Heres a factory oriented plunker (with some extra stuff for free, but you can ignore the caching if you like..) http://plnkr.co/edit/PnP60l8sqZML20b0vEb6?p=preview
[00:12:51] <nimomo> hi, anyone can please help understand this error? how can I understand exactly what causes for that? http://dpaste.com/1V37FEX
[00:12:57] <wafflej0ck_> after_r: not that I'm aware of really, I mean if the server just re-routed the blank domain to the / root folder then I suppose you could get around the issue but not sure
[00:13:11] *** Sky[x] has quit IRC
[00:13:22] <after_r> mkay
[00:13:34] <after_r> thanks
[00:13:40] <Grokling> nimomo: Scroll up in your dev tools console.. the error is probably clearly written near the top in red ;-)
[00:13:46] *** adpirz has quit IRC
[00:13:50] *** soee has quit IRC
[00:14:03] *** {DV8} has quit IRC
[00:14:20] <nimomo> Grokling: (anonymous function)
[00:14:21] <nimomo> ?
[00:14:49] <nimomo> Grokling: it's what I see - http://dpaste.com/0TY57NJ
[00:14:56] <nimomo> on the console
[00:15:07] <mtree> wafflej0ck_: Grokling one more question. One the steps in nested ui-router views is allowing user to pick a photo from the computer. The photo is only for LOCAL usage (no uploading to the server). Is it possible to pass this photo to next step without uploading it to the server? Will factory handle it?
[00:16:10] <Grokling> mtree: certainly, but if you're not doing anything else with it, and you already have nested states happening, just stick it in scope in your outermost state, and then it'll be inherited.
[00:16:15] *** calmbird has quit IRC
[00:16:16] <wafflej0ck_> mtree: you could base64 encode the image and then use it with a image URI in an image source I believe but typically I would send the data to the server and just use a URL from there
[00:16:21] <after_r> mtree: use local storage
[00:16:40] *** delight_ has joined #angularjs
[00:17:07] *** mary5030 has quit IRC
[00:17:16] *** Foxandxss has quit IRC
[00:17:59] *** dc___ has joined #angularjs
[00:18:29] *** macabre has quit IRC
[00:18:31] *** NoNMaDDeN has joined #angularjs
[00:18:34] *** brandom has joined #angularjs
[00:18:46] <Grokling> nimomo: Usually it's a syntax error in one of your source files. In this case I'm not sure though - could possibly be a minification error. Maybe try using a non-minified copy of angular.js just to eliminate that as a possibility.
[00:18:54] *** punch has joined #angularjs
[00:19:12] *** Lakario has joined #angularjs
[00:19:20] <brandom> Without promise unwrapping how do I pass async results to a directive if it does not expect a promise?
[00:19:34] <Grokling> brandom: .then()
[00:19:39] *** emocakes has joined #angularjs
[00:19:41] *** freelyfred has joined #angularjs
[00:20:06] *** FFForever has joined #angularjs
[00:20:16] <nimomo> Grokling: I found that the issue is with the gulp html generated file (templates.js). I don't understand why the model is not identified.
[00:20:20] <FFForever> Hey hey, what's the best way to access an app constant in ng-href?
[00:20:29] <Grokling> brandom: doAsyncThing.then(function(results){$scope.results = results});
[00:20:34] <nimomo> I have this line within index.html - <script src="dist/templates/templates.js"></script>
[00:20:52] <brandom> Grokling: The directive uses ng-options for a typeahead and the getter calls a typeahead service. So I don't have access to the scope in the service, otherwise I would do just that.
[00:21:09] <brandom> Do I need to modify the service and pass scope as well?
[00:21:20] *** dc_ has quit IRC
[00:21:36] <wafflej0ck_> brandom: no you don't want to pass the scope to the service
[00:21:44] <brandom> Didn't think so..
[00:22:12] <brandom> So how to I get that nice unwrapped promise back to the getter function?
[00:22:35] <wafflej0ck_> brandom: just expose the data from the service and reference it from the view
[00:22:43] *** araujo has joined #angularjs
[00:22:43] *** araujo has joined #angularjs
[00:22:51] *** bkuberek has joined #angularjs
[00:22:58] *** macabre has joined #angularjs
[00:23:11] *** Foxandxss has joined #angularjs
[00:23:28] <wafflej0ck_> brandom: like ng-options="select as label for thing in Service.fetchedData" or whatever the case may be where Service gets injected into the controller and is assigned to a property of the scope for reference
[00:23:35] <dweave> waffleJ0ck_: don’t promises call $apply
[00:23:49] <dweave> in angular
[00:24:02] *** NoNMaDDeN has quit IRC
[00:24:11] <wafflej0ck_> dweave: no $http calls apply and ng-click does and $timeout so a couple of parts that use promises call apply but the promise itself doesn't trigger an apply
[00:24:12] *** TommyO has quit IRC
[00:24:38] <dweave> ah ok
[00:24:39] <dweave> thanks
[00:24:45] <wafflej0ck_> np
[00:24:48] <brandom> wafflej0ck_: That was my next best guess, however currently I have: thing in Service.get($viewValue), otherwise how does the service know when to fetch and when to sit?
[00:25:13] *** corehook has joined #angularjs
[00:25:33] *** kwaledesign has joined #angularjs
[00:25:47] <wafflej0ck_> brandom: you can still make the call to get from wherever really and so long as the object being pointed to changes and a $apply call happens (automatic with $http.get and such) then the digest will cause the view to update
[00:25:49] <murtali> wafflej0ck_: I have a service that i use to make the $http call. In my controller i inject the service, make the http call, and store the data on the controller $scope. in my views i’m calling functions, ex: averagePrice(), that manipulate the data. atm, i feel like i have controller soup, with multiple functions on the scope of the controller wrapped inside of the service callback. here’s what my controller looks like:
[00:25:50] <murtali> https://gist.github.com/murtali/b13af3e9d6417e91f6a6
[00:25:52] <brandom> I guess I will have to extend the directive to do the get..
[00:25:59] <dweave> waffleJ0ck_: does ng-click use a promise?
[00:26:17] *** sigurding has joined #angularjs
[00:26:23] <wafflej0ck_> dweave: no that didn't really fit the mold of what I was talking about but does call $apply for you
[00:26:28] <dweave> k cool
[00:26:39] <wafflej0ck_> dweave: check out the source for ngClick and whatnot they're typically not as hard to understand as you might think
[00:27:33] <wafflej0ck_> sometimes abstract but you can generally get the gist of what's going on if you have a feel for how the whole $apply then $digest then process $watchers stuff works
[00:28:00] *** bkuberek has quit IRC
[00:28:02] *** delight has quit IRC
[00:28:03] *** delight_ is now known as delight
[00:28:13] <brandom> wafflej0ck_: Thanks.
[00:28:37] *** a3gis has quit IRC
[00:29:08] *** jonr22 has joined #angularjs
[00:29:46] *** corehook has quit IRC
[00:29:54] *** foofoobar has quit IRC
[00:30:08] *** TuRnaD0 has joined #angularjs
[00:30:26] <wafflej0ck_> murtali: yeah I would probably just move a lot of this logic into a factory, I try to keep my controllers as slim as possible so I don't end up repeating things and usually having in a service/factory from the get go encourages me to just re-use it instead of rewriting things or copy and paste
[00:30:45] *** codeninja-don has joined #angularjs
[00:30:52] *** sigurding has quit IRC
[00:31:45] <murtali> wafflej0ck_: ok that makes sense, I haven’t used a factory yet so wasn’t sure. Does the view template’s ng-bind have access to the factory functions?
[00:32:50] *** wsmoak has quit IRC
[00:33:04] <murtali> wafflej0ck_: just need some clarification on the flow -> so the controller would call the factory which would grab the data - and I’d be able to use those functions on the factory in the view then?
[00:33:06] <wafflej0ck_> murtali: you end up injecting the factory into the service then making a reference to it from the scope so then you have some way from the view to bind to the data and functions in the factory
[00:34:18] *** kwaledesign has quit IRC
[00:34:41] <Grokling> murtali: Have a look at this plunker: http://plnkr.co/edit/PnP60l8sqZML20b0vEb6?p=preview
[00:34:48] <wafflej0ck_> murtali: angular.module('myapp',[]).controller('MyCtrl', function($scope, MyFactory){$scope.MyFactory = MyFactory}).factory('MyFactory', function(){var fact = {data:{},getStuff:function(){}}; /*add stuff to factory*/ return fact;});
[00:34:59] <wafflej0ck_> haha or what Grokling said probably :)
[00:35:10] *** ngbot has joined #angularjs
[00:35:10] <ngbot> [angular.js] chirayuk created pr_10184 (+1 new commit): http://git.io/U_d2dQ
[00:35:10] <ngbot> angular.js/pr_10184 e9b9421 Dustin: fix ($http): throw error when string URL is provided
[00:35:10] *** ngbot has left #angularjs
[00:35:16] *** ankushnarula has quit IRC
[00:35:25] *** ngbot has joined #angularjs
[00:35:25] <ngbot> [angular.js] chirayuk merged pr_10184 into master: http://git.io/pKeWFg
[00:35:25] *** ngbot has left #angularjs
[00:35:29] *** wsmoak has joined #angularjs
[00:35:35] *** ngbot has joined #angularjs
[00:35:35] <ngbot> [angular.js] chirayuk deleted pr_10184 at e9b9421: http://git.io/cQ8UQg
[00:35:35] *** ngbot has left #angularjs
[00:35:55] *** zzing has quit IRC
[00:37:01] <murtali> wafflej0ck: Grokling: makes more sense - thanks
[00:37:43] <mtree> wafflej0ck_: Grokling that's weird... i just printed $scope variable outside the nested view like this {{ foo.bar }} and now when INSIDE nested view i declare new value of this var IT IS REMEMBERED between nested views and changes are VISIBLE outside nested view
[00:37:44] <mtree> WTF
[00:38:04] <mtree> can anyone explain this?
[00:38:10] *** cthrax has quit IRC
[00:38:23] <Grokling> mtree: if 'foo' is defined in the outer view, then it makes perfect sense.
[00:38:41] <mtree> whaaaaaa :o
[00:39:03] *** monir has quit IRC
[00:39:05] <mtree> can you guys throw me some keywords i should google to understand this magic better?
[00:39:10] <Grokling> You can change foo.bar as much as you want. If you change foo, then you're fubar'd!
[00:39:39] *** dejanr has joined #angularjs
[00:39:51] *** gunn has joined #angularjs
[00:40:18] *** tech2 has joined #angularjs
[00:41:03] *** kirfu has joined #angularjs
[00:42:07] <Grokling> mtree: I have a desk. It's my desk, it's in my scope. On my desk I put some properties (pens, papers etc). If I look at my desk and want a pen, that's fine. If I get a new pen and put it on on my desk, also fine. If I sit at your desk and expect to see my pen, I'm out of luck right?
[00:42:19] *** tomengland_mbp has quit IRC
[00:42:42] <dweave> Grokling this isn’t specific to angular right? that’s just how referece works?
[00:42:49] <Grokling> Right.
[00:42:53] <dweave> might be useful to point that out
[00:43:04] *** nimomo has quit IRC
[00:43:05] <dweave> mtree that’s not magic that’s just how it works
[00:43:17] *** Oddman has joined #angularjs
[00:43:19] <Grokling> Might also be obvious from the real-world example too ;-)
[00:43:32] <dweave> yeah
[00:45:34] <Grokling> THEN, my kid gets me a new pen, knows that pens go on desks, but my desk isn't something she knows about, so she puts the pen on her desk. Then she wonders how come I don't know about the new pen she got me.
[00:45:52] <oniijin> wafflej0ck_ what'd i miss
[00:46:01] <Grokling> oniijin: MOAR dots!
[00:46:07] <Grokling> mostly..
[00:46:14] <wafflej0ck_> yup
[00:46:16] <oniijin> lol i saw he linked some youtube vid
[00:46:24] <oniijin> but it's too far back
[00:46:36] *** codeninj_ has joined #angularjs
[00:46:44] <Grokling> Think we set him on the right track anyway.
[00:47:12] <oniijin> shitty cold stormy day. just been sitting around playing destiny
[00:47:19] <wafflej0ck_> nice
[00:47:30] *** seriema has quit IRC
[00:47:37] <wafflej0ck_> not the cold stormy day but heard destiny is pretty cool
[00:47:57] <oniijin> it's not for everyone, but if it's the type of game u like then they do it well
[00:48:09] <oniijin> tho the DLC needs to come, people getting antsy for content
[00:50:18] *** codeninja-don has quit IRC
[00:50:34] *** amine has joined #angularjs
[00:50:50] *** macabre has quit IRC
[00:50:51] *** tech2 has quit IRC
[00:50:58] *** amine is now known as Guest88747
[00:51:52] *** yts has quit IRC
[00:52:06] *** dhrami has joined #angularjs
[00:52:12] *** joelwallis has quit IRC
[00:52:13] *** Nannet has quit IRC
[00:56:40] <after_r> wafflej0ck_: the best fix for my case I se is : $urlRouterProvider.when('', '/');; .. you agree?
[00:56:43] *** uru is now known as uru|away
[00:57:00] <after_r> see my testapp url again if wanna se
[00:57:06] <wafflej0ck_> after_r: ah hmm yeah didn't think about that
[00:57:46] <wafflej0ck_> after_r: yup looks good huh?
[00:57:54] <Grokling> after_r: Yes - I think I'm doing exactly that. Didn't find it when I looked earlier though!
[00:58:45] *** ssawickik has quit IRC
[00:58:51] <after_r> still would like to have a clean url
[00:58:55] <after_r> without the initial #
[00:59:01] <wafflej0ck_> after_r: look up html5mode
[00:59:07] <Grokling> You'd think I'd have this promise nonsense sorted out by now. I thought I did. Apparently not though!
[00:59:10] <after_r> right i know
[00:59:22] <after_r> but i mean with html4 mode
[00:59:28] <after_r> i will have html5 mode also
[00:59:37] *** eamonn has quit IRC
[01:00:12] *** eamonn has joined #angularjs
[01:00:16] *** phuh has quit IRC
[01:01:33] *** jonr22 has quit IRC
[01:02:04] *** Aerospark has quit IRC
[01:02:52] <after_r> i think the only solution is to use href instead of ui-sref
[01:02:53] *** kirfu has quit IRC
[01:02:59] *** epantzar has quit IRC
[01:03:10] *** edy has quit IRC
[01:03:29] *** epantzar has joined #angularjs
[01:03:43] *** rikkipitt has joined #angularjs
[01:04:12] *** Prjio has joined #angularjs
[01:04:43] *** codeninj_ has quit IRC
[01:04:56] *** TheAceOfHearts has joined #angularjs
[01:04:56] *** eamonn has quit IRC
[01:05:31] *** AciD`` has quit IRC
[01:05:56] *** trustyhank has quit IRC
[01:07:15] *** punch has quit IRC
[01:07:25] *** Johnny13371337 has quit IRC
[01:07:53] *** Fuzzier has quit IRC
[01:08:18] *** epantzar has quit IRC
[01:09:37] *** deanclkclk has joined #angularjs
[01:09:46] *** boxmein has quit IRC
[01:10:21] *** jonr22 has joined #angularjs
[01:11:06] *** nemothekid has joined #angularjs
[01:11:18] *** tfennelly has quit IRC
[01:11:22] <wafflej0ck_> after_r: not so sure about that, I'm not sure that you can actually make that work with legacy browsers which is why the html5mode will automatically fallback to the hashbang solution
[01:11:45] *** murtali has left #angularjs
[01:11:59] <wafflej0ck_> cause it uses the HTML5 history API where possible otherwise think you have problems with the back button I imagine
[01:12:15] *** jeffbalboni has joined #angularjs
[01:13:57] *** CitizenKane has quit IRC
[01:16:30] *** CitizenKane has joined #angularjs
[01:17:42] *** jonr22 has quit IRC
[01:18:04] *** emocakes has quit IRC
[01:19:41] *** SomeKittens has joined #angularjs
[01:20:13] *** rikkipitt has quit IRC
[01:20:20] *** dweave has quit IRC
[01:22:23] *** zivester has quit IRC
[01:23:21] *** Aerospark has joined #angularjs
[01:23:44] *** bkuberek has joined #angularjs
[01:23:44] *** zivester has joined #angularjs
[01:24:03] *** jlmitch5dev has joined #angularjs
[01:24:48] *** Guest29 has joined #angularjs
[01:25:00] *** Nijikokun has joined #angularjs
[01:25:18] *** reddy has joined #angularjs
[01:25:19] *** fedenunez has quit IRC
[01:25:35] *** Oxynum has joined #angularjs
[01:25:42] *** reddy is now known as Guest56315
[01:25:49] *** Nijikokun has joined #angularjs
[01:25:59] *** corehook has joined #angularjs
[01:26:00] *** Guest56315 has quit IRC
[01:26:15] *** fedenunez has joined #angularjs
[01:27:18] *** Oddman has quit IRC
[01:27:32] *** Oddman has joined #angularjs
[01:27:34] *** edzez_ has joined #angularjs
[01:27:41] *** Nijikokun has joined #angularjs
[01:28:48] *** bkuberek has quit IRC
[01:29:26] *** kirfu has joined #angularjs
[01:29:37] *** Guest29 has quit IRC
[01:30:39] *** Lingos has quit IRC
[01:30:43] *** corehook has quit IRC
[01:30:53] *** edzez has quit IRC
[01:31:14] *** after_r has quit IRC
[01:31:15] *** joelwallis has joined #angularjs
[01:31:32] *** AngularUI has joined #angularjs
[01:31:32] <AngularUI> [ng-grid] PaulL1 opened pull request #2199: Fix #2184(columnDef): make displayName somewhat dynamic (master...2184_display_name) http://git.io/7T972w
[01:31:32] *** AngularUI has left #angularjs
[01:32:28] *** disorder20 has quit IRC
[01:34:02] *** whunt has quit IRC
[01:35:10] *** Fuzzy has joined #angularjs
[01:35:24] *** younqcass has quit IRC
[01:35:38] *** whunt has joined #angularjs
[01:35:40] *** lw has quit IRC
[01:36:18] *** monir has joined #angularjs
[01:37:06] *** joshskidmore has joined #angularjs
[01:38:22] *** kirfu has quit IRC
[01:40:29] *** AngularUI has joined #angularjs
[01:40:29] <AngularUI> [ng-grid] PaulL1 closed pull request #2199: Fix #2184(columnDef): make displayName somewhat dynamic (master...2184_display_name) http://git.io/7T972w
[01:40:29] *** AngularUI has left #angularjs
[01:41:06] *** tfennelly has joined #angularjs
[01:41:36] *** AngularUI has joined #angularjs
[01:41:37] <AngularUI> [ng-grid] PaulL1 opened pull request #2200: Fix #2184(columnDef): make displayName somewhat dynamic (master...2184_display_name_squash) http://git.io/iI2AEQ
[01:41:37] *** AngularUI has left #angularjs
[01:41:53] *** yoshokatana has quit IRC
[01:42:13] *** delight has quit IRC
[01:42:23] *** josh-k_ has quit IRC
[01:42:59] *** freelyfred has quit IRC
[01:44:59] *** AngularUI has joined #angularjs
[01:44:59] <AngularUI> [ng-grid] PaulL1 pushed 2 new commits to master: http://git.io/E-8frg
[01:44:59] <AngularUI> ng-grid/master b810b83 Paul Lambert: Fix #2184(columnDef): make displayName somewhat dynamic
[01:44:59] <AngularUI> ng-grid/master 00dd706 Paul: Merge pull request #2200 from PaulL1/2184_display_name_squash...
[01:45:00] *** AngularUI has left #angularjs
[01:45:23] *** delight has joined #angularjs
[01:45:28] *** jmichaelward has joined #angularjs
[01:45:33] *** soee_ is now known as soee
[01:45:51] *** toad-br has quit IRC
[01:46:12] *** Lynxium has joined #angularjs
[01:46:41] *** joebobjoe has joined #angularjs
[01:46:52] <joebobjoe> Does the last bullet point in this answer have any validity
[01:46:55] <joebobjoe> http://stackoverflow.com/a/23386747
[01:47:52] *** mamarilmanson has joined #angularjs
[01:47:54] *** tfennelly has quit IRC
[01:48:07] <Grokling> joebobjoe: particularly this part? "Factory is a class. Use factories if you want to provide custom classes for your code (can't be done with services because they are already instantiated)"
[01:48:24] <joebobjoe> Grokling yes
[01:48:38] <Grokling> yes.
[01:48:40] <joebobjoe> Grokling: I thought everything factories could do services could do
[01:49:01] <Grokling> Nope - other way around.
[01:49:18] <joebobjoe> Grokling: I don't understand though
[01:49:35] <Grokling> A service is an instance of a 'service' factory.
[01:49:39] <joebobjoe> Grokling: What is an example of something a service can't do
[01:50:09] <Grokling> var newFoo = new Foo(); where Foo is a factory.
[01:50:19] *** jmichaelward has quit IRC
[01:50:50] <Grokling> You can still do Foo.getFoos() with a factory (as you might with a service)
[01:51:37] * araujo wonders what would be more restful or even pretty for a uri path , .. either "http://.../project/<name>" or using query "http://.../projects/?name=<name>" .........
[01:51:46] <araujo> I guess the former is cleaner...
[01:52:38] *** thomasreggi has joined #angularjs
[01:52:45] <Grokling> joebobjoe: Ultimately you can make either work, and there's no real 'one true answer' it depends on what you're trying to do. My observation is that the top minds around here use factories almost exclusively. That's reason enough for me!
[01:52:59] *** jlmitch5dev has quit IRC
[01:54:13] *** jlmitch5dev has joined #angularjs
[01:54:26] *** socketman has joined #angularjs
[01:54:30] <socketman> Hello
[01:54:32] *** ScioMin has joined #angularjs
[01:54:32] <joebobjoe> Grokling: I don't see the difference between service and factory. In one you create the object using this keyword and in the other you return the object
[01:54:39] *** CitizenKane has quit IRC
[01:54:40] *** jlmitch5dev has quit IRC
[01:54:46] *** Nannet has joined #angularjs
[01:54:49] <joebobjoe> Grokling Both are equally powerful
[01:55:17] *** jonr22 has joined #angularjs
[01:55:53] <Grokling> Same tool, different syntax, and different 'way of thinking'. Ultimately, both are derived from the resource class.
[01:56:16] *** jonr2219 has joined #angularjs
[01:57:40] *** thomasreggi has quit IRC
[01:58:29] *** zivester has quit IRC
[01:58:41] *** moritzs has joined #angularjs
[01:59:20] <joebobjoe> Grokling: Can services/factories take argument?
[01:59:42] *** moritzs has quit IRC
[01:59:46] *** zivester has joined #angularjs
[02:00:21] *** patrick99e99 has joined #angularjs
[02:00:23] <Grokling> joebobjoe: I only use factories (and yes, factories can take arguments) - here's an example: http://plnkr.co/edit/PnP60l8sqZML20b0vEb6?p=preview
[02:00:24] *** moritzs has joined #angularjs
[02:00:41] *** cmenscher has quit IRC
[02:00:47] *** jgladwill has joined #angularjs
[02:00:47] *** jgladwill has joined #angularjs
[02:00:52] *** opiates has quit IRC
[02:00:58] *** ChuckOckstarter has joined #angularjs
[02:00:59] *** moritzs has joined #angularjs
[02:01:06] *** thedodd has joined #angularjs
[02:01:19] *** jonr2219 has quit IRC
[02:01:30] *** thomasreggi has joined #angularjs
[02:01:54] <joebobjoe> Grokling: How does angular know what arguments to pass to the factory?
[02:02:15] <Grokling> joebobjoe: in what context?
[02:02:38] *** edrocks has joined #angularjs
[02:02:39] *** adpirz has joined #angularjs
[02:02:40] <joebobjoe> Grokling: like $http
[02:03:40] *** thedodd has quit IRC
[02:03:41] <Grokling> joebobjoe: There's no magic there that I'm aware of? You pass $http what you need to at the time?
[02:04:19] <joebobjoe> No, the Gadget factory takes two arguments. But you never pass those arguments when using Gadget
[02:04:24] *** thomasreggi has quit IRC
[02:05:18] *** patrick99e99 has quit IRC
[02:05:35] <Grokling> Ah right. got you. Angular matches those by name. That part is kinda magic - it's part of the dependency injection magic.
[02:05:58] <joebobjoe> Grokling: How is that not confusing? lol
[02:06:12] *** youngroger has joined #angularjs
[02:06:34] <Grokling> DI is one of the most confusing parts! Just trust that it works, and don't worry about it.
[02:06:57] *** adpirz has quit IRC
[02:07:03] <Luser> Guys, how would you write a function counting how many times every character occurs in a given string? I mean i get a string like 'aabbccc' and it should return { 'a':2, 'b':2, 'c':3}
[02:07:08] <Luser> Not sure how to handle counting part
[02:08:19] *** dannyc has joined #angularjs
[02:08:38] <Grokling> joebobjoe: I've updated the plunker a bit (mostly just re-frozen it after a conversation earlier today)
[02:09:26] *** AciD`` has joined #angularjs
[02:09:51] *** Aerospark has quit IRC
[02:10:11] <beckyconning_> hi! what if you keep making like "services" that are actually single functions is that ok? like i keep having services with a single method and then i was like uhm can i just do like whateverService() and then if i do that then what should i be calling it? is it ok to be a factory or should it be something else? oh no what is going on!
[02:10:34] *** Aerospark has joined #angularjs
[02:10:36] <beckyconning_> can values of constants which are functions have dependancy injection?
[02:10:37] *** monir has quit IRC
[02:10:49] *** eamonn has joined #angularjs
[02:11:32] *** youngroger has quit IRC
[02:11:38] <beckyconning_> i feel like these functions generally could be inside controllers but then those controllers would be really big
[02:11:47] <Grokling> beckyconning_: I'd be wrapping them all up into a utilityService perhaps?
[02:12:56] <Grokling> But then, if they're doing stuff to objects, maybe you'd be better to look at making your objects in factories, and making the functions a property of your objects (lets just call them Classes shall we?)
[02:13:05] *** dannyc has quit IRC
[02:13:28] *** tschundeee has joined #angularjs
[02:13:42] <beckyconning_> Grokling: oh ok! i can see how that is a very useful way of doing it. haha its hard coming from functional stuff to procedural / oo stuff. i just want modules with functions in them but then i want angular module dependancies injected into those modules so i can't just use browserify or whatever.
[02:14:38] *** AngularUI has joined #angularjs
[02:14:38] <AngularUI> [ng-grid] PaulL1 opened pull request #2201: Fix #2150(rowEquality): use row equality for getRow (master...2150_row_equality) http://git.io/dT8hFQ
[02:14:38] *** AngularUI has left #angularjs
[02:15:03] *** sgnl_ has quit IRC
[02:15:05] *** sigurding has joined #angularjs
[02:15:40] *** eamonn has quit IRC
[02:15:43] *** evotuned has quit IRC
[02:16:18] *** evotuned has joined #angularjs
[02:17:02] *** AngularUI has joined #angularjs
[02:17:02] <AngularUI> [ng-grid] PaulL1 closed pull request #2201: Fix #2150(rowEquality): use row equality for getRow (master...2150_row_equality) http://git.io/dT8hFQ
[02:17:02] *** AngularUI has left #angularjs
[02:17:57] <beckyconning_> uh the latest example of this is a function that returns a promise which resolves with a value which depends on the values which two promises returned by methods on two different services resolve with. its not my codebase so i can't just rejig everything btw.
[02:18:10] *** kuadrosx has quit IRC
[02:18:24] <beckyconning_> i think the idea of having an optional helper / utility service for each controller seems like a reasonable approach
[02:18:42] *** seriema has joined #angularjs
[02:20:06] *** sigurding has quit IRC
[02:21:09] *** Oxynum has quit IRC
[02:21:22] *** evotuned has quit IRC
[02:21:43] *** youngroger has joined #angularjs
[02:22:04] *** Aliks has quit IRC
[02:22:22] *** whunt has quit IRC
[02:24:32] *** seriema has quit IRC
[02:24:46] *** moritzs has quit IRC
[02:25:26] <joebobjoe> Grokling beckyconning Doesn't Angular have a value provider?
[02:25:43] *** tomengland_mbp has joined #angularjs
[02:26:02] *** socketman has quit IRC
[02:26:06] <beckyconning_> joebobjoe: yeah but can you inject dependencies into angular value / constant modules?
[02:26:18] *** jonr22 has quit IRC
[02:26:24] <beckyconning_> joebobjoe: or are you proposing something else?
[02:26:34] *** Evanion has quit IRC
[02:26:47] *** youngroger has quit IRC
[02:28:01] <joebobjoe> beckyconning_ You're making a lot of single use functions which you then depend upon correct?
[02:28:07] <beckyconning_> joebobjoe:
[02:28:11] <beckyconning_> joebobjoe: yes
[02:28:29] <joebobjoe> beckyconning_Do those functions depend on anything else?
[02:28:53] <beckyconning_> joebobjoe: yes, although i suppose i could pass the dependencies in where i use them?
[02:28:56] *** ElysiumNet has quit IRC
[02:29:31] <joebobjoe> Yes but you're supposed to let angular do all the dependency stuff for you
[02:29:31] <beckyconning_> joebobjoe: or even just pass in the required data from the dependencies
[02:29:51] <joebobjoe> beckyconning_ Yes that sounds better
[02:30:15] <joebobjoe> beckyconning_ But idk I'm not an angular expert
[02:30:15] *** phuh has joined #angularjs
[02:30:29] *** delight has quit IRC
[02:31:23] <joebobjoe> beckyconning_ What about return your function from a Factory?
[02:31:30] *** ConfusedJ has joined #angularjs
[02:31:38] <ConfusedJ> k
[02:31:40] <ConfusedJ> l
[02:31:51] <ConfusedJ> hello?
[02:32:40] *** gunn has quit IRC
[02:34:30] *** jlmitch5dev has joined #angularjs
[02:34:45] <beckyconning_> e.g. https://gist.github.com/beckyconning/21754cd9d8aa5c1c4868
[02:35:31] *** JBreit has joined #angularjs
[02:35:34] *** dimetron has quit IRC
[02:36:33] <beckyconning_> joebobjoe: ^?
[02:36:49] <ConfusedJ> l
[02:36:54] <beckyconning_> where somePromise and thingPromise come from different services
[02:37:03] <beckyconning_> and where getSomething would be called in a controller
[02:37:10] <beckyconning_> which has those services injected
[02:37:18] *** AngularUI has joined #angularjs
[02:37:18] <AngularUI> [ng-grid] PaulL1 opened pull request #2203: Fix #2157(selection): when select all disabled keep nbsp for alignment (master...2157_select_all) http://git.io/FFrcGA
[02:37:18] *** AngularUI has left #angularjs
[02:38:04] *** joelwallis has quit IRC
[02:38:11] <ConfusedJ> Anyone used play framework? I want to be able to call methods from the controller class in my js and i can't figure out how to
[02:38:11] *** Fuzzy has quit IRC
[02:39:39] *** Aliks has joined #angularjs
[02:40:23] *** Oddman has quit IRC
[02:40:37] *** lw has joined #angularjs
[02:40:54] <Grokling> beckyconning_: joebobjoe is already messing with this plunker, but it's probably also relevant for you.
[02:40:56] <Grokling> http://plnkr.co/edit/PnP60l8sqZML20b0vEb6?p=preview
[02:41:12] *** lw has quit IRC
[02:41:38] *** kayloos has joined #angularjs
[02:41:41] *** lw has joined #angularjs
[02:41:53] *** marr has quit IRC
[02:42:03] <brandom> anyone know a solid/flexible typeahead directive? my googles give me too many options and i'm low on time. i've already tried angular-ui and angular-strap.
[02:43:21] *** SergioFilhow_ has joined #angularjs
[02:43:22] <beckyconning_> ConfusedJ: this is heavily recommended against. you should probably try to do it the other way around but if you are sure you want to you then $("[ng-controller]").scope().$apply(function (scope) { scope.method() });
[02:43:56] *** alinou has quit IRC
[02:44:11] <brandom> both seem to be straddling 1.3/1.2 support resulting in too many bugs
[02:44:19] <beckyconning_> ConfusedJ: https://gist.github.com/beckyconning/8e8880d5dc7ddf51acc4
[02:44:19] *** kalusn has quit IRC
[02:44:20] *** cthrax has joined #angularjs
[02:44:31] *** gunn has joined #angularjs
[02:44:54] *** shinnya has quit IRC
[02:45:28] *** SergioFilhow has quit IRC
[02:45:58] <beckyconning_> joebobjoe: that looks even better! its basically what i was doing but people didn't seem happy about it lol
[02:45:58] *** joelwallis has joined #angularjs
[02:46:39] *** williamtdr has joined #angularjs
[02:47:46] *** Oxynum has joined #angularjs
[02:47:47] *** thedodd has joined #angularjs
[02:49:01] *** dc_ has joined #angularjs
[02:49:09] <joebobjoe> beckyconning_ well that may not even be the right answer
[02:49:24] <joebobjoe> beckyconning_ let me know when you find the answer
[02:49:28] <beckyconning_> joebobjoe: there are right answers!?!?!?!!!!? fuck!
[02:49:36] *** macabre has joined #angularjs
[02:49:38] <joebobjoe> usually
[02:49:59] *** dc_ has quit IRC
[02:50:45] <Grokling> Answers and politicians.. Just aim for the one that's least wrong ;-)
[02:50:47] *** wsmoak has quit IRC
[02:51:13] *** dc___ has quit IRC
[02:51:14] *** whitebook has joined #angularjs
[02:51:15] <beckyconning_> tbh i think thats the most useful idea following the "angular convention"
[02:51:25] <joebobjoe> Grokling Ron Paul 2008!
[02:52:32] <beckyconning_> given that the factory'recipe' is documented as being a value 'recipe' with the ability to have dependencies.
[02:53:12] *** TuRnaD0 has quit IRC
[02:53:20] *** Nijikokun has quit IRC
[02:53:32] <beckyconning_> https://docs.angularjs.org/guide/providers
[02:53:42] <beckyconning_> ty! : ) this has put my mind at ease
[02:53:53] *** nveselinov has joined #angularjs
[02:53:54] *** ludkiller has quit IRC
[02:54:14] *** ludkiller has joined #angularjs
[02:54:34] *** dhrami has quit IRC
[02:54:51] *** jlmitch5dev has quit IRC
[02:56:20] <Grokling> "Note: Yes, we have called one of our service recipes 'Service'. We regret this and know that we'll be somehow punished for our misdeed. It's like we named one of our offspring 'Child'. Boy, that would mess with the teachers."
[02:56:27] *** Foxandxss has quit IRC
[02:56:35] *** chrisshattuck has joined #angularjs
[02:56:48] *** alinou has joined #angularjs
[02:56:48] *** darrin has joined #angularjs
[02:56:58] <beckyconning_> ^
[02:57:01] <joebobjoe> beckyconning_ Yea that makes sense to me.
[02:57:26] *** whitebook has quit IRC
[02:57:49] *** mjw56 has joined #angularjs
[02:57:52] *** {DV8} has joined #angularjs
[02:57:55] <joebobjoe> Grokling Will they change that in Angular 2?
[02:58:01] *** macabre has quit IRC
[02:58:15] *** chrisshattuck has quit IRC
[02:59:00] <Grokling> joebobjoe: I have no idea.. I suspect it's on the list of 'confusing stuff we should take a look at' but it's early days for angular2, and already so much controversy about other things.
[02:59:46] *** soee has quit IRC
[03:00:01] *** chrisshattuck has joined #angularjs
[03:00:24] *** tfennelly has joined #angularjs
[03:01:10] *** chrisshattuck has quit IRC
[03:03:07] *** stormbytes has quit IRC
[03:04:03] *** Fishy_ has joined #angularjs
[03:04:57] *** Aerospark has quit IRC
[03:05:18] <beckyconning_> oh i thought that angular 1 'recipies' had been abstracted into generic module injection in angular 2.0?
[03:05:30] *** Aerospark has joined #angularjs
[03:05:39] *** annlewis has quit IRC
[03:05:45] *** Nijikokun has joined #angularjs
[03:05:50] *** Yahkob has joined #angularjs
[03:06:31] *** robksawyer has joined #angularjs
[03:07:05] *** dc_ has joined #angularjs
[03:08:12] *** monir has joined #angularjs
[03:08:37] *** tfennelly has quit IRC
[03:09:04] *** thedodd has quit IRC
[03:10:07] *** c00ljs has joined #angularjs
[03:11:04] *** phuh has quit IRC
[03:11:14] *** joebobjoe has quit IRC
[03:11:44] *** corehook has joined #angularjs
[03:12:07] *** jMyles has quit IRC
[03:12:27] *** zzing has joined #angularjs
[03:12:55] *** Oxynum has quit IRC
[03:13:22] *** Yahkob_ has joined #angularjs
[03:13:46] *** ConfusedJ has quit IRC
[03:13:58] *** whitebook has joined #angularjs
[03:14:07] *** themime has quit IRC
[03:14:14] *** lemur has joined #angularjs
[03:14:26] *** jgladwill has quit IRC
[03:14:27] *** c00ljs has quit IRC
[03:15:47] *** sigurding has joined #angularjs
[03:16:14] *** Yahkob has quit IRC
[03:16:14] *** AciD`` has quit IRC
[03:16:26] *** jmichaelward has joined #angularjs
[03:16:31] *** corehook has quit IRC
[03:17:08] <ScioMin> It's so hard to forget the jQuery spaghetti driven design and learn proper AngularJs :( But I'll get there. Doing a simple budget app in Angular Material http://i.imgur.com/4MRrhNt.png
[03:17:51] *** whitebook has quit IRC
[03:18:10] *** joelwallis has quit IRC
[03:18:32] *** cakirke has quit IRC
[03:18:56] *** AtomicCookie has quit IRC
[03:19:38] *** Fishy_ has quit IRC
[03:20:09] *** sigurding has quit IRC
[03:20:20] *** seriema has joined #angularjs
[03:20:37] *** jmichaelward has quit IRC
[03:20:43] *** codeman has joined #angularjs
[03:20:55] *** snapwich has joined #angularjs
[03:21:15] *** c9mm9dore has joined #angularjs
[03:22:08] *** snapwich has quit IRC
[03:22:22] *** AngularUI has joined #angularjs
[03:22:22] <AngularUI> [ng-grid] PaulL1 pushed 2 new commits to master: http://git.io/1JpNXg
[03:22:22] <AngularUI> ng-grid/master 109bb79 Paul Lambert: Fix #2157(selection): when select all disabled keep nbsp for alignment
[03:22:22] <AngularUI> ng-grid/master 56db1dc Paul: Merge pull request #2203 from PaulL1/2157_select_all...
[03:22:22] *** AngularUI has left #angularjs
[03:24:00] *** bayousoft has joined #angularjs
[03:24:18] *** c9mm9dore has left #angularjs
[03:24:39] *** seriema has quit IRC
[03:26:37] *** bhuvanaurora has joined #angularjs
[03:27:44] *** xastey has quit IRC
[03:29:45] *** night-owl is now known as zz_night-owl
[03:29:55] *** Yahkob has joined #angularjs
[03:30:28] *** zz_night-owl is now known as night-owl
[03:30:50] *** Fuzzy has joined #angularjs
[03:31:50] *** Aerospark has quit IRC
[03:32:23] *** Aerospark has joined #angularjs
[03:32:47] *** ScioMin has quit IRC
[03:32:54] *** Yahkob_ has quit IRC
[03:33:24] *** robksawyer has quit IRC
[03:33:37] *** bkuberek has joined #angularjs
[03:35:08] *** evotuned has joined #angularjs
[03:35:20] *** warehouse13 has joined #angularjs
[03:36:01] *** thedodd has joined #angularjs
[03:37:03] *** Left_Turn has quit IRC
[03:38:28] *** tomengland_mbp has quit IRC
[03:39:52] *** evotuned has quit IRC
[03:40:26] *** iamvfl has left #angularjs
[03:41:13] *** BobbieBarker has quit IRC
[03:41:15] *** younqcass has joined #angularjs
[03:41:16] *** alinou has quit IRC
[03:41:48] *** monir has quit IRC
[03:42:01] *** nya has quit IRC
[03:42:20] *** nya has joined #angularjs
[03:43:17] *** darrin has quit IRC
[03:43:35] *** darrin has joined #angularjs
[03:43:53] *** AngularUI has joined #angularjs
[03:43:53] <AngularUI> [ng-grid] PaulL1 opened pull request #2204: Fix #2201(footer): add footerCellFilter, footerCellTemplate (master...1966_footer_cell_filter) http://git.io/i53ZMw
[03:43:53] *** AngularUI has left #angularjs
[03:44:39] *** xxtjaxx has joined #angularjs
[03:44:42] *** thedodd has quit IRC
[03:44:44] *** Luser has quit IRC
[03:45:08] *** joshontheweb has joined #angularjs
[03:45:19] *** Luser has joined #angularjs
[03:45:33] *** AlSquirrel has quit IRC
[03:46:50] *** AngularUI has joined #angularjs
[03:46:51] <AngularUI> [ng-grid] PaulL1 pushed 2 new commits to master: http://git.io/OHPsjQ
[03:46:51] <AngularUI> ng-grid/master 12e1903 Paul Lambert: Fix #2201(footer): add footerCellFilter, footerCellTemplate
[03:46:51] <AngularUI> ng-grid/master 7d14ead Paul: Merge pull request #2204 from PaulL1/1966_footer_cell_filter...
[03:46:51] *** AngularUI has left #angularjs
[03:47:01] *** Yahkob_ has joined #angularjs
[03:47:14] *** MTGap has joined #angularjs
[03:47:49] *** cthrax has quit IRC
[03:49:58] *** Yahkob has quit IRC
[03:50:11] *** Luser has quit IRC
[03:50:45] *** jas- has quit IRC
[03:51:21] *** thepro4ever has joined #angularjs
[03:51:34] *** adpirz has joined #angularjs
[03:52:12] *** rchavik has joined #angularjs
[03:53:13] *** Nijikokun has quit IRC
[03:53:57] *** magnificrab has joined #angularjs
[03:54:01] *** Geertje123_ has joined #angularjs
[03:55:53] *** adpirz has quit IRC
[03:56:09] *** punch has joined #angularjs
[03:56:23] *** Yahkob_ has quit IRC
[04:00:36] *** punch has quit IRC
[04:01:39] *** Prjio has quit IRC
[04:02:03] *** kayloos has quit IRC
[04:02:05] *** Prjio has joined #angularjs
[04:02:31] *** kalusn has joined #angularjs
[04:05:28] *** tomengland_mbp has joined #angularjs
[04:06:26] *** cthrax has joined #angularjs
[04:06:30] *** Prjio has quit IRC
[04:06:32] *** Geertje123_ has quit IRC
[04:06:59] *** Hackwar has joined #angularjs
[04:07:07] *** kalusn has quit IRC
[04:08:22] <snurfery> question
[04:08:23] *** Hackwar1 has quit IRC
[04:08:32] <snurfery> I'm trying to do a simple replace directive
[04:08:36] *** punch has joined #angularjs
[04:08:51] <snurfery> but without a link or compile function - is that possible?
[04:09:01] <snurfery> lemme put it on plnkr
[04:10:11] *** dannyc has joined #angularjs
[04:10:27] *** RedOrangeZ has quit IRC
[04:10:54] *** phuh has joined #angularjs
[04:11:53] *** Nijikokun has joined #angularjs
[04:11:57] *** phuh has quit IRC
[04:12:59] *** thedodd has joined #angularjs
[04:13:09] *** ctanga has joined #angularjs
[04:13:14] *** lw has quit IRC
[04:14:30] *** lemur has quit IRC
[04:14:54] *** dannyc has quit IRC
[04:14:57] *** lemur has joined #angularjs
[04:15:05] *** slopjong has quit IRC
[04:15:56] <snurfery> ah nm it was working, my damn object was empty
[04:16:25] *** jlambert121 has joined #angularjs
[04:17:00] *** zzing has quit IRC
[04:17:59] *** lw has joined #angularjs
[04:18:07] *** Aerospark has quit IRC
[04:18:43] *** Aerospark has joined #angularjs
[04:19:47] *** lemur has quit IRC
[04:20:31] *** Fishy__ has joined #angularjs
[04:20:39] *** jlambert121 has joined #angularjs
[04:21:13] *** seriema has joined #angularjs
[04:21:16] *** k-dawg has joined #angularjs
[04:23:31] *** bhuvanaurora has quit IRC
[04:24:31] *** tomengland_mbp has quit IRC
[04:24:44] *** mary5030 has joined #angularjs
[04:24:53] *** Fishy__ has quit IRC
[04:26:07] *** bhuvanaurora has joined #angularjs
[04:26:17] *** seriema has quit IRC
[04:26:48] *** Aerospark has quit IRC
[04:27:58] *** AngularUI has joined #angularjs
[04:27:58] <AngularUI> [ng-grid] PaulL1 opened pull request #2205: Fix #2190(filter): allow custom filter function with no term" (master...2190_filter_update) http://git.io/Ah38ZQ
[04:27:58] *** AngularUI has left #angularjs
[04:28:51] *** whitebook has joined #angularjs
[04:29:15] *** shinnya has joined #angularjs
[04:29:52] *** angularjs608 has joined #angularjs
[04:30:01] *** AciD`` has joined #angularjs
[04:30:19] <angularjs608> hey guys i have a question about using a modal instead of javascripts confirm
[04:30:20] *** AngularUI has joined #angularjs
[04:30:20] <AngularUI> [ng-grid] PaulL1 pushed 2 new commits to master: http://git.io/S2gIrw
[04:30:20] <AngularUI> ng-grid/master 10d1d58 Paul Lambert: Fix #2190(filter): allow custom filter function with no term"
[04:30:20] <AngularUI> ng-grid/master 38e1973 Paul: Merge pull request #2205 from PaulL1/2190_filter_update...
[04:30:20] *** AngularUI has left #angularjs
[04:30:34] <angularjs608> how can i halt submition but not using e.preventDefault()
[04:30:49] *** davesidious__ has joined #angularjs
[04:30:54] <angularjs608> because e.preventDefault() removes the event entirely
[04:31:20] *** Aerospark has joined #angularjs
[04:31:48] *** jdummy has joined #angularjs
[04:32:03] <jdummy> Anyone here have a chromecast?
[04:33:05] *** bhuvanaurora has quit IRC
[04:33:32] *** k-dawg has quit IRC
[04:33:44] *** whitebook has quit IRC
[04:34:23] *** davesidious_ has quit IRC
[04:34:50] *** zivester has quit IRC
[04:35:02] *** stephen has joined #angularjs
[04:35:29] *** NoNMaDDeN has joined #angularjs
[04:36:05] *** sinequanon has joined #angularjs
[04:36:11] *** zivester has joined #angularjs
[04:36:13] *** evotuned has joined #angularjs
[04:36:36] *** cthrax has quit IRC
[04:36:49] *** Jet4Fire has joined #angularjs
[04:37:49] *** sinequanon has quit IRC
[04:38:15] *** AngularUI has joined #angularjs
[04:38:15] <AngularUI> [ui-router] christopherthielen pushed 1 new commit to master: http://git.io/joDqiQ
[04:38:16] <AngularUI> ui-router/master 5797c2e christopherthielen: docs($state): document 'parent' parameter
[04:38:16] *** AngularUI has left #angularjs
[04:39:00] *** monir has joined #angularjs
[04:39:27] *** darrin has quit IRC
[04:40:37] *** evotuned has quit IRC
[04:42:49] *** AngularUI has joined #angularjs
[04:42:49] <AngularUI> [ng-grid] PaulL1 opened pull request #2206: Fix #2190(doco): provide tutorial example of filter with no input (master...2190_filter_no_input) http://git.io/w_z4ww
[04:42:49] *** AngularUI has left #angularjs
[04:44:03] *** cthrax has joined #angularjs
[04:44:18] *** fedenunez has quit IRC
[04:45:17] *** AngularUI has joined #angularjs
[04:45:17] <AngularUI> [ng-grid] PaulL1 pushed 2 new commits to master: http://git.io/wwWDUw
[04:45:17] <AngularUI> ng-grid/master 12da16d Paul Lambert: Fix #2190(doco): provide tutorial example of filter with no input
[04:45:17] <AngularUI> ng-grid/master f1d20b2 Paul: Merge pull request #2206 from PaulL1/2190_filter_no_input...
[04:45:17] *** AngularUI has left #angularjs
[04:46:23] *** k-dawg has joined #angularjs
[04:46:32] *** jdummy has quit IRC
[04:47:49] *** jlambert121 has quit IRC
[04:48:22] *** mary5030 has quit IRC
[04:48:59] *** mary5030 has joined #angularjs
[04:49:40] *** zivester has quit IRC
[04:50:07] *** rburns has joined #angularjs
[04:50:29] *** dsdeiz has joined #angularjs
[04:52:37] *** ludkiller has quit IRC
[04:53:19] *** k-dawg has quit IRC
[04:53:29] *** hmsimha_ has joined #angularjs
[04:53:44] *** ludkiller has joined #angularjs
[04:53:45] *** mary5030 has quit IRC
[04:54:02] <snurfery> question
[04:54:09] <snurfery> ah nm
[04:54:39] *** c00ljs has joined #angularjs
[04:56:20] *** AngularUI has joined #angularjs
[04:56:20] <AngularUI> [ng-grid] PaulL1 opened pull request #2207: Fix #1827(menu): change attribute to name from title, suppresses tooltip (master...1827_menu_tooltip) http://git.io/xR37xg
[04:56:20] *** AngularUI has left #angularjs
[04:56:36] *** max_ has joined #angularjs
[04:58:37] *** zivester has joined #angularjs
[05:00:29] *** corehook has joined #angularjs
[05:01:25] *** stephen has quit IRC
[05:01:45] *** stephen has joined #angularjs
[05:02:35] *** Prjio has joined #angularjs
[05:04:33] *** rburns has quit IRC
[05:04:48] *** mmealling has joined #angularjs
[05:04:58] *** jmichaelward has joined #angularjs
[05:05:00] *** corehook has quit IRC
[05:05:21] *** AngularUI has joined #angularjs
[05:05:21] <AngularUI> [ng-grid] PaulL1 pushed 3 new commits to master: http://git.io/OB5AtQ
[05:05:22] <AngularUI> ng-grid/master 385beee Paul Lambert: Fix #1827(menu): change attribute to name from title, suppresses tooltip
[05:05:22] <AngularUI> ng-grid/master 39a320d Paul Lambert: Fix e2e test error on filters
[05:05:22] <AngularUI> ng-grid/master 5102532 Paul: Merge pull request #2207 from PaulL1/1827_menu_tooltip...
[05:05:22] *** AngularUI has left #angularjs
[05:05:49] *** Yahkob has joined #angularjs
[05:06:50] *** rburns has joined #angularjs
[05:06:54] *** Prjio has quit IRC
[05:08:48] *** sirkitree|afk has joined #angularjs
[05:08:56] *** sirkitree|afk is now known as sirkitree
[05:09:15] *** warehouse13 has quit IRC
[05:09:49] *** sirkitree is now known as sirkitree|afk
[05:10:06] *** jmichaelward has quit IRC
[05:11:21] *** Brainling has joined #angularjs
[05:12:07] *** nycdevgirl has joined #angularjs
[05:12:59] *** monir has quit IRC
[05:13:03] *** dcherman has joined #angularjs
[05:13:31] *** discgo has joined #angularjs
[05:16:35] *** dcherman2 has joined #angularjs
[05:18:11] *** AngularUI has joined #angularjs
[05:18:11] <AngularUI> [ng-grid] PaulL1 opened pull request #2208: Fix #2190(filtering): further adjustment to noTerm logic (master...2190_further) http://git.io/oV7qgw
[05:18:11] *** AngularUI has left #angularjs
[05:19:06] *** JR____ has joined #angularjs
[05:19:52] *** dcherman has quit IRC
[05:19:53] <beckyconning_> you know when you have a record like object that is almost like a template for other record like objects?
[05:19:59] <beckyconning_> like: var x = { cancelText: "Cancel" }; getY.then(function (y) { return angular.extend({}, x, y });
[05:20:33] <beckyconning_> in my head i think of them as templates to be filled in or completed but templates is a very angular word so... what should i call them?
[05:20:44] <beckyconning_> like template has a very specific meaning in web app stuff
[05:21:15] *** robksawyer has joined #angularjs
[05:21:19] *** Fishy__ has joined #angularjs
[05:21:53] *** Milkweed has joined #angularjs
[05:22:10] <Brainling> mixin is a common term for similar behavior. You're not inheriting because you're not establishing identity, but you are "mixing in" that object
[05:22:25] *** seriema has joined #angularjs
[05:24:35] *** burzum has joined #angularjs
[05:25:15] *** burzum2 has quit IRC
[05:25:37] *** zivester has quit IRC
[05:26:18] *** Fishy__ has quit IRC
[05:26:35] <beckyconning_> cool! so what are the components of a mixin called? in that scenario would base and details be good ideas? so then you mixinDetailsWithBase?
[05:26:45] <beckyconning_> it just seems to be a pattern i repeat a lot
[05:26:57] *** zivester has joined #angularjs
[05:27:02] *** AciD`` has quit IRC
[05:27:18] *** seriema has quit IRC
[05:27:56] *** svteoi has joined #angularjs
[05:28:46] *** threesixes has quit IRC
[05:30:11] *** ctanga has quit IRC
[05:30:39] *** macabre has joined #angularjs
[05:34:16] *** k-dawg has joined #angularjs
[05:34:17] *** jonr22 has joined #angularjs
[05:36:03] *** josh-k has joined #angularjs
[05:36:58] *** evotuned has joined #angularjs
[05:38:40] *** rburns has quit IRC
[05:38:41] *** punch has quit IRC
[05:39:00] *** punch has joined #angularjs
[05:39:07] *** punch has quit IRC
[05:39:14] *** jonr22 has quit IRC
[05:40:31] *** adpirz has joined #angularjs
[05:40:42] *** lw has quit IRC
[05:40:43] *** eBureau has quit IRC
[05:41:31] *** LoveAndHappiness has joined #angularjs
[05:41:39] *** chrisshattuck has joined #angularjs
[05:41:48] *** evotuned has quit IRC
[05:42:10] *** trustyhank has joined #angularjs
[05:43:17] *** Alina-malina has quit IRC
[05:44:00] *** Alina-malina has joined #angularjs
[05:44:05] *** Shrooms has joined #angularjs
[05:44:13] *** threesixes has joined #angularjs
[05:45:16] *** macabre has quit IRC
[05:45:30] *** adpirz has quit IRC
[05:45:38] *** dhrami has joined #angularjs
[05:45:39] *** nycdevgirl has quit IRC
[05:45:56] *** edrocks has quit IRC
[05:46:43] *** oste has joined #angularjs
[05:48:15] *** stephen has quit IRC
[05:49:42] *** MTGap has quit IRC
[05:50:21] *** rchavik has quit IRC
[05:53:35] *** mmealling has quit IRC
[05:55:19] *** bkuberek has quit IRC
[05:55:42] *** shinnya has quit IRC
[05:56:37] *** ciwolsey has quit IRC
[05:56:56] *** BahamutWC|Work has joined #angularjs
[05:57:44] *** plato has quit IRC
[05:59:13] *** bmac has joined #angularjs
[06:00:43] *** AngularUI has joined #angularjs
[06:00:43] <AngularUI> [ng-grid] PaulL1 opened pull request #2209: Fix #2141(header): no click handler if no sort or column menu (master...2141_suppress_column_menu_click) http://git.io/J-3oDA
[06:00:44] *** AngularUI has left #angularjs
[06:01:12] *** deanclkclk has quit IRC
[06:01:20] *** k-dawg has quit IRC
[06:01:39] *** patrick99e99 has joined #angularjs
[06:01:47] *** nemothekid has quit IRC
[06:02:08] *** cthrax has quit IRC
[06:02:19] <beckyconning_> whats the best way to lay out a long list of dependencies on a provider definition (non-minified)?
[06:02:56] <BahamutWC|Work> man..IE and SVGs don’t play together well
[06:03:11] *** matisoffn has joined #angularjs
[06:03:13] <beckyconning_> .controller('someController', function (far, too, many, dependencies, omg, is, this, trying, to, tell, me, something) { });
[06:03:25] *** rchavik has joined #angularjs
[06:03:26] <matisoffn> http://stackoverflow.com/questions/27085721/angular-datatables-directive-apply-ready-on-promise-return-not-recognizing-a-re
[06:03:40] <BahamutWC|Work> beckyconning_: you could do .provider(‘foo’, [‘bar’, ‘baz’, function (bar, baz) {…}])
[06:03:44] *** Prjio has joined #angularjs
[06:03:44] *** AngularUI has joined #angularjs
[06:03:44] <AngularUI> [ng-grid] PaulL1 closed pull request #2209: Fix #2141(header): no click handler if no sort or column menu (master...2141_suppress_column_menu_click) http://git.io/J-3oDA
[06:03:44] *** AngularUI has left #angularjs
[06:03:48] *** deanclkclk has joined #angularjs
[06:03:48] <BahamutWC|Work> or just use ng-annotate
[06:05:19] *** nemothekid has joined #angularjs
[06:05:25] *** LekisS has joined #angularjs
[06:05:35] <beckyconning_> BahamutWC|Work: ah i think i've asked a bad question i mean... if your pm has put a line char limit and your dependencies are pushing that line over that limit how can you best lay them out over potentially multiple lines
[06:06:00] *** LekisS has quit IRC
[06:06:23] *** patrick99e99 has quit IRC
[06:06:44] <BahamutWC|Work> something like this beckyconning_ ? http://pastebin.com/w88BXm2z
[06:07:10] <beckyconning_> BahamutWC|Work: that makes sense, thanks!
[06:07:10] *** monir has joined #angularjs
[06:07:17] <BahamutWC|Work> np
[06:08:22] *** Prjio has quit IRC
[06:08:25] *** deanclkclk has quit IRC
[06:09:11] *** phishy has quit IRC
[06:09:52] *** Milkweed has quit IRC
[06:10:19] *** bmac has quit IRC
[06:11:05] *** thepro4ever has quit IRC
[06:11:26] <matisoffn> can anybody take a look at this tough problem im having with a directive? http://stackoverflow.com/questions/27085721/angular-datatables-directive-apply-ready-on-promise-return-not-recognizing-a-re
[06:11:38] *** dannyc has joined #angularjs
[06:13:34] *** AndroUser has joined #angularjs
[06:14:19] *** c00ljs has quit IRC
[06:14:50] *** lw has joined #angularjs
[06:15:02] <s3shs> beckyconning_, like what you have.
[06:15:21] <beckyconning_> s3shs: ?
[06:15:25] *** bmac has joined #angularjs
[06:15:35] *** wolfman2000 has quit IRC
[06:15:38] <s3shs> nevermind.
[06:15:41] *** numenor has joined #angularjs
[06:15:57] *** dannyc has quit IRC
[06:16:01] <s3shs> My scrollbar was not at the bottom for some reason.
[06:16:02] *** SergioFilhow_ has quit IRC
[06:16:08] <AndroUser> Who's using angularjs v2
[06:16:14] *** corehook has joined #angularjs
[06:16:40] <AndroUser> I hears there's been a lot of change
[06:16:56] *** mennea has joined #angularjs
[06:17:33] <BahamutWC|Work> I would wait until the templating solution to tackle using angular 2 fully
[06:17:41] <BahamutWC|Work> but…if you want, you could use di.js I guess
[06:18:17] *** plato has joined #angularjs
[06:18:42] *** plato has joined #angularjs
[06:20:19] *** lemur has joined #angularjs
[06:20:48] *** {DV8} has quit IRC
[06:20:54] *** corehook has quit IRC
[06:21:40] *** tfennelly has joined #angularjs
[06:22:07] *** Fishy__ has joined #angularjs
[06:22:57] *** jlmitch5dev has joined #angularjs
[06:23:26] *** seriema has joined #angularjs
[06:23:26] *** LoveAndHappiness has quit IRC
[06:23:26] *** plato has quit IRC
[06:25:53] *** tfennelly has quit IRC
[06:26:28] *** areologist has joined #angularjs
[06:26:40] *** renlo has joined #angularjs
[06:27:29] *** Fishy__ has quit IRC
[06:27:48] *** bhuvanaurora has joined #angularjs
[06:27:52] <areologist> Evenin'all
[06:27:57] *** seriema has quit IRC
[06:29:18] *** cotko has quit IRC
[06:30:12] *** nycdevgirl has joined #angularjs
[06:32:50] *** bhuvanaurora has quit IRC
[06:33:15] *** AndroUser is now known as Aengus
[06:33:37] *** Aengus is now known as id0o0bi
[06:33:44] <areologist> Are core team members ever active in here?
[06:33:58] <s3shs> Sometimes. Gotta gripe?
[06:34:12] <reavengr1y> I am a very important person as well
[06:34:20] <reavengr1y> How can I be of importance to you
[06:34:29] <s3shs> liar!
[06:34:35] <reavengr1y> what a hater
[06:34:46] <s3shs> I can't do it. I'm sorry.
[06:34:52] <s3shs> You're loved.
[06:34:55] <areologist> Tee-hee, a gripe? nah. Just an annoying question.
[06:34:58] <reavengr1y> and important :')
[06:35:05] *** bhuvanaurora has joined #angularjs
[06:35:05] <s3shs> And important.
[06:35:12] <areologist> Wondering about the 1.3.x port of the 2.0 router
[06:35:20] <BahamutWC|Work> so…anyone here know of any subtlies with IE and SVG elements with camelcased attributes?
[06:37:02] *** sinequanon has joined #angularjs
[06:37:28] *** doug64k has joined #angularjs
[06:37:46] *** evotuned has joined #angularjs
[06:38:01] <areologist> Sorry, Bahamut. :-(
[06:38:23] *** nycdevgirl has quit IRC
[06:38:41] <areologist> in the ng-europe talk on the 2.0 router it was said that they're working on a 1.3 port to replace ngRoute
[06:39:12] <areologist> from what I saw of the 2.0 router I'd much rather use it (or its port) than ui-router, but no indication of a timeline.
[06:39:54] <areologist> AND, I wonder to what extent the project has been confounded by Eisenberg's abrupt departure. He's by far the biggest contributor to the current 2.0 router code in GH
[06:40:37] <areologist> Also, in his blog post he said he left because of difference in vision, or some crap, so I wonder if the current router design is still valid or if it will be rearchitected
[06:40:50] *** cads has quit IRC
[06:41:03] <s3shs> They've been talking about this new router for quite some time.
[06:41:13] *** max_ has quit IRC
[06:41:44] *** bhuvanaurora has quit IRC
[06:41:50] <BahamutWC|Work> ctanga seems to be of the opinion that ui-router will have more features still
[06:42:12] *** evotuned has quit IRC
[06:42:14] <areologist> the pipeline architecture of the 2.0 router may be more flexible
[06:42:39] *** bhuvanaurora has joined #angularjs
[06:42:51] <BahamutWC|Work> gonna have to weigh whether it’s worth switching when it gets showcased - that’s some code refactor overhead
[06:43:03] <BahamutWC|Work> also, depending on the libraries being used, it may be impossible to switch, i.e. Ionic
[06:43:10] <renlo> is anyone here familiar with the ui-router's events and a state's resolve ?
[06:43:13] <areologist> from what I saw in the ng-europe talk I would almost certainly prefer the 2.0 router to ui-router (not that ui-router isn't a great piece of code--it is)
[06:43:20] <BahamutWC|Work> renlo: ask your question
[06:43:36] *** monir_ has joined #angularjs
[06:43:37] *** dejanr has quit IRC
[06:43:47] *** wex13r has joined #angularjs
[06:43:50] *** monir has quit IRC
[06:43:52] *** jMyles has joined #angularjs
[06:43:59] <areologist> Bahamut, agreed. Ideally a stable release will fit with the timeline for my current big angular project
[06:44:29] *** bmac has quit IRC
[06:44:39] <renlo> i have an event for $stateChangeStart which is firing before a state's resolve has finished. I'm not sure how to do this the right way, to make it so the event fires only after resolve is finished
[06:45:00] <renlo> http://pastebin.com/xK4Mee38
[06:45:06] <renlo> down at the bottom is the event
[06:45:14] <sacho> you can't
[06:45:14] <renlo> it works great when everything is all loaded
[06:45:16] *** mary5030 has joined #angularjs
[06:45:25] <sacho> unless you can somehow access the resolve promise
[06:45:38] <renlo> but if you do a hard reset it auto redirects to the root.home because init hasnt been resolved yet
[06:45:41] <sacho> and wait on it in your event handler
[06:46:01] <sacho> check out the params you get with stateChange, maybe one of them is that promise
[06:46:07] *** whunt has joined #angularjs
[06:46:23] *** mennea has quit IRC
[06:46:53] *** bhuvanaurora has quit IRC
[06:46:59] *** {DV8} has joined #angularjs
[06:47:01] *** mennea has joined #angularjs
[06:47:11] <renlo> ill try that sacho
[06:48:19] <areologist> one point on the side of the 1.3/2.0 router is less headache if app is ever upgraded to 2.0
[06:48:46] *** mary5030_ has joined #angularjs
[06:49:23] *** mary5030 has quit IRC
[06:49:56] *** JR____ has quit IRC
[06:50:26] *** mamarilmanson has quit IRC
[06:51:31] *** chrisshattuck has quit IRC
[06:51:35] *** id0o0bi has quit IRC
[06:52:27] *** xxMatiasFxx has quit IRC
[06:52:49] *** xxMatiasFxx has joined #angularjs
[06:53:04] <BahamutWC|Work> well, 2.0 is going to be a big change regardless
[06:53:12] <BahamutWC|Work> upgrading ot ES6 will provide the most gains
[06:53:16] <BahamutWC|Work> to*
[06:53:46] *** jmichaelward has joined #angularjs
[06:54:15] *** threesixes has quit IRC
[06:54:23] *** numenor has quit IRC
[06:55:54] *** numenor has joined #angularjs
[06:57:26] <numenor> Hello.. I am facing a problem with ui-router and ui-bootstrap modal..
[06:57:55] <areologist> Are you using ES6 already, Bahamut? I mean for production code.
[06:58:24] *** jmichaelward has quit IRC
[06:58:24] <areologist> If so, are you using Traceur? And if so, are you doing offline compilation to ES5, or what?
[06:58:26] <numenor> Please someone have a look at this plunkr : http://plnkr.co/edit/lEKI9Nj5fSG8u8LVgefd?p=preview
[06:58:29] <renlo> sacho: what if i made a custom event for the resolve?
[06:58:43] <renlo> resolve_loaded or something
[06:58:58] <sacho> you could do that I guess
[06:59:15] <numenor> sacho, Can you please have a look at this plnkr : http://plnkr.co/edit/lEKI9Nj5fSG8u8LVgefd?p=preview
[06:59:23] <BahamutWC|Work> areologist: not yet, but I have done some experimenting - I’ve successfully hooked up ES6 module loader, Traceur, and System.js to a frontend though
[06:59:30] <sacho> sorry, I have to go
[06:59:35] <numenor> Humm Ok
[06:59:43] <numenor> anyone else please ?
[06:59:56] *** AndroUser has joined #angularjs
[07:00:13] <BahamutWC|Work> what’s the issue numenor?
[07:00:16] <renlo> anyways thanks man
[07:00:18] *** AndroUser is now known as id0o0bi
[07:00:34] <numenor> BahamutWC , I want to open a login modal globally.
[07:01:01] <numenor> I have a mainController which acts aas a global controller, It will host the login dialogue.
[07:01:22] <BahamutWC|Work> numenor: why tie the modal to a state then?
[07:01:37] <numenor> Yes, I am really new to this, Can you suggest.
[07:01:38] *** sacho has quit IRC
[07:01:39] <BahamutWC|Work> why not just create a wrapper service that has all of the modal config already set up and expose a simple show method
[07:02:04] <BahamutWC|Work> then inject the new modal service and just trigger modal.show() whenever you want to show the modal
[07:02:20] <numenor> I had to tie it to state so that the modal could be shown via link and it also could be closed using the back button
[07:02:25] *** matisoffn has quit IRC
[07:02:27] *** SahanH has joined #angularjs
[07:02:33] <BahamutWC|Work> yay finally IE tests passed
[07:02:35] *** id0o0bi has quit IRC
[07:02:39] <areologist> BahamutWC, cool. I've been meaning to experiment too. Where does AtScript fit in? If you can use most of the ES6 features and transpile to 5, why is AtScript needed?
[07:02:52] <BahamutWC|Work> numenor: you can use ng-click instead of ui-sref
[07:03:06] <BahamutWC|Work> and in the function on scope trigger the modal
[07:03:23] <BahamutWC|Work> areologist: haven’t tried AtScript yet (is it built into Traceur yet?)
[07:03:39] <BahamutWC|Work> but AtScript sounds like it’s reminiscient of annotations in languages like Java
[07:03:43] <numenor> I trid that way but the client wants that if the url to login is pasted , the page should show the login.
[07:03:44] <areologist> I don't know. I think I'll Google and read up a bit.
[07:03:53] <numenor> Also the back button should be able to close the modal
[07:04:10] *** boneskull has quit IRC
[07:04:27] <numenor> The login should behave just like a route, But instead of a page it should be a modal
[07:04:31] *** id0o0bi has joined #angularjs
[07:06:04] <BahamutWC|Work> grr jshint strikes again
[07:06:06] *** boneskull has joined #angularjs
[07:06:16] *** svteoi has quit IRC
[07:06:28] <BahamutWC|Work> numenor: hmm, that seems stupid to me
[07:06:32] *** squeakytoy2 has joined #angularjs
[07:06:39] <BahamutWC|Work> why would you want as a UX a url tied to a modal?
[07:06:58] *** bhuvanaurora has joined #angularjs
[07:07:03] <numenor> Yes, But cant argue.
[07:07:24] *** fatshark has quit IRC
[07:07:46] <BahamutWC|Work> I personally would argue that, I don’t see any use case where that is a necessity
[07:07:49] <numenor> His point is that if the modal is opened on a phone, Users have a tendency to press the back button to close the modal,
[07:08:13] *** threesixes has joined #angularjs
[07:08:13] <BahamutWC|Work> you can control how the modal is closed though
[07:08:16] *** squeakytoy has quit IRC
[07:08:22] <numenor> No one is going to search for the modal's X close button
[07:08:37] *** monir_ has quit IRC
[07:08:38] *** zivester has quit IRC
[07:08:45] <BahamutWC|Work> also the back button would only close the modal only if you tie it to history
[07:09:18] <numenor> Yes , I did that by monitoring locationChangeStart and closing the modal
[07:09:44] *** Nijikokun has quit IRC
[07:10:06] <numenor> But the problem is that If the site is visited in a fresh tab, and the first thing done is the modal being opened, The locationChangeStart wont catch the back button as the tab is fresh
[07:10:18] *** tomengland_mbp has joined #angularjs
[07:10:23] <numenor> and the page will navigate to empty
[07:10:46] <BahamutWC|Work> your controller could trigger it on load
[07:10:46] *** boneskull has quit IRC
[07:11:33] <numenor> Didn't get you.
[07:11:51] <numenor> Trigger to show the modal ?
[07:12:37] *** nveselinov has left #angularjs
[07:12:38] *** martianboy has joined #angularjs
[07:12:39] <BahamutWC|Work> module.controller(‘MainCtrl’, function (modalService) { modalService.show(); }); for example
[07:12:46] <numenor> Okay
[07:12:49] <BahamutWC|Work> that way as soon as the controller loads, the modal shows
[07:12:59] <numenor> right
[07:13:40] *** boneskull has joined #angularjs
[07:14:03] *** joshontheweb has quit IRC
[07:14:54] <numenor> Thank you for your time Bahamut , I will work along that lines
[07:15:05] <BahamutWC|Work> np
[07:15:14] <BahamutWC|Work> glad to help even when exhausted :)
[07:15:53] *** wallerdev has joined #angularjs
[07:16:27] *** mennea has quit IRC
[07:16:30] *** id0o0bi has quit IRC
[07:16:32] *** SergioFilhow_ has joined #angularjs
[07:17:02] *** mennea has joined #angularjs
[07:17:22] *** joshontheweb has joined #angularjs
[07:17:24] *** cornerma1 has joined #angularjs
[07:17:41] *** wallerdev has quit IRC
[07:18:30] *** dcherman has joined #angularjs
[07:19:09] *** night-owl is now known as zz_night-owl
[07:19:47] *** one0one has quit IRC
[07:19:58] *** Aerospark has quit IRC
[07:20:22] *** Fishy__ has joined #angularjs
[07:20:22] *** dcherman2 has quit IRC
[07:20:38] *** boneskull has quit IRC
[07:20:54] *** cornerman has quit IRC
[07:20:59] *** cornerma1 is now known as cornerman
[07:21:48] *** SergioFilhow_ has quit IRC
[07:23:11] *** stephen has joined #angularjs
[07:23:18] *** jonr22 has joined #angularjs
[07:23:21] *** boneskull has joined #angularjs
[07:23:36] *** rchavik has quit IRC
[07:23:47] *** mary5030_ has quit IRC
[07:24:21] *** seriema has joined #angularjs
[07:24:22] *** mary5030 has joined #angularjs
[07:24:54] *** Fishy__ has quit IRC
[07:24:55] *** Nijikokun has joined #angularjs
[07:25:13] *** Nijikokun has quit IRC
[07:25:48] *** Nijikokun has joined #angularjs
[07:25:57] *** IvailoStoianov has joined #angularjs
[07:26:43] *** Yahkob has quit IRC
[07:26:52] *** Leon has quit IRC
[07:27:50] *** jgladwill has joined #angularjs
[07:27:57] *** jonr22 has quit IRC
[07:28:53] *** mary5030 has quit IRC
[07:29:29] *** adpirz has joined #angularjs
[07:29:48] *** seriema has quit IRC
[07:30:26] *** Aerospark has joined #angularjs
[07:30:55] *** bhuvanaurora has quit IRC
[07:33:55] *** younqcass has quit IRC
[07:34:02] *** mccallist has quit IRC
[07:34:14] *** adpirz has quit IRC
[07:36:00] *** rchavik has joined #angularjs
[07:36:51] *** prechtl has joined #angularjs
[07:37:04] *** boneskull has quit IRC
[07:37:14] *** diegoaguilar has quit IRC
[07:37:27] *** tschunde_ has joined #angularjs
[07:37:32] *** wex13r has left #angularjs
[07:38:17] *** dsdeiz has quit IRC
[07:38:32] *** TripTastic has joined #angularjs
[07:38:40] *** boneskull has joined #angularjs
[07:39:08] *** lw has quit IRC
[07:39:53] *** speakingcode has quit IRC
[07:39:57] *** speakingcode has joined #angularjs
[07:41:06] *** bayousoft has quit IRC
[07:41:12] *** tschundeee has quit IRC
[07:41:36] *** JBreit has quit IRC
[07:42:40] *** discgo has quit IRC
[07:44:07] *** boneskull has quit IRC
[07:45:34] *** boneskull has joined #angularjs
[07:45:54] *** eBureau has joined #angularjs
[07:46:29] *** mennea has quit IRC
[07:47:13] *** mennea has joined #angularjs
[07:47:18] *** diegoviola has quit IRC
[07:48:12] *** tschundeee has joined #angularjs
[07:49:20] *** tfennelly has joined #angularjs
[07:50:12] *** gnu_d has joined #angularjs
[07:50:40] *** boneskull has quit IRC
[07:51:22] *** tschunde_ has quit IRC
[07:51:24] <gnu_d> Hi, I was wondering, how plan an application, I'm mean how to write a specification, for instance I wrote the AJAX actions in a specification, now I need to write how can use those actions in angular.js, is there any simple way to write the plan ?
[07:51:32] *** boneskull has joined #angularjs
[07:51:41] <gnu_d> s/how plan/how to plan/
[07:52:31] *** iksik has joined #angularjs
[07:52:32] *** Prjio has joined #angularjs
[07:52:32] *** dweave has joined #angularjs
[07:53:03] *** jimvideo has quit IRC
[07:53:46] *** tschunde_ has joined #angularjs
[07:54:03] *** tfennelly has quit IRC
[07:56:20] *** boneskull has quit IRC
[07:56:23] *** tschundeee has quit IRC
[07:56:59] *** dsdeiz has joined #angularjs
[07:57:02] *** Prjio has quit IRC
[07:57:13] *** pen has joined #angularjs
[07:57:17] *** mjw56 has quit IRC
[07:58:26] *** gnu_d has quit IRC
[07:58:49] *** gnu_d has joined #angularjs
[07:59:18] *** boneskull has joined #angularjs
[08:00:01] *** charuru has quit IRC
[08:00:11] *** Prjio has joined #angularjs
[08:02:58] *** patrick99e99 has joined #angularjs
[08:03:51] *** tomengland_mbp has quit IRC
[08:04:10] *** mennea has quit IRC
[08:05:49] *** zz_night-owl is now known as night-owl
[08:07:23] *** patrick99e99 has quit IRC
[08:07:52] *** evotuned has joined #angularjs
[08:09:08] *** corehook has joined #angularjs
[08:12:14] *** tech2 has joined #angularjs
[08:12:27] *** dcherman has quit IRC
[08:13:21] <areologist> gnu_d: depends
[08:13:59] *** corehook has quit IRC
[08:14:09] <gnu_d> areologist: for instance, I figure out to make each block a sort of a component, and for each component to write a specification
[08:14:09] *** josh-k has quit IRC
[08:14:57] <gnu_d> areologist: now the question would be how to organize it, e.g: component name; directive, controller, html helper location ?
[08:15:31] <areologist> who is the spec for? why is it so detailed?
[08:15:39] *** thedodd has quit IRC
[08:16:06] *** oste has quit IRC
[08:16:22] <areologist> just trying to estimate effort or making a plan for your team?
[08:16:29] <gnu_d> areologist: it's a development specification, I'm making a draft of how I need to implement the ajax actions
[08:17:03] <gnu_d> each ajax action needs to have it's own component in angular
[08:20:38] *** jlmitch5_ has joined #angularjs
[08:20:49] *** renlo has quit IRC
[08:21:34] <areologist> I don't do that so I probably shouldn't speak to your question. To me a good spec is about high-level requirements that stakeholders would care about.
[08:22:43] *** wallerdev has joined #angularjs
[08:23:13] *** Nannet has quit IRC
[08:23:25] *** Fuzzier has joined #angularjs
[08:23:34] *** jlmitch5dev has quit IRC
[08:23:37] <gnu_d> areologist: just component name, description ?
[08:23:47] <areologist> beyond this, at least in the way I'm used to working, for a non-trivial app there will be some sort of design/architecture specs but the implementations details will emerge later
[08:24:23] *** SahanH has quit IRC
[08:24:23] *** rhp has joined #angularjs
[08:24:38] *** wallerdev has quit IRC
[08:24:52] *** Fuzzy has quit IRC
[08:25:28] *** seriema has joined #angularjs
[08:25:29] *** SahanH has joined #angularjs
[08:28:13] *** Nannet has joined #angularjs
[08:28:37] *** Nannet has joined #angularjs
[08:28:57] *** pen has quit IRC
[08:28:59] *** Nannet has joined #angularjs
[08:29:07] *** lw has joined #angularjs
[08:29:19] *** tschunde_ has quit IRC
[08:29:22] *** Nannet has joined #angularjs
[08:29:23] *** lw has quit IRC
[08:29:25] *** Nannet has quit IRC
[08:29:42] *** stephen has quit IRC
[08:29:45] *** Nannet has joined #angularjs
[08:29:59] *** lw has joined #angularjs
[08:30:18] *** stephen has joined #angularjs
[08:30:38] *** seriema has quit IRC
[08:30:56] *** Nannet has quit IRC
[08:31:11] <gnu_d> areologist: what if someones task is to make a new component, and need to explain that in a specification ?
[08:31:58] *** TheAceOfHearts has quit IRC
[08:32:43] *** Nannet has joined #angularjs
[08:33:03] *** dc_ has quit IRC
[08:33:07] *** Nannet has joined #angularjs
[08:33:59] <areologist> Things like code reviews (or the pull requests), pair programming, coding standards (see John Papa's for angular), and testing make sure the codebase is SOLID, DRY, and all that. Iterative process facilitating discovery and the design focus on user experience rather than under-the-hood details is better than detailed waterfall specs.
[08:34:12] *** Nannet has quit IRC
[08:34:33] <areologist> gnu_d, I would care more about the requirements analysis justifying the component--what is it supposed to do?
[08:35:01] *** mary5030 has joined #angularjs
[08:35:10] <areologist> In the time it would take to create a document detailing the minutia of how it will be coded I could have actual code instead.
[08:35:12] <gnu_d> areologist: let's say for example it needs be a gallery of posts
[08:35:42] <areologist> An angular service abstracting the REST endpoints, or whatever, would be documentation of how I did it.
[08:37:23] <areologist> *then* if you need documentation for some reason, make documentation that reflects the actual implementation. Otherwise if your code isn't aligned with the armchair assumptions about how it should work you'll have to make changes in two places.
[08:38:54] <areologist> but maybe we're talking past each other and I'm making too many assumptions about what you're doing. Maybe I'm overcomplicating it. If so, apologies.
[08:38:55] <gnu_d> areologist: I understand that and I fully agree with you, and I think like you that by the time we write the specification, we'll write the actual code, that's why I'm trying to learn how to plan it ahead, so I can present what I'm going to do, and to measure how much it's left.
[08:39:11] *** TheAceOfHearts has joined #angularjs
[08:39:40] *** mary5030 has quit IRC
[08:40:21] *** robksawyer has quit IRC
[08:40:31] *** dc_ has joined #angularjs
[08:41:57] <areologist> You said a gallery of posts. I'm picturing something like Pinterest. Earlier you spoke about relating specific Ajax actions to angular components.
[08:42:28] *** jmichaelward has joined #angularjs
[08:43:11] <gnu_d> areologist: let's say we got ajax action that lists all the posts
[08:43:56] *** whunt has quit IRC
[08:45:42] *** raj_ has joined #angularjs
[08:46:04] *** frankblizzar has joined #angularjs
[08:47:03] *** jmichaelward has quit IRC
[08:47:06] <Fifty5Plus> when you were learning angular, how long did it take between the feeling of total chaos and confusion and the feeling of light going on ... is it instantaneous and recognizable or is it something that drags on ???
[08:47:28] *** narutimateum has joined #angularjs
[08:48:09] <TheAceOfHearts> .solutions is a new TLD. Someone bought bad.solutions and made it redirect to http://oracle.com/, haha.
[08:48:24] <TheAceOfHearts> http://www.bad.solutions/
[08:48:51] <pontiki> i'm sure we'll be seeing more of that :D
[08:49:27] *** whitebook has joined #angularjs
[08:50:41] <areologist> gnu_d: in angular terms you might then have a service and view/controller--I assume you want to do crud on your posts
[08:51:04] *** dnewkerk has joined #angularjs
[08:51:06] *** Nannet has joined #angularjs
[08:51:48] *** tfennelly has joined #angularjs
[08:52:33] *** Nannet has quit IRC
[08:53:22] *** delight has joined #angularjs
[08:53:29] <areologist> Fifty5Plus: 60-ish minutes
[08:53:47] <areologist> LOL @ TheAceOfHearts
[08:54:29] <gnu_d> areologist: let's say only to list and view them
[08:54:34] <areologist> Fifty5Plus: I decided to look into angular right around the time Dan Wahlin made this vid and it was nice to get the big picture: https://www.youtube.com/watch?v=i9MHigUZKEM
[08:54:34] *** Grokling_ has joined #angularjs
[08:54:58] *** tarnus has quit IRC
[08:56:25] *** dweave has quit IRC
[09:00:07] <areologist> gnu_d: are you asking what would be a typical angular approach to this scenario? if so, having the data service in a factory that is injected into a controller for the view that displayed the list
[09:00:56] <areologist> Actually, if you're new to angular I recommend Wahlin's video I linked above for a great quick overview.
[09:01:22] *** bhuvanaurora has joined #angularjs
[09:02:47] *** nemothekid has quit IRC
[09:03:30] <gnu_d> areologist: I was attending the Shaping with Angular JS course, but I'll watch your url as well.
[09:04:31] *** samuel02 has joined #angularjs
[09:05:59] *** SergioFilhow_ has joined #angularjs
[09:06:24] *** lw has quit IRC
[09:06:35] <areologist> gnu_d: awesome. once you're familiar with the gist I'd suggest checking out JP's styleguide (https://github.com/johnpapa/angularjs-styleguide), which is updated as angular evolves, and you also might want to check out what's new in 1.3 via the changelog, migration guide, and articles/talks
[09:06:43] *** samuel02 has quit IRC
[09:07:16] *** jlmitch5_ has quit IRC
[09:07:41] <areologist> oh, also jasmine, karma, and protractor, if you're not familiar.
[09:07:42] <gnu_d> areologist: I have lots of ideas for the project I'm making :)
[09:07:46] *** mennea has joined #angularjs
[09:08:09] <areologist> gnu_d: I hope it goes well. Building SPAs is quite fun.
[09:08:49] <gnu_d> :)
[09:08:54] *** jlmitch5dev has joined #angularjs
[09:10:16] *** SergioFilhow_ has quit IRC
[09:11:13] <areologist> is anyone here using AtScript or ES6 in their projects?
[09:12:02] *** Nijikokun has quit IRC
[09:12:17] *** jonr22 has joined #angularjs
[09:12:26] *** evotuned_ has joined #angularjs
[09:14:17] *** JBreit has joined #angularjs
[09:14:18] *** numenor has quit IRC
[09:14:30] *** evotuned has quit IRC
[09:16:05] *** mtsr has joined #angularjs
[09:16:48] *** TripTastic has quit IRC
[09:16:57] *** jonr22 has quit IRC
[09:18:22] *** ries has joined #angularjs
[09:18:22] *** adpirz has joined #angularjs
[09:20:12] *** delight has quit IRC
[09:22:30] *** laserbeak43 has joined #angularjs
[09:22:46] <TheAceOfHearts> angular 2.0 is using atscript I guess
[09:23:18] <TheAceOfHearts> I use the harmony flag with node 0.11, does that count?
[09:23:26] *** adpirz has quit IRC
[09:23:38] *** sigurding has joined #angularjs
[09:23:44] *** sinequanon has quit IRC
[09:25:23] <areologist> TheAceOfHearts: I'm just wondering about things like jshint compatibility with AtScript
[09:25:35] <TheAceOfHearts> I'm guessing it breaks with jshint
[09:26:29] *** seriema has joined #angularjs
[09:26:42] <areologist> yeah, I think AtScript would hose my tooling
[09:28:09] *** k-dawg has joined #angularjs
[09:28:12] *** svteoi has joined #angularjs
[09:28:37] *** renlo has joined #angularjs
[09:31:24] *** seriema has quit IRC
[09:31:37] *** pspfolio has joined #angularjs
[09:32:10] *** prechtl has quit IRC
[09:32:40] *** sigurding has quit IRC
[09:33:50] *** mattattaque has quit IRC
[09:34:15] *** shpoont has joined #angularjs
[09:34:33] *** hmsimha_ has quit IRC
[09:34:52] *** whitebook has quit IRC
[09:35:49] *** Aliks has quit IRC
[09:36:32] *** Lingos has joined #angularjs
[09:36:42] *** tech2 has quit IRC
[09:36:49] *** in has joined #angularjs
[09:36:51] *** moritzs has joined #angularjs
[09:37:27] *** in has quit IRC
[09:39:19] *** ngbot has joined #angularjs
[09:39:19] <ngbot> [angular.js] pkozlowski-opensource pushed 1 new commit to master: http://git.io/27u2iA
[09:39:19] <ngbot> angular.js/master 7496e8e Gonzalo Ruiz de Villa: refactor(*): combine sequence of .push() into one statement...
[09:39:19] *** ngbot has left #angularjs
[09:40:02] *** dejanr has joined #angularjs
[09:40:14] <TheAceOfHearts> and syntax highlighting probably
[09:40:16] *** myrick has joined #angularjs
[09:40:46] *** samroth has joined #angularjs
[09:40:52] *** evotuned_ has quit IRC
[09:41:28] *** evotuned has joined #angularjs
[09:43:04] *** stormbytes has joined #angularjs
[09:44:18] *** mattattaque has joined #angularjs
[09:44:41] *** Nannet has joined #angularjs
[09:45:08] *** dejanr has quit IRC
[09:45:13] *** Aerospark has quit IRC
[09:45:38] *** Aerospark has joined #angularjs
[09:45:58] *** encryptd_fractl has quit IRC
[09:46:01] *** lovasz has joined #angularjs
[09:46:33] *** corehook has joined #angularjs
[09:47:00] *** whitebook has joined #angularjs
[09:48:10] *** evotuned has joined #angularjs
[09:48:18] *** yelvert has joined #angularjs
[09:48:42] *** umin has joined #angularjs
[09:49:08] *** lexek_ has joined #angularjs
[09:51:05] *** trustyhank has quit IRC
[09:51:23] *** meyerhoef has joined #angularjs
[09:51:43] *** samroth has quit IRC
[09:51:50] *** whitebook has quit IRC
[09:52:23] *** meyerhoef has quit IRC
[09:52:54] *** Aerospark has quit IRC
[09:53:16] *** corehook has quit IRC
[09:53:18] *** dsdeiz has quit IRC
[09:54:21] *** jMyles has quit IRC
[09:54:27] *** il has joined #angularjs
[09:55:13] *** dice has joined #angularjs
[09:55:27] *** dice has quit IRC
[09:56:14] *** dsdeiz has joined #angularjs
[09:58:18] *** lannon has joined #angularjs
[09:58:44] *** bhuvanaurora has quit IRC
[10:00:31] *** angularjs608 has quit IRC
[10:00:59] *** shukert has joined #angularjs
[10:01:20] *** bhuvanaurora has joined #angularjs
[10:01:40] *** sigurding has joined #angularjs
[10:01:44] *** shukert has quit IRC
[10:02:16] *** jgladwill has quit IRC
[10:02:30] *** corehook has joined #angularjs
[10:04:02] *** reavengr1y has quit IRC
[10:04:18] *** stormbytes has quit IRC
[10:04:25] *** benak has joined #angularjs
[10:05:37] *** Oxynum has joined #angularjs
[10:06:52] *** shinnya has joined #angularjs
[10:07:23] *** doginal has joined #angularjs
[10:08:30] *** Fuzzy has joined #angularjs
[10:08:51] *** evotuned has quit IRC
[10:09:01] *** Nijikokun has joined #angularjs
[10:09:23] *** evotuned has joined #angularjs
[10:09:30] *** Fuzzier has quit IRC
[10:09:38] *** yelvert has quit IRC
[10:10:12] *** yelvert has joined #angularjs
[10:10:14] *** isacloud______ is now known as isacloud
[10:11:57] *** leonbienek has joined #angularjs
[10:12:05] *** leonbienek has left #angularjs
[10:14:28] *** evotuned has quit IRC
[10:14:54] *** yelvert has quit IRC
[10:15:29] *** mennea_ has joined #angularjs
[10:16:31] *** benak has quit IRC
[10:16:44] *** Shrooms has quit IRC
[10:17:48] *** mennea has quit IRC
[10:19:23] *** razze has joined #angularjs
[10:19:37] *** bhuvanaurora has quit IRC
[10:22:18] *** disorder20 has joined #angularjs
[10:23:37] *** after_r has joined #angularjs
[10:23:47] <after_r> Hello to anyone who is up
[10:24:09] *** razze has quit IRC
[10:24:27] *** tomengland_mbp has joined #angularjs
[10:24:48] <after_r> How angular allows one to register an HTML remplate with the $templateCache.set(file.html, <p>content</p>); ... is it possible to register CSS also? Or would I have to like do a document.write(<style>mycss {}</style>); ?
[10:25:07] <gnu_d> how do I access the attributes or the text of some template directive ?
[10:25:22] <after_r> a blessed morning to everyone
[10:25:24] *** bhuvanaurora has joined #angularjs
[10:25:50] <gnu_d> e.g: <menu-item>Blabla</menu-item>, how do I render the text value in the menu_item.html ?
[10:25:51] *** stephen has quit IRC
[10:26:19] *** stephen has joined #angularjs
[10:27:03] *** sondrup has joined #angularjs
[10:27:33] *** seriema has joined #angularjs
[10:27:59] <after_r> gnu_d: IDK
[10:28:26] <gnu_d> :(
[10:28:35] *** Prjio_ has joined #angularjs
[10:28:56] *** stephen has quit IRC
[10:29:29] *** stephen has joined #angularjs
[10:29:42] <after_r> i dont knowish
[10:31:23] *** jmichaelward has joined #angularjs
[10:31:29] *** kalusn has joined #angularjs
[10:31:44] *** Prjio has quit IRC
[10:32:07] *** renlo has quit IRC
[10:32:17] *** sondrup has quit IRC
[10:32:22] *** seriema has quit IRC
[10:33:36] *** kalusn has quit IRC
[10:34:03] *** kalusn has joined #angularjs
[10:34:13] *** Aerospark has joined #angularjs
[10:35:06] *** croslin has joined #angularjs
[10:35:27] *** iamaregee2 has joined #angularjs
[10:35:54] *** jmichaelward has quit IRC
[10:36:51] *** jakeeeeee has joined #angularjs
[10:37:01] <jakeeeeee> evening
[10:37:16] *** eden_lane has joined #angularjs
[10:37:26] <jakeeeeee> do controllers not inherit the model from the view that they are called from?
[10:37:30] <jakeeeeee> i.e to get $scoep
[10:37:32] <jakeeeeee> $scope*
[10:37:54] *** croslin has quit IRC
[10:38:24] *** kalusn has quit IRC
[10:38:27] *** moritzs has quit IRC
[10:39:03] *** Aerospark has quit IRC
[10:40:06] *** dejanr has joined #angularjs
[10:40:28] *** ashbaugh has joined #angularjs
[10:41:11] *** davi has joined #angularjs
[10:41:24] *** TheAceOfHearts has quit IRC
[10:43:09] *** branes has joined #angularjs
[10:43:36] *** tarnus has joined #angularjs
[10:44:53] *** dejanr has quit IRC
[10:44:59] <gnu_d> after_r: I found out how, I just need to append the attribute name in the scope object, with value '=' :)
[10:44:59] *** branes has quit IRC
[10:46:13] <after_r> good
[10:46:23] <after_r> gnu_d: good
[10:46:49] *** Brainling has quit IRC
[10:47:37] *** Brainling has joined #angularjs
[10:47:45] *** kypuros has joined #angularjs
[10:48:36] *** tarnus has quit IRC
[10:49:51] *** iamaregee2 has quit IRC
[10:50:33] *** Lingos has quit IRC
[10:51:18] *** iamaregee2 has joined #angularjs
[10:53:48] *** tripu has joined #angularjs
[10:53:59] *** kalusn has joined #angularjs
[10:54:14] <raj_> jakeeeeee.. i may be wrong but i think models have rootscope. controllers have scope
[10:54:14] *** kypuros has quit IRC
[10:54:29] *** bealtine has left #angularjs
[10:54:43] *** SergioFilhow_ has joined #angularjs
[10:54:52] <jakeeeeee> raj_: my controller can see the function i'm calling from ng-click
[10:55:00] <jakeeeeee> just not the ng-model stuff I need to be using to process the request
[10:55:20] <jakeeeeee> do you need to pass anything except $scope to the controller for ng-model to work?
[10:55:35] <jakeeeeee> it's been a while, trying to relearn this
[10:56:23] *** ericsonluciano has joined #angularjs
[10:56:24] *** sigurding has quit IRC
[10:56:57] *** breihan has joined #angularjs
[10:58:44] *** boxmein has joined #angularjs
[10:59:12] *** SergioFilhow_ has quit IRC
[11:01:18] *** jonr22 has joined #angularjs
[11:01:21] *** dc_ has quit IRC
[11:02:22] *** svteoi has quit IRC
[11:03:30] *** hmsimha_ has joined #angularjs
[11:05:05] *** marr has joined #angularjs
[11:06:02] *** jonr22 has quit IRC
[11:06:24] *** after_r has quit IRC
[11:07:11] *** Lingos has joined #angularjs
[11:07:15] *** adpirz has joined #angularjs
[11:07:39] *** breihan has quit IRC
[11:09:02] *** ludkiller is now known as lud
[11:09:20] *** dc_ has joined #angularjs
[11:09:26] *** pushpak has joined #angularjs
[11:10:22] *** marinas has joined #angularjs
[11:10:35] *** diegoaguilar has joined #angularjs
[11:10:58] *** gogolilov has joined #angularjs
[11:11:53] *** adpirz has quit IRC
[11:12:20] *** whunt has joined #angularjs
[11:13:03] *** marinas has quit IRC
[11:13:55] *** dc_ has quit IRC
[11:15:41] *** charuru has joined #angularjs
[11:16:11] *** dannyc_ has joined #angularjs
[11:16:53] *** whunt has quit IRC
[11:17:04] *** fbm has joined #angularjs
[11:17:14] <gogolilov> hello, Can someone please help me with this http://plnkr.co/edit/wQy8dPxua27qd7L6aGWn?p=preview
[11:17:27] <gogolilov> i am using a directive which is returning just a template that contains an input field that i use for filtering an array
[11:17:30] *** tomengland_mbp has quit IRC
[11:17:31] <fbm> Hi all
[11:17:42] <gogolilov> everything works fine but if i add the directive somewhere else on the html i want it to filter only it's results
[11:18:26] *** dannyc__ has joined #angularjs
[11:18:29] <gogolilov> If you input the directive twice in the page each directive must filter only it's list items without changing other directive
[11:19:30] *** lite has joined #angularjs
[11:20:00] *** eden_lane has quit IRC
[11:20:54] *** dannyc_ has quit IRC
[11:21:08] *** charuru has quit IRC
[11:21:43] *** TripTastic has joined #angularjs
[11:21:58] <areologist> gogolilov: the directive instances are sharing a controller and scope
[11:22:55] <gogolilov> i know this is a part of the task
[11:23:45] *** numenor has joined #angularjs
[11:24:30] *** JBreit has quit IRC
[11:24:36] *** luruke has quit IRC
[11:26:13] *** Lingos has quit IRC
[11:26:21] *** dreambox has joined #angularjs
[11:26:40] *** AciD`` has joined #angularjs
[11:26:42] <dreambox> hey guys.. I have a $scope.messages which is a list of messages with a location property in each one
[11:26:51] *** bantug has joined #angularjs
[11:27:14] <dreambox> I need to go through all of the messages and set the location.lat and location.lng values to $scope.markers.foo1 , $scope.markers.foo2 etc
[11:27:48] *** dnewkerk has quit IRC
[11:28:38] *** seriema has joined #angularjs
[11:29:55] *** wardswort has joined #angularjs
[11:30:39] *** davi has quit IRC
[11:32:11] *** dc_ has joined #angularjs
[11:32:11] *** stephen has quit IRC
[11:33:25] *** wardswort has quit IRC
[11:33:37] *** seriema has quit IRC
[11:35:04] *** tomengland_mbp has joined #angularjs
[11:35:07] *** dimetron has joined #angularjs
[11:35:37] *** lemur has quit IRC
[11:35:38] *** k-dawg has quit IRC
[11:36:03] *** dermody has joined #angularjs
[11:36:09] *** lemur has joined #angularjs
[11:36:57] *** dc_ has quit IRC
[11:38:35] *** delight has joined #angularjs
[11:38:50] *** Brainling has quit IRC
[11:39:42] *** TripTastic has quit IRC
[11:40:28] *** TripTastic has joined #angularjs
[11:40:35] *** dc_ has joined #angularjs
[11:40:48] *** macobo has joined #angularjs
[11:40:52] *** dermody has quit IRC
[11:41:14] *** lemur has quit IRC
[11:41:17] *** rchavik has quit IRC
[11:42:17] *** rchavik has joined #angularjs
[11:43:43] *** oates has joined #angularjs
[11:44:53] *** dc_ has quit IRC
[11:45:13] *** oates has quit IRC
[11:45:47] *** AciD`` has quit IRC
[11:46:54] *** lite has quit IRC
[11:47:01] *** dannyc__ has quit IRC
[11:47:27] *** lite has joined #angularjs
[11:47:56] *** segovia has joined #angularjs
[11:49:30] *** joroc has quit IRC
[11:49:39] *** segovia has quit IRC
[11:50:17] *** iksik has quit IRC
[11:50:45] *** D-Boy has quit IRC
[11:50:53] *** D-Boy has joined #angularjs
[11:52:15] *** lite has quit IRC
[11:52:19] *** dannyc_ has joined #angularjs
[11:52:32] *** rothell has joined #angularjs
[11:53:43] *** iksik has joined #angularjs
[11:53:57] *** tomengland_mbp has quit IRC
[11:55:13] *** whitson has joined #angularjs
[11:55:23] *** dejanr has joined #angularjs
[11:55:28] *** SergioFilhow_ has joined #angularjs
[11:56:22] *** JohnBat26 has joined #angularjs
[11:56:23] *** ElysiumNet has joined #angularjs
[11:56:57] *** MaxV has joined #angularjs
[11:57:03] *** Grokling_ has quit IRC
[11:58:32] *** rchavik has quit IRC
[11:58:45] *** whitson has quit IRC
[11:59:44] *** restless_being has joined #angularjs
[12:00:00] *** dejanr has quit IRC
[12:00:13] *** AciD`` has joined #angularjs
[12:00:17] *** SergioFilhow_ has quit IRC
[12:00:17] *** boxmein has quit IRC
[12:00:32] *** restless_being_ has quit IRC
[12:00:33] *** k-dawg has joined #angularjs
[12:01:21] *** durdan has joined #angularjs
[12:01:43] *** xxtjaxx has quit IRC
[12:01:45] *** durdan has quit IRC
[12:02:20] *** Lingos has joined #angularjs
[12:04:25] *** protasewi has joined #angularjs
[12:05:20] *** mkusher has joined #angularjs
[12:05:55] *** mgustaf has joined #angularjs
[12:07:20] *** night-owl is now known as zz_night-owl
[12:07:29] *** faycurry has joined #angularjs
[12:09:01] *** faycurry has quit IRC
[12:09:24] *** dimetron has quit IRC
[12:10:09] *** boxmein has joined #angularjs
[12:11:22] *** antsanto has joined #angularjs
[12:11:42] *** lytle has joined #angularjs
[12:11:43] *** evilaliv3 has joined #angularjs
[12:12:00] *** lytle has quit IRC
[12:12:01] *** Geertje123_ has joined #angularjs
[12:12:06] *** DrAwesomeClaws has joined #angularjs
[12:12:07] *** soee has joined #angularjs
[12:12:27] *** tripu has quit IRC
[12:13:05] *** dannyc__ has joined #angularjs
[12:13:34] *** nesquerra has joined #angularjs
[12:13:36] *** Evanion has joined #angularjs
[12:14:46] *** deneui has joined #angularjs
[12:14:48] <DrAwesomeClaws> hey folks. Odd little edge case bug here. I seem to be confusing angular. On this form: http://arcane-tundra-1855.herokuapp.com/#/create Add two entries (click +) under "Who should be notified?" (for a total of 3), then click "Create Notification" (submit) to trigger the validation. Once validation happens, click the X on the middle "Who should be notified?" list to remove that one. The entry under it then spazzes out and seems to l
[12:14:49] <DrAwesomeClaws> ose it's $dirty status and wont get it back
[12:14:49] *** deneui has quit IRC
[12:15:07] <DrAwesomeClaws> is there maybe some way to force angular to re-evaluate everything or something?
[12:17:00] *** dannyc_ has quit IRC
[12:17:11] *** dnewkerk has joined #angularjs
[12:17:27] *** nunley has joined #angularjs
[12:17:57] *** nunley has quit IRC
[12:18:16] *** martianboy has quit IRC
[12:19:38] *** dannyc__ has quit IRC
[12:19:39] *** disorder20 has quit IRC
[12:20:01] *** jmichaelward has joined #angularjs
[12:20:12] *** Prjio_ has quit IRC
[12:20:24] *** cacts has quit IRC
[12:20:31] *** thurrell has joined #angularjs
[12:20:37] *** nesquerra has quit IRC
[12:20:38] *** thurrell has quit IRC
[12:21:06] *** disorder20 has joined #angularjs
[12:23:12] *** donatien has joined #angularjs
[12:23:12] *** disorder20 has quit IRC
[12:23:22] *** foofoobar has joined #angularjs
[12:23:40] *** donatien has quit IRC
[12:23:59] *** Luser has joined #angularjs
[12:24:29] *** disorder20 has joined #angularjs
[12:24:41] *** jmichaelward has quit IRC
[12:26:16] *** warschaw has joined #angularjs
[12:26:39] *** RangerRick has quit IRC
[12:27:00] *** RangerRick has joined #angularjs
[12:27:03] *** Prjio has joined #angularjs
[12:27:15] *** dnewkerk has quit IRC
[12:27:26] *** warschaw has quit IRC
[12:28:41] *** encryptd_fractl has joined #angularjs
[12:29:04] *** pushpak has quit IRC
[12:29:34] *** lud has quit IRC
[12:29:37] *** seriema has joined #angularjs
[12:29:44] *** ludkiller has joined #angularjs
[12:30:01] *** Left_Turn has joined #angularjs
[12:30:06] *** ozog has joined #angularjs
[12:30:33] *** ozog has quit IRC
[12:30:48] *** martianboy has joined #angularjs
[12:31:12] *** JR___ has joined #angularjs
[12:31:20] *** joshontheweb has quit IRC
[12:31:23] <areologist> DrAwesomeClaws: cool site
[12:31:44] *** Prjio has quit IRC
[12:32:49] *** tarnus has joined #angularjs
[12:33:10] *** lafield has joined #angularjs
[12:33:42] *** lafield has quit IRC
[12:34:07] *** seriema has quit IRC
[12:35:24] *** bhuvanaurora has quit IRC
[12:35:42] *** Aerospark has joined #angularjs
[12:36:02] *** macgregor has quit IRC
[12:36:37] *** schleppy has joined #angularjs
[12:36:56] *** gogolilov has quit IRC
[12:36:59] *** macgregor has joined #angularjs
[12:37:37] *** tarnus has quit IRC
[12:37:39] *** schleppy has quit IRC
[12:38:14] *** diegoaguilar has quit IRC
[12:38:24] *** arpu has joined #angularjs
[12:38:34] *** tfennelly has quit IRC
[12:39:06] *** quantax- has quit IRC
[12:39:18] <areologist> DrAwesomeClaws: what were the dependencies for that angular-bootstrap date picker? It's nice.
[12:40:23] *** Aerospark has quit IRC
[12:40:27] *** pascoal has joined #angularjs
[12:41:18] *** NanoArro1 has quit IRC
[12:41:18] *** bhuvanaurora has joined #angularjs
[12:41:22] *** rikkipitt has joined #angularjs
[12:41:52] *** ericsonluciano has quit IRC
[12:42:37] *** bhuvanaurora has quit IRC
[12:42:40] *** laserbeak43 has quit IRC
[12:43:08] *** mcnairy has joined #angularjs
[12:43:41] *** mcnairy has quit IRC
[12:44:59] *** mgustaf has quit IRC
[12:45:14] *** macobo has quit IRC
[12:46:02] *** Lingos has quit IRC
[12:46:12] *** joshontheweb has joined #angularjs
[12:46:34] *** Lingos has joined #angularjs
[12:46:35] *** kepley has joined #angularjs
[12:47:01] *** Sky[x] has joined #angularjs
[12:47:59] *** lite has joined #angularjs
[12:48:00] *** tfennelly has joined #angularjs
[12:48:14] *** evotuned has joined #angularjs
[12:48:18] *** Sky[x] has quit IRC
[12:49:39] *** houghland has joined #angularjs
[12:49:55] *** houghland has quit IRC
[12:50:02] *** Sky[x] has joined #angularjs
[12:50:09] *** tfennelly has quit IRC
[12:50:19] *** jonr22 has joined #angularjs
[12:50:36] *** bhuvanaurora has joined #angularjs
[12:51:16] *** tfennelly has joined #angularjs
[12:51:52] *** samuel02 has joined #angularjs
[12:51:55] *** asdofindia has quit IRC
[12:51:59] *** Lingos has quit IRC
[12:52:33] *** lite has quit IRC
[12:53:21] *** mgustaf has joined #angularjs
[12:53:25] *** evotuned has quit IRC
[12:53:35] *** nesquerra has joined #angularjs
[12:53:40] *** bhuvanaurora has quit IRC
[12:55:24] *** giandomen has joined #angularjs
[12:55:35] *** giandomen has quit IRC
[12:55:58] *** jonr22 has quit IRC
[12:56:13] *** adpirz has joined #angularjs
[12:56:15] *** SergioFilhow_ has joined #angularjs
[12:56:18] *** tfennelly has quit IRC
[12:56:35] <ElysiumNet> is it just me, or does angularjs try to jsonify everything that goes through ngResource?
[12:57:43] <ElysiumNet> even when I tell it explicitly not to with transformRequest: [] ?
[12:58:46] *** dylanlindgren has joined #angularjs
[12:58:58] *** mennea_ has quit IRC
[12:58:58] *** Lingos has joined #angularjs
[13:00:27] *** sajt has joined #angularjs
[13:00:32] *** mennea has joined #angularjs
[13:00:34] *** Foxandxss has joined #angularjs
[13:00:41] *** Lingos has quit IRC
[13:00:43] *** SergioFilhow_ has quit IRC
[13:00:50] <sajt> Hello!
[13:01:05] *** adpirz has quit IRC
[13:01:09] *** mabb has joined #angularjs
[13:01:11] <sajt> How can I download the localized version of angular with bower?
[13:01:11] *** mabb has quit IRC
[13:02:15] *** Lingos has joined #angularjs
[13:02:31] *** RedOrangeZ has joined #angularjs
[13:03:07] *** mattattaque has quit IRC
[13:03:50] *** savine has joined #angularjs
[13:05:07] <ElysiumNet> it just does ?key={jsonified list}&key={jsonified list} (which php doesn't like, either)
[13:05:07] *** savine has quit IRC
[13:05:54] *** samuel02 has quit IRC
[13:06:04] *** mennea_ has joined #angularjs
[13:06:52] *** antsanto has quit IRC
[13:08:03] *** bohrman has joined #angularjs
[13:08:18] *** mennea has quit IRC
[13:08:48] *** bealtine has joined #angularjs
[13:09:21] *** Luser has quit IRC
[13:09:45] <ElysiumNet> "If the value is not a string, it will be JSONified" since when did that become a REST standard?
[13:09:58] *** Luser has joined #angularjs
[13:10:00] *** joshontheweb has quit IRC
[13:10:31] <sajt> This is the solution: "angular-i18n": "1.3.x",
[13:10:35] <sajt> thanks :)
[13:10:44] *** tromba has joined #angularjs
[13:10:47] *** startupality has joined #angularjs
[13:11:47] *** SahanH has quit IRC
[13:12:20] *** reavengr1y has joined #angularjs
[13:12:51] *** plato has joined #angularjs
[13:13:17] *** ehalas2 has joined #angularjs
[13:13:25] *** oberhaus has joined #angularjs
[13:14:18] *** oberhaus has quit IRC
[13:14:45] *** SomeKittens has quit IRC
[13:14:58] *** Luser has quit IRC
[13:15:38] *** arpu has quit IRC
[13:16:38] *** sigurding has joined #angularjs
[13:17:15] *** durough has joined #angularjs
[13:17:33] *** durough has quit IRC
[13:17:45] *** dannyc_ has joined #angularjs
[13:18:37] *** Geertje123_ has quit IRC
[13:19:43] *** startupality has quit IRC
[13:20:19] *** brettmann has joined #angularjs
[13:20:40] *** JR___ has quit IRC
[13:20:49] *** brettmann has quit IRC
[13:21:38] *** JR___ has joined #angularjs
[13:21:55] *** dannyc_ has quit IRC
[13:23:23] *** earll has joined #angularjs
[13:23:33] *** earll has quit IRC
[13:24:08] *** eden_lane has joined #angularjs
[13:24:21] *** marcjs has joined #angularjs
[13:24:23] *** ehalas2 has quit IRC
[13:24:48] *** DuelShark has joined #angularjs
[13:25:02] *** Sky[x] has quit IRC
[13:26:27] *** barrocas has joined #angularjs
[13:27:16] *** ehalas2 has joined #angularjs
[13:28:20] *** ajoslin103 has joined #angularjs
[13:28:37] <raj_> @jakeeeeee try using $scope.$apply()
[13:29:27] *** AtomicCookie has joined #angularjs
[13:29:31] *** sobieraj has joined #angularjs
[13:31:29] *** corehook has quit IRC
[13:31:30] *** bayousoft has joined #angularjs
[13:32:35] *** byers has joined #angularjs
[13:32:36] *** ehalas2 has quit IRC
[13:32:58] *** mkusher has quit IRC
[13:33:06] *** brettfrable has joined #angularjs
[13:33:37] *** stephen has joined #angularjs
[13:34:14] *** byers has quit IRC
[13:35:27] *** sajt has quit IRC
[13:35:51] <ajoslin103> hello, I am trying to figure out how to properly use $broadcst to communicate with child controllers during the parent controller startup . That is to say, when I try to $broadcast from the parent controller on startup it seems the children are not listening yet. I have to put the $brodcast into a setTimeout in order to make it work. I seek a better way. Is there an even that I can listen for that will tell me that all my child
[13:35:52] <ajoslin103> have finished instantiating? Is there a $function I can call to queue a function to execute when all my children have finished instantiating?
[13:35:56] *** younqcass has joined #angularjs
[13:37:04] *** djam90 has joined #angularjs
[13:37:11] *** karpel has joined #angularjs
[13:37:16] *** threesixes has quit IRC
[13:38:34] *** karpel has quit IRC
[13:38:48] *** mgustaf has quit IRC
[13:38:56] *** sajt has joined #angularjs
[13:39:51] *** boxmein has quit IRC
[13:40:30] *** jakeeeeee has quit IRC
[13:41:06] *** NanoArro1 has joined #angularjs
[13:41:24] *** barters has joined #angularjs
[13:41:39] *** barters has quit IRC
[13:42:55] *** cakirke has joined #angularjs
[13:43:05] *** opiates has joined #angularjs
[13:44:21] *** Iravan_ has joined #angularjs
[13:44:28] *** bowlick has joined #angularjs
[13:44:37] *** mjw56 has joined #angularjs
[13:44:40] *** bowlick has quit IRC
[13:47:17] *** Oddman has joined #angularjs
[13:47:32] *** chittom has joined #angularjs
[13:47:34] *** chittom has quit IRC
[13:48:28] *** evilaliv3 has quit IRC
[13:48:44] *** lite has joined #angularjs
[13:48:53] *** mgustaf has joined #angularjs
[13:49:11] *** evotuned has joined #angularjs
[13:50:13] *** gerner has joined #angularjs
[13:50:30] *** gerner has quit IRC
[13:51:18] <stephen> ajoslin103, Sounds like you need to understand promises
[13:51:59] *** hmsimha_ has quit IRC
[13:52:00] <ajoslin103> interesting, tell me more - point me where?
[13:52:03] *** Sky[x] has joined #angularjs
[13:52:06] <stephen> if you had a $q.all() watching an array of promises which were returned from your controllers as they were first ran, you could use that to know when to broadcast
[13:52:22] <stephen> Do you understand promises at all?
[13:52:59] *** hmsimha_ has joined #angularjs
[13:53:05] *** narutimateum has quit IRC
[13:53:13] *** lite has quit IRC
[13:53:17] *** strick has joined #angularjs
[13:53:42] *** strick has quit IRC
[13:54:03] *** evotuned has quit IRC
[13:56:20] *** mennea has joined #angularjs
[13:56:21] *** kaler has joined #angularjs
[13:56:31] *** dylanlin_ has joined #angularjs
[13:56:48] *** kaler has quit IRC
[13:58:50] *** dylanlindgren has quit IRC
[13:59:25] *** archey has joined #angularjs
[13:59:30] *** JR___ has quit IRC
[13:59:45] *** Lingos has quit IRC
[14:00:03] *** mennea_ has quit IRC
[14:00:25] *** tarnus has joined #angularjs
[14:00:50] *** Oddman has quit IRC
[14:01:38] *** sigurding has quit IRC
[14:01:42] *** djam90 has quit IRC
[14:01:54] *** Sky[x] has quit IRC
[14:02:02] *** Laserbeak43 has joined #angularjs
[14:02:06] *** avino has joined #angularjs
[14:02:10] *** avino has quit IRC
[14:02:22] *** rileylark has joined #angularjs
[14:04:19] *** fbm has quit IRC
[14:04:47] *** JR___ has joined #angularjs
[14:04:48] *** jimmyy has quit IRC
[14:05:16] *** patrick99e99 has joined #angularjs
[14:05:46] <ajoslin103> I have a rudimentary understanding of them & I just skimmed the docs on $q — but are you saying that I’d have to add promises to this array from each child controller’s function body ? who would resolve them and how would I know how many there were supposed to be ?
[14:06:48] *** morenoh149 has quit IRC
[14:07:28] *** mcfatten has joined #angularjs
[14:07:58] *** mcfatten has quit IRC
[14:08:00] *** fatshark has joined #angularjs
[14:10:00] *** IvailoStoianov has quit IRC
[14:10:15] *** patrick99e99 has quit IRC
[14:11:07] *** plato1 has joined #angularjs
[14:12:24] *** jaydubya has joined #angularjs
[14:14:28] *** plato has quit IRC
[14:14:58] *** whunt has joined #angularjs
[14:15:50] *** wsmoak has joined #angularjs
[14:15:54] *** crumrine has joined #angularjs
[14:16:00] *** sigurding has joined #angularjs
[14:16:30] *** recidive has joined #angularjs
[14:17:14] *** kas84 has joined #angularjs
[14:17:38] *** cads has joined #angularjs
[14:17:48] *** max_ has joined #angularjs
[14:18:33] *** dannyc_ has joined #angularjs
[14:18:52] *** pspfolio has quit IRC
[14:19:57] *** apertoire has quit IRC
[14:19:58] *** whunt has quit IRC
[14:20:28] *** stephen has quit IRC
[14:20:33] *** apertoire has joined #angularjs
[14:21:12] *** cotko has joined #angularjs
[14:21:37] *** stephen has joined #angularjs
[14:21:53] *** hswolff has quit IRC
[14:22:18] *** crumrine has quit IRC
[14:22:48] *** stephen has quit IRC
[14:22:59] *** hswolff has joined #angularjs
[14:23:08] *** dannyc_ has quit IRC
[14:23:17] *** stephen has joined #angularjs
[14:24:01] *** cotko has quit IRC
[14:24:19] *** cotko has joined #angularjs
[14:25:06] *** cotrell has joined #angularjs
[14:25:40] *** dreambox has quit IRC
[14:25:41] *** dejanr has joined #angularjs
[14:25:57] *** cotrell has quit IRC
[14:26:06] *** mgustaf has quit IRC
[14:26:45] <ajoslin103> reading more about promises, starting to make some headway - thanks
[14:27:17] *** ngbot has joined #angularjs
[14:27:17] <ngbot> [angular.js] petebacondarwin pushed 1 new commit to master: http://git.io/VHVvfA
[14:27:17] <ngbot> angular.js/master addb4bd thorn0: chore(docs): regroup version selector options into major branches and latest...
[14:27:17] *** ngbot has left #angularjs
[14:27:18] *** Johnny13371337 has joined #angularjs
[14:27:23] *** c00ljs has joined #angularjs
[14:28:33] *** ellzey has joined #angularjs
[14:29:05] *** cotko has quit IRC
[14:29:06] *** ellzey has quit IRC
[14:30:09] *** Laserbeak43 has quit IRC
[14:30:14] *** davi has joined #angularjs
[14:30:14] *** davi has joined #angularjs
[14:30:34] *** dejanr has quit IRC
[14:31:02] *** corehook has joined #angularjs
[14:31:46] *** Laserbeak43 has joined #angularjs
[14:34:09] *** SahanH has joined #angularjs
[14:34:41] *** caughey has joined #angularjs
[14:35:13] *** pspfolio has joined #angularjs
[14:35:25] *** dreambox has joined #angularjs
[14:35:40] *** quantax- has joined #angularjs
[14:36:59] *** allsystemsarego has joined #angularjs
[14:37:03] *** Evanion has quit IRC
[14:37:11] *** Aerospark has joined #angularjs
[14:37:45] *** nieng has joined #angularjs
[14:37:55] *** plushy has joined #angularjs
[14:39:15] <allsystemsarego> hi all, what is the simplest way to gradually show an ng-if element without resorting to a jquery-powered fade-in?
[14:39:25] *** numenor has quit IRC
[14:39:38] *** jonr22 has joined #angularjs
[14:39:40] <areologist> css animation
[14:39:52] *** numenor has joined #angularjs
[14:40:18] <allsystemsarego> ok, thanks, I'll research that
[14:40:20] *** jonr22 has quit IRC
[14:40:26] *** palomar has joined #angularjs
[14:40:29] *** jonr22 has joined #angularjs
[14:40:36] *** palomar has quit IRC
[14:41:11] <areologist> after learning the basics I might recommend this project for many examples: https://github.com/daneden/animate.css
[14:42:04] *** vonnegut has quit IRC
[14:42:09] <areologist> and of course check out ngAnimate
[14:42:12] *** Aerospark has quit IRC
[14:42:18] <areologist> maybe just check out ngAnimate to begin with
[14:42:37] *** gazbond has joined #angularjs
[14:42:38] *** cotko has joined #angularjs
[14:42:52] <allsystemsarego> areologist, ngAnimate looks interesting, thanks for the pointer
[14:43:30] *** patneaude has joined #angularjs
[14:43:30] *** disorder20 has quit IRC
[14:43:35] *** patneaude has quit IRC
[14:43:42] *** mennea has quit IRC
[14:43:51] *** ahmetkapikiran has quit IRC
[14:44:16] *** corehook has quit IRC
[14:44:54] *** corehook has joined #angularjs
[14:45:00] *** SergioFilhow_ has joined #angularjs
[14:45:01] *** corehook has quit IRC
[14:45:08] <areologist> I've asked this before but, is anyone using ES6 or AtScript in their projects?
[14:45:09] *** adpirz has joined #angularjs
[14:45:15] *** rileylark has quit IRC
[14:45:29] <areologist> If so, how has it impacted your tooling?
[14:46:11] *** bjork has joined #angularjs
[14:46:42] *** gurke_ has joined #angularjs
[14:48:21] <areologist> Basic example of my worry: 1. write post-ES5 code / jshint breaks; 2. write post-ES5 code / run traceur / purpose of jshint partially defeated
[14:49:17] *** adpirz has quit IRC
[14:49:27] *** SergioFilhow_ has quit IRC
[14:49:28] *** lite has joined #angularjs
[14:49:54] *** evotuned has joined #angularjs
[14:50:09] *** MaxV has quit IRC
[14:50:51] *** evilaliv3 has joined #angularjs
[14:51:35] *** Lingos has joined #angularjs
[14:51:52] <areologist> regarding post-traceur linting: problem 1. if linter dislikes traceur output tough crap. problem 2. linting is partially about code readibility and maintainability and should apply to the source code pre-traceur
[14:51:56] *** fiske has joined #angularjs
[14:52:46] *** niop has joined #angularjs
[14:52:58] *** lw has joined #angularjs
[14:53:10] *** gazbond has quit IRC
[14:53:33] *** mennea has joined #angularjs
[14:53:45] *** lw has joined #angularjs
[14:53:57] *** jlmitch5dev has quit IRC
[14:53:58] *** lite has quit IRC
[14:54:32] *** evotuned has quit IRC
[14:54:37] *** mieth has joined #angularjs
[14:54:46] *** quantax- has quit IRC
[14:55:00] *** AlSquirrel has joined #angularjs
[14:55:25] *** mieth has quit IRC
[14:55:32] *** Evanion has joined #angularjs
[14:55:40] *** greengriminal has joined #angularjs
[14:56:01] *** slopjong has joined #angularjs
[14:56:17] *** Lingos has quit IRC
[14:56:57] *** rileylark has joined #angularjs
[14:57:20] *** glassir has joined #angularjs
[14:57:33] *** rileylark has quit IRC
[14:57:44] <BahamutWC|Laptop> areologist: there is ES6Lint I believe
[14:57:45] <niop> hi, have a simple angular app with ui-router, which runs in browser fine, but not in cordova: index.html shows but not the views. seems a routing problem. a number of posts on routing issues, but having tried setting html5 mode to false, and added <base href="/android_asset/www/" /> to index.html, without result, is there anything that could be suggested tried?
[14:57:47] *** rileylark has joined #angularjs
[14:58:04] *** hershenso has joined #angularjs
[14:58:09] *** hershenso has quit IRC
[14:58:33] *** lite has joined #angularjs
[14:58:37] *** sigurding has quit IRC
[14:58:43] *** mattattaque has joined #angularjs
[14:58:51] <BahamutWC|Laptop> also I believe jshint has some ES6 support
[14:59:02] *** kwaledesign has joined #angularjs
[14:59:52] *** recidive has quit IRC
[14:59:58] <areologist> Thank you, Bahamut. I'll definitely look into that. I was just using jshint as an example, I'd be curious to hear ppl's general tooling experience with ES6 & angular
[15:00:41] <BahamutWC|Laptop> niop: you shouldn’t need base href in index.html
[15:00:45] *** meridieth has joined #angularjs
[15:00:46] <areologist> I'm also curious about using interfaces from Angular 2.0 in 1.3
[15:00:47] *** meridieth has quit IRC
[15:00:52] *** jlmitch5dev has joined #angularjs
[15:00:56] <BahamutWC|Laptop> niop: do you have csp enabled?
[15:01:05] <niop> what's that?
[15:01:25] <niop> content security policy
[15:01:41] <niop> ? on the phone?
[15:01:57] <areologist> I want to use Model and Adapter from Angular 2.0; Restangular 2.0; and of course the 1.3 port of the 2.0 router. Certainly the former calls for ES6.
[15:02:05] *** mlpug has joined #angularjs
[15:02:54] *** lite has quit IRC
[15:03:00] *** mmealling has joined #angularjs
[15:03:09] <areologist> Also angular-materials for UI (not that this matters for ES6, I don't think)
[15:03:10] *** Rafzzz has joined #angularjs
[15:03:11] <BahamutWC|Laptop> niop: also, all your templates cannot start with a leading slash
[15:03:25] *** recidive has joined #angularjs
[15:03:26] *** kops has joined #angularjs
[15:03:29] <niop> doubt it's a security issue. actually, the app worked before, using older versions. rebuilding using current, attempting to, but stuck at the outset with this apparent routing problem.
[15:03:30] *** kops has quit IRC
[15:03:37] *** davi has quit IRC
[15:03:49] *** lite has joined #angularjs
[15:03:52] <niop> yeah. aware of that issue. bumped into that some time ago. but they're clear of leading shlashes.
[15:03:53] <BahamutWC|Laptop> by that I mean in the templateUrl
[15:03:56] <BahamutWC|Laptop> hmm
[15:04:07] <niop> *slashes
[15:04:53] <niop> in the config.. ensured they're root slash free
[15:05:19] *** lite has quit IRC
[15:05:37] *** defaultdict has joined #angularjs
[15:05:40] *** lite has joined #angularjs
[15:06:05] <niop> assume that angular isn't at fault because the app runs fine in browser. seems to be cordova at fault.
[15:06:07] *** manzay has joined #angularjs
[15:06:22] *** manzay has quit IRC
[15:06:26] *** whitebook has joined #angularjs
[15:06:37] *** Oddman has joined #angularjs
[15:07:03] <areologist> wish I knew the answer, niop. :-(
[15:07:06] *** max_ has quit IRC
[15:07:08] *** cads has quit IRC
[15:07:47] *** fedenunez has joined #angularjs
[15:07:47] *** mmeallin_ has joined #angularjs
[15:07:50] <areologist> Let's say one wanted to use angular materials, which only officially supports evergreen browsers...
[15:08:05] <niop> so, the only thing left to try, is step back to an earlier version of cordova and see if one of those is more amenable to angular routing.
[15:08:20] <areologist> but you have a major customer that uses IE9 and is very unlikely to change their policy...
[15:08:42] *** ahmetkapikiran has joined #angularjs
[15:08:57] <areologist> Basically, upgrading their browsers isn't an option but installing custom software would be possible
[15:09:03] <BahamutWC|Laptop> I’d avoid using it then
[15:09:09] <BahamutWC|Laptop> you could use raw polymer
[15:09:11] *** kozak has joined #angularjs
[15:09:37] <areologist> What I'm wondering is if there's still a version of Chrome with which you can install a web app as a native app
[15:09:53] <areologist> I suppose you could technically use Cordova in this way, as a Windows app.. Or so I've heard.
[15:09:53] <BahamutWC|Laptop> or…take care of CSS issues in IE9 with material
[15:10:08] <BahamutWC|Laptop> cca
[15:10:22] <BahamutWC|Laptop> https://github.com/MobileChromeApps/mobile-chrome-apps
[15:10:23] *** mmealling has quit IRC
[15:10:27] <areologist> ha! tackling IE9 with material would consume the next two years of my life probably
[15:10:50] <BahamutWC|Laptop> we’re supporting IE10 at my company and started a rebuild of an app using material
[15:10:53] <areologist> Thank you, Bahamut. That looks awesome.
[15:10:55] <BahamutWC|Laptop> angular material*
[15:11:09] *** edy has joined #angularjs
[15:11:20] *** moritzs has joined #angularjs
[15:11:32] *** niop has left #angularjs
[15:11:52] *** degolyer has joined #angularjs
[15:11:58] *** quantax- has joined #angularjs
[15:11:59] *** degolyer has quit IRC
[15:12:30] <areologist> IE10 with material seems risky. Props though.
[15:12:32] *** c00ljs has quit IRC
[15:13:06] <areologist> I'm hoping the business side will accept evergreen browsers as the spec, and something like that mobile-chrome-apps for customers devoted to shitty browsers
[15:13:51] *** hmsimha_ has quit IRC
[15:14:04] <areologist> Chrome apps ftw
[15:14:27] *** gurke_ has quit IRC
[15:14:42] <areologist> https://developer.chrome.com/apps/about_apps
[15:14:56] *** whetten has joined #angularjs
[15:16:37] *** fedenunez has quit IRC
[15:17:16] *** Jmx has joined #angularjs
[15:17:37] *** causey has joined #angularjs
[15:17:49] *** nesquerra has quit IRC
[15:18:41] <gnu_d> does someone knows how to change hashtag inside plunk ?
[15:18:58] *** vbabiy has joined #angularjs
[15:19:28] *** moritzs has quit IRC
[15:19:40] *** numenor_ has joined #angularjs
[15:19:58] *** fedenunez has joined #angularjs
[15:20:18] *** mgustaf has joined #angularjs
[15:20:42] *** numenor has quit IRC
[15:21:14] *** dylanlin_ has quit IRC
[15:21:15] *** vbabiy has quit IRC
[15:21:42] *** Jmx has quit IRC
[15:21:56] <areologist> TideKit is interesting
[15:21:59] *** ajoslin103 has quit IRC
[15:22:06] *** Luser has joined #angularjs
[15:22:18] *** dacuca has joined #angularjs
[15:23:35] *** vbabiy has joined #angularjs
[15:24:03] *** IvailoStoianov has joined #angularjs
[15:24:24] <Evanion> vaporware so far though
[15:26:01] <areologist> yeah :-/
[15:26:09] *** dejanr has joined #angularjs
[15:27:28] *** rburns has joined #angularjs
[15:27:28] *** recidive has quit IRC
[15:28:24] *** mgustaf has quit IRC
[15:28:32] *** JR___ has quit IRC
[15:30:25] *** \du has joined #angularjs
[15:31:08] *** dejanr has quit IRC
[15:31:40] *** JesuZ has joined #angularjs
[15:31:42] *** ehalas has joined #angularjs
[15:31:43] <Evanion> I’m in their reserved que .. and there haven’t been any updates since october, when I signed up...
[15:31:59] *** fedenunez has quit IRC
[15:32:38] *** hmsimha_ has joined #angularjs
[15:33:10] *** brettfrable has quit IRC
[15:34:30] *** eamonn has joined #angularjs
[15:34:39] *** recidive has joined #angularjs
[15:34:43] *** Star-Lord has joined #angularjs
[15:35:05] *** Oddman has quit IRC
[15:35:45] *** nesquerra has joined #angularjs
[15:35:56] *** evilaliv3 has quit IRC
[15:36:11] *** seriema has joined #angularjs
[15:36:16] *** karen has joined #angularjs
[15:36:31] *** lilbaby has joined #angularjs
[15:36:39] <karen> Hi there Angular heads
[15:36:40] *** karen is now known as Guest38926
[15:36:52] <Evanion> hello karen
[15:37:39] <lilbaby> Buenos dias
[15:38:03] *** SergioFilhow_ has joined #angularjs
[15:38:26] *** sajt has quit IRC
[15:38:27] *** Orbitrix has joined #angularjs
[15:38:55] *** Alina-malina has quit IRC
[15:39:50] *** fourq_ has joined #angularjs
[15:39:52] *** Aerospark has joined #angularjs
[15:41:04] *** Guest38926 has quit IRC
[15:42:20] *** Schrodinger`Cat has joined #angularjs
[15:42:30] *** mmeallin_ has quit IRC
[15:43:17] *** dannyc_ has joined #angularjs
[15:43:42] *** dc_ has joined #angularjs
[15:44:23] *** Aerospark has quit IRC
[15:44:46] *** Alina-malina has joined #angularjs
[15:44:55] *** Alina-malina has joined #angularjs
[15:45:42] *** niop has joined #angularjs
[15:45:45] *** plato1 is now known as plato
[15:45:45] <lilbaby> Qvuestion: when I use ngMock's module('myapp'), does it load all the dependencies declared on that app?
[15:46:01] *** plato has quit IRC
[15:46:01] *** plato has joined #angularjs
[15:46:10] *** corehook has joined #angularjs
[15:46:35] *** JesuZ has quit IRC
[15:46:54] *** kwaledesign has quit IRC
[15:47:50] *** DuelShark has quit IRC
[15:48:05] *** DuelShark has joined #angularjs
[15:48:25] *** dc_ has quit IRC
[15:49:17] *** tfennelly has joined #angularjs
[15:49:34] *** DuelShark has quit IRC
[15:49:51] *** DuelShark has joined #angularjs
[15:49:51] *** ajoslin103 has joined #angularjs
[15:50:27] *** Iravan_ has quit IRC
[15:50:42] *** evotuned has joined #angularjs
[15:50:51] *** morenoh149 has joined #angularjs
[15:50:55] *** corehook has quit IRC
[15:51:07] *** Iravan_ has joined #angularjs
[15:51:10] *** ngbot has joined #angularjs
[15:51:10] <ngbot> [angular.js] petebacondarwin pushed 1 new commit to v1.2.x: http://git.io/X84sAg
[15:51:11] <ngbot> angular.js/v1.2.x 7505d12 thorn0: chore(docs): regroup version selector options into major branches and latest...
[15:51:11] *** ngbot has left #angularjs
[15:51:32] <niop> BahamutWC: on the routing issue with cordova from before, this bug report mentions the same thing, and even gives a reason for it. if it is, then would look as though there's no fix as yet, other than perhaps reversion to earlier version of cordova.
[15:51:51] <niop> "Errant Behavior with AngularJS UI-Router with Cordova on Windows 8/8.1" https://issues.apache.org/jira/browse/CB-7975
[15:53:54] *** tfennelly has quit IRC
[15:54:03] *** whitebook has quit IRC
[15:54:08] *** corehook has joined #angularjs
[15:54:12] *** Oddman has joined #angularjs
[15:54:27] *** jmichaelward has joined #angularjs
[15:55:17] *** Iravan_ has quit IRC
[15:55:41] *** evotuned has quit IRC
[15:55:50] *** morenoh149 has quit IRC
[15:56:20] *** robe2 has joined #angularjs
[15:56:54] *** johnkevinmbasco has joined #angularjs
[15:57:36] *** greengriminal has quit IRC
[15:57:40] *** monir has joined #angularjs
[15:58:56] *** pen has joined #angularjs
[15:59:03] *** mattattaque has quit IRC
[15:59:13] *** jmichaelward has quit IRC
[15:59:27] *** cakirke has quit IRC
[16:00:30] *** corehook has quit IRC
[16:01:17] *** dannyc_ has quit IRC
[16:01:33] *** ajoslin103 has quit IRC
[16:03:18] *** kwaledesign has joined #angularjs
[16:03:26] *** punch has joined #angularjs
[16:04:48] *** lexek_ has quit IRC
[16:05:33] *** nfroidure has joined #angularjs
[16:06:35] *** patrick99e99 has joined #angularjs
[16:08:26] *** boxmein has joined #angularjs
[16:09:07] *** mmealling has joined #angularjs
[16:11:14] *** brettfrable has joined #angularjs
[16:11:18] <gnu_d> Why in this code http://plnkr.co/edit/z1AmPh3VGRt5tU6w45ST?p=preview I'm not able to update the content of the posts object with ng-bind ?
[16:11:34] *** hugofirth has joined #angularjs
[16:11:37] *** patrick99e99 has quit IRC
[16:12:29] *** sajt has joined #angularjs
[16:14:12] *** bhuvanaurora has joined #angularjs
[16:15:59] *** GreenJello has quit IRC
[16:16:18] *** GreenJello has joined #angularjs
[16:18:31] *** bhuvanaurora has quit IRC
[16:20:07] *** deanclkclk has joined #angularjs
[16:20:09] *** tech2 has joined #angularjs
[16:21:09] *** IvailoStoianov has quit IRC
[16:21:26] *** cotko has quit IRC
[16:21:48] *** nesquerra has quit IRC
[16:21:53] *** JohnBat26 has quit IRC
[16:21:58] *** kirfu has joined #angularjs
[16:22:18] *** xuu has quit IRC
[16:22:47] *** Geertje123_ has joined #angularjs
[16:22:53] *** voltagex has quit IRC
[16:23:03] *** recidive has quit IRC
[16:24:22] *** IvailoStoianov has joined #angularjs
[16:24:44] <lilbaby> Can someone help me work through this error? https://gist.github.com/Freyert/00ccce3f615e93595bfb
[16:25:27] <Rafzzz> lilbaby: lookin
[16:25:29] *** startupality has joined #angularjs
[16:25:39] *** zwischenzug has quit IRC
[16:26:25] *** larsgk has joined #angularjs
[16:26:31] *** Milkweed has joined #angularjs
[16:26:40] *** SpotSec has joined #angularjs
[16:26:49] *** JohnBat26 has joined #angularjs
[16:27:24] <Rafzzz> lilbaby: 20secs :)
[16:27:37] <lilbaby> Thanks Rafzzz
[16:28:13] *** xuu has joined #angularjs
[16:28:37] <Rafzzz> lilbaby: $modal is injected into Ctrl
[16:28:46] <Rafzzz> lilbaby: $modalInstance is injected into the modal Ctrl
[16:28:52] *** eBureau has quit IRC
[16:29:34] *** cakirke has joined #angularjs
[16:29:52] <lilbaby> Rafzzz: right?
[16:30:03] <lilbaby> Rafzzz: Yeah, that's how I did it
[16:30:42] <Rafzzz> lilbaby: send all code plz
[16:30:49] <lilbaby> Rafzzz: k two secs
[16:30:57] <Rafzzz> lilbaby: main ctrl and modal ctrl
[16:31:00] *** Laserbeak43 has left #angularjs
[16:31:02] *** bkuberek has joined #angularjs
[16:31:17] *** mmealling has quit IRC
[16:31:56] *** monir has quit IRC
[16:32:42] *** moritzs has joined #angularjs
[16:33:04] <lilbaby> Rafzzz: https://gist.github.com/Freyert/00ccce3f615e93595bfb
[16:33:15] <lilbaby> Rafzzz: I use $modal in a run block on the main module.
[16:33:29] *** Laserbeak43 has joined #angularjs
[16:34:04] *** adpirz has joined #angularjs
[16:34:05] *** mmeallin_ has joined #angularjs
[16:34:09] <Rafzzz> lilbaby: why?
[16:35:19] <lilbaby> Rafzzz: Well, an interceptor $broadcasts the 'apiError' event, and I wanted it to work everywhere in my application.
[16:35:41] <Rafzzz> lilbaby: right, what's the data that's broadcast by apiError?
[16:36:08] <Rafzzz> does it have controller: 'ModalerrorCtrl' ?
[16:36:18] <Rafzzz> (which by the way, you need to rename properly)
[16:36:18] *** mmeallin_ has quit IRC
[16:36:28] *** fourq has quit IRC
[16:36:29] *** fourq_ is now known as fourq
[16:36:33] *** fourq__ has joined #angularjs
[16:36:41] <lilbaby> Rename properly?
[16:36:50] <lilbaby> like ModalError?
[16:36:52] <lilbaby> Ctrl
[16:36:54] <Rafzzz> yes
[16:37:06] <lilbaby> It's that dang generator's fault..
[16:37:51] <Rafzzz> lilbaby: $modal.open takes a config object as a parameter, yeah?
[16:38:00] <lilbaby> Rafzz: Yup
[16:38:12] *** ciwolsey has joined #angularjs
[16:38:13] *** Oxynum has quit IRC
[16:38:16] <lilbaby> And it gets that from the interceptor.
[16:38:18] <Rafzzz> lilbaby: can you update gist with that object
[16:38:22] *** adpirz has quit IRC
[16:38:22] *** IJNX has joined #angularjs
[16:38:22] <Rafzzz> lilbaby: show me
[16:39:14] *** zivester has joined #angularjs
[16:39:37] *** Oxynum has joined #angularjs
[16:39:39] *** aton` has quit IRC
[16:39:42] <lilbaby> Rafzzz: https://gist.github.com/Freyert/00ccce3f615e93595bfb
[16:39:51] <Rafzzz> ty, brb 5 mins tho
[16:40:10] *** a3gis has joined #angularjs
[16:40:39] *** startupality has quit IRC
[16:40:44] *** Laserbeak43 has quit IRC
[16:41:13] *** Laserbeak has joined #angularjs
[16:41:46] *** wex13r has joined #angularjs
[16:42:06] <a3gis> Hello! I could use some help on a problem with ng-animate: I am using ng-include with ng-animate. My app is essentially a FSM; each state has a template and some data. Ng-include is bound to the template for the current state. If the state changes, ng-include transitions to the new template. My issue is that as soon as the state is changed, the data is switched to the current state, thus the previous template loses all its data. Is there a way to sto
[16:42:06] <a3gis> p it from refreshing (aka kill all bindings to that template) during the transition?
[16:42:44] *** Laserbeak has quit IRC
[16:42:50] *** rileylark has quit IRC
[16:43:05] *** rileylark has joined #angularjs
[16:43:11] *** Laserbeak has joined #angularjs
[16:43:33] *** rileylark has quit IRC
[16:44:21] *** Rafzzz has quit IRC
[16:45:09] *** recidive has joined #angularjs
[16:45:27] *** dsdeiz has quit IRC
[16:45:37] *** IJNX has quit IRC
[16:46:05] *** punch has quit IRC
[16:47:21] *** ctanga has joined #angularjs
[16:47:30] <a3gis> any ideas?
[16:47:49] *** SFeser has joined #angularjs
[16:48:37] *** rburns has quit IRC
[16:48:39] *** eden_lane has left #angularjs
[16:48:53] *** punch has joined #angularjs
[16:49:16] *** doginal has quit IRC
[16:49:16] <Evanion> Do you use ui-router?
[16:51:25] *** evotuned has joined #angularjs
[16:51:35] *** ludkiller has quit IRC
[16:52:14] *** ludkiller has joined #angularjs
[16:52:29] <a3gis> Evanion: nope
[16:52:57] *** hmsimha_ has quit IRC
[16:54:31] *** whitebook has joined #angularjs
[16:55:18] *** hmsimha_ has joined #angularjs
[16:55:36] *** tech2 has quit IRC
[16:56:00] *** whiteboo_ has joined #angularjs
[16:56:06] *** corehook has joined #angularjs
[16:56:18] *** evotuned has quit IRC
[16:57:39] *** \du has quit IRC
[16:58:00] *** ngbot has joined #angularjs
[16:58:01] <ngbot> [angular.js] petebacondarwin pushed 4 new commits to master: http://git.io/sGAF3w
[16:58:01] <ngbot> angular.js/master 4644c58 Peter Bacon Darwin: revert: fix(input): always pass in the model value to `ctrl.$isEmpty`...
[16:58:01] <ngbot> angular.js/master 40406e2 Peter Bacon Darwin: fix(input[date]): do not use `$isEmpty` to check the model validity
[16:58:01] <ngbot> angular.js/master 8692f87 Martin Staffa: fix(input): set ngTrueValue on required checkbox...
[16:58:01] *** ngbot has left #angularjs
[16:59:37] *** whitebook has quit IRC
[17:00:10] *** jmichaelward has joined #angularjs
[17:00:54] *** jgladwill has joined #angularjs
[17:00:55] *** jgladwill has joined #angularjs
[17:01:20] <gnu_d> how do I hide other views when some route is called e.g: #/posts/, I don't understand how the route <-> views work
[17:01:46] *** Iravan_ has joined #angularjs
[17:02:06] *** eamonn has quit IRC
[17:02:08] *** thomastuts has joined #angularjs
[17:02:23] *** mennea has quit IRC
[17:02:40] *** eamonn has joined #angularjs
[17:04:05] *** chaohuanghong has quit IRC
[17:04:24] *** chaohuanghong has joined #angularjs
[17:05:06] *** tech2 has joined #angularjs
[17:06:00] *** nycdevgirl has joined #angularjs
[17:06:04] *** Iravan_ has quit IRC
[17:07:15] *** eamonn has quit IRC
[17:07:48] *** Nijikokun has quit IRC
[17:08:11] *** fourq__ has quit IRC
[17:08:38] *** fourq has quit IRC
[17:08:43] *** fourq_ has joined #angularjs
[17:08:46] *** fourq_ is now known as fourq
[17:09:25] *** thomastuts has quit IRC
[17:09:47] *** kwaledesign has quit IRC
[17:13:59] <gnu_d> can I access the current element when an element is clicked via ng-click, so I could change it's value for button element ?
[17:15:01] *** cakirke has quit IRC
[17:15:17] *** larsgk has quit IRC
[17:16:19] *** whitebook has joined #angularjs
[17:16:55] *** gazbond has joined #angularjs
[17:16:55] <numenor_> gnu_d , always use models instead of accessing elements
[17:16:57] *** whiteboo_ has quit IRC
[17:17:15] *** whiteboo_ has joined #angularjs
[17:17:28] <gnu_d> numenor_: I found something like this: http://stackoverflow.com/questions/24320237/change-the-text-of-the-button-on-click-using-angular-js
[17:18:38] *** oste has joined #angularjs
[17:19:33] <a3gis> Evanion: nevermind; solved my problem with a directive :)
[17:19:46] *** numenor_ has quit IRC
[17:19:53] *** despai has joined #angularjs
[17:19:58] *** IJNX has joined #angularjs
[17:20:45] *** dannyc_ has joined #angularjs
[17:21:07] *** whitebook has quit IRC
[17:21:17] *** hugofirth has quit IRC
[17:22:35] *** dimetron has joined #angularjs
[17:23:12] *** Geertje123_ has quit IRC
[17:23:42] *** rikkipitt has quit IRC
[17:24:14] *** jmichaelward has quit IRC
[17:24:18] *** punch has quit IRC
[17:25:42] *** dannyc_ has quit IRC
[17:25:49] *** Aerospark has joined #angularjs
[17:26:41] *** a3gis has quit IRC
[17:27:14] *** arabot has joined #angularjs
[17:27:51] *** rho has joined #angularjs
[17:27:51] *** rho has joined #angularjs
[17:28:13] *** frankblizzar has quit IRC
[17:28:30] *** nfroidure has quit IRC
[17:28:37] *** frankblizzar has joined #angularjs
[17:28:48] *** Sky[x] has joined #angularjs
[17:29:01] *** k-dawg has quit IRC
[17:30:02] *** Rafzzz has joined #angularjs
[17:30:07] *** despai has quit IRC
[17:30:09] *** moafoca has joined #angularjs
[17:30:16] *** dsdeiz has joined #angularjs
[17:30:22] *** oste has quit IRC
[17:30:23] *** StevenMcD has quit IRC
[17:30:58] *** AciD`` has quit IRC
[17:31:02] *** monir has joined #angularjs
[17:31:19] *** StevenMcD has joined #angularjs
[17:31:20] <Rafzzz> lilbaby: ok, back, you still there?
[17:31:46] <lilbaby> Rafzzz: yup!
[17:31:48] *** tbo_ has joined #angularjs
[17:31:55] <lilbaby> Man you spent a long time on that
[17:31:58] <lilbaby> thanks!
[17:32:05] *** jonr2219 has joined #angularjs
[17:32:13] *** brettfrable has quit IRC
[17:32:27] *** tech2 has quit IRC
[17:32:37] *** prbc has joined #angularjs
[17:32:43] <Rafzzz> lilbaby: sorry, had phone call
[17:32:43] *** a3gis has joined #angularjs
[17:32:44] *** kas84 has quit IRC
[17:33:05] <lilbaby> Rafzzz: haha no, I'm just impressed you're still with me!
[17:33:23] *** elrabin has joined #angularjs
[17:33:24] *** Sky[x] has quit IRC
[17:35:32] *** despai has joined #angularjs
[17:36:09] *** josh-k has joined #angularjs
[17:36:41] *** foofoobar has quit IRC
[17:36:55] *** josh-k has quit IRC
[17:37:58] <Rafzzz> lilbaby: does the modal open?
[17:38:12] <lilbaby> Rafzzz: Yeah it works perfectly
[17:38:39] <Rafzzz> lilbaby: but you can't use any $modalInstance methods, right?
[17:39:06] <lilbaby> Rafzzz: no that works too. It closes it when I click okay
[17:39:27] *** Sky[x] has joined #angularjs
[17:39:27] *** IJNX has quit IRC
[17:39:29] <Rafzzz> lilbaby: but the error is there regardleess?
[17:39:37] *** morenoh149 has joined #angularjs
[17:39:48] <lilbaby> Rafzzz: just in the test
[17:40:02] <Rafzzz> lilbaby: lol :D ok
[17:40:05] *** MaxV has joined #angularjs
[17:40:35] <Rafzzz> lilbaby: inject $modal
[17:40:46] <lilbaby> Rafzzz: if this is it ....
[17:40:58] *** zivester has quit IRC
[17:41:07] <lilbaby> Rafzzz: I don't get that, why doesn't it just inject everything on my application module?
[17:41:11] *** gazbond has quit IRC
[17:41:44] <Rafzzz> lilbaby: might have to step out of this one if you're talking mocking, because not that good
[17:42:03] <Rafzzz> lilbaby: but your test doesn't mock/test app.run, so idk
[17:42:11] <lilbaby> ah
[17:42:14] *** DuelShark has quit IRC
[17:42:21] <lilbaby> let me try this out
[17:44:32] *** morenoh149 has quit IRC
[17:44:46] *** frankblizzar has quit IRC
[17:45:26] *** TweedleDumb has joined #angularjs
[17:45:40] <TweedleDumb> Working on my day off due to the love factor.. lmao
[17:45:53] *** sajt has quit IRC
[17:45:53] *** despai has quit IRC
[17:46:06] <TweedleDumb> Is a factory a singleton or only .service, though they are both 'services'
[17:46:29] <TweedleDumb> Trying to store my application state and tried to use a factory, but seemed a value that I was thought to persis was null
[17:48:44] <Rafzzz> TweedleDumb: Service is a constructor, so it can be newed, factory is a pattern
[17:49:05] <Rafzzz> TweedleDumb: most styleguides just say to stick with the factory pattern :)
[17:49:14] <beckyconning_> whats the process of applying a controller to a scope called? i know the controller is like a constructor for the scope but does that mean that controller contructed scope is a good name for a scope thats been through a controller?
[17:49:18] *** doug64k has quit IRC
[17:49:55] <TweedleDumb> sounds like you're over-complicating shizzle there beckyconning_
[17:50:06] <beckyconning_> TweedleDumb: every day!
[17:50:09] <TweedleDumb> lol
[17:50:10] <Rafzzz> beckyconning_: wot? :p
[17:50:28] <beckyconning_> i think controller initialised scope is right actually
[17:50:34] <TweedleDumb> Don't feel bad we're all been there, and btw I answered my own question... helps if I actually save some info to the factory before trying to get it back out..
[17:51:01] <TweedleDumb> scope confuses people, use the controller as syntax and start focusing on the ease... of syntax
[17:51:18] *** stephen has joined #angularjs
[17:51:42] <TweedleDumb> ng-controller = "NameOfMyController as ctrl" in your html refer to your variables as ctrl.myVariable in your actual controllers do this var self = this; self.myVariable = "Whatever"
[17:51:49] <niop> hi folks, the latest ui-router doesn't seem to work with cordova. msged earlier. if anyone knows of a solution would be glad to hear. considering reverting to earlier version of ui-router, but that might not fix the problem if ui-router works the same fundamentally, and the breakage is due instead to changes in cordova. but google play requires fairly up to date version of latter for security reasons.
[17:51:58] *** gazbond has joined #angularjs
[17:52:14] *** MTGap has joined #angularjs
[17:52:17] *** evotuned has joined #angularjs
[17:52:33] <ctanga> “doesn’t work”?
[17:52:41] <niop> nope
[17:52:59] <niop> routing doesn't work.. index.html displays.. but not the views.
[17:53:10] <ctanga> what have you tried?
[17:53:39] *** dannyc_ has joined #angularjs
[17:53:39] <niop> thought the problems might have been to lineman.. sticking in npm stuff. or moving the folders about.. but got it down to bare bones ui-router, and it's still not going.
[17:54:05] <ctanga> try to gather more details
[17:54:08] <niop> there's a bug report that's similar to this.. but seems to be for a windows version of cordova https://issues.apache.org/jira/browse/CB-7975
[17:54:14] <ctanga> I’d be happy to help, but need more to go on than “it doesn’t route"
[17:54:34] <niop> happy to post the code somewhere.
[17:54:43] *** jolts has quit IRC
[17:54:58] *** mattattaque has joined #angularjs
[17:55:13] *** gazbond has quit IRC
[17:55:46] *** tech2 has joined #angularjs
[17:55:47] <niop> zip with /js /templates /vendor and index.html. needs to be stuck in the www folder of cordova and built.
[17:55:50] <ctanga> looking at your raw code probably won’t help me. that jira issue seems like the cause, yeah?
[17:56:17] <niop> not sure what jira is.. but it's a very similar phenomenon.
[17:56:25] <ctanga> jira is the link you psoted :)
[17:56:35] <niop> atlassian.. ok.
[17:56:38] *** zivester has joined #angularjs
[17:56:47] *** evotuned has quit IRC
[17:56:47] <ctanga> I know nothing about cordova. this appears to be a windows only issue, yes?
[17:56:54] *** jolts has joined #angularjs
[17:57:05] <niop> and it's very recent. that would make it more likely relevant.
[17:57:08] *** Aerospark has joined #angularjs
[17:57:13] *** Luser has quit IRC
[17:57:48] <niop> no no., well, as far as polenski is concerned it is. he states in fact that it doesn't affect android. but.. i've tried it on two of the latest android phones, and doesn't work.
[17:57:49] *** Luser has joined #angularjs
[17:58:17] *** TweedleDumb has quit IRC
[17:58:36] *** anivemin has joined #angularjs
[17:58:36] <ctanga> did you try debugging the cordova app?
[17:58:48] <niop> but it wouldn't seem implausible, that if ther'es a routing issue on windows it might also possibly affect adroid
[17:58:51] <niop> android
[17:59:01] <ctanga> yeah
[17:59:12] <ctanga> how do you work with cordova? in an emulator?
[17:59:15] <niop> yup.. looked for output in debugger. also dropped in listeners on routing errors. zilch.
[17:59:25] <niop> geny, and the actual phones.
[17:59:49] *** evilaliv3 has joined #angularjs
[18:00:02] <ctanga> I googled ‘geny’ and nothing relavent appears
[18:00:10] <niop> naturally one wouldn't claim it doesn't work without a test on the actual phone, rather than emulator.
[18:00:24] <niop> genymotion
[18:00:28] <niop> i think it's french
[18:00:35] <ctanga> assume that I know nothing about cordova
[18:00:36] *** cacts has joined #angularjs
[18:00:40] <ctanga> because i know nothing about cordova
[18:00:43] <ctanga> but I know lots about ui-router
[18:00:58] *** toad-br has joined #angularjs
[18:01:17] *** dannyc_ has quit IRC
[18:01:46] <niop> ok,, that's good to hear.. because tomorrow is actually the date of deployment of the app in the business, why im up at 4am. and this is a rather sticky issue.
[18:01:57] *** tech2 has quit IRC
[18:01:57] *** Luser has quit IRC
[18:02:19] <ctanga> well I’m sorry to hear that
[18:02:41] *** morenoh149 has joined #angularjs
[18:02:42] <niop> the thing is though, usage is rather straightforward, for a simple test app. so there's no problem with that. it works in a browser too. it's more.. why doesn't it route in android.
[18:02:45] <niop> yeah
[18:02:59] <niop> they dont like delays
[18:03:01] <ctanga> sounds like a cordova problem
[18:03:16] *** jgladwill has quit IRC
[18:03:18] <niop> but.. this is open source. it's a new experience ;). up sides. but always up.
[18:03:26] <niop> *not always
[18:03:33] *** Aerospark has quit IRC
[18:03:58] <niop> ah.. well, that's something i was wondering about. because it would inform as to which component to backtrack version wise.
[18:04:15] *** anivemin has quit IRC
[18:04:15] <niop> and would seem reasonable, because the router works fine in the browser.
[18:04:24] *** monir has quit IRC
[18:04:50] <niop> but google play requires a reasonably recent version of cordova for security reasons, so little leeway for reversion.
[18:05:18] *** hmsimha_ has quit IRC
[18:05:28] *** jonr2219 has quit IRC
[18:05:29] <niop> there have been some other problems reported of a similar nature..
[18:05:45] <niop> eg http://stackoverflow.com/questions/18333023/cordova-angularjs-routing-not-working
[18:05:54] <niop> and http://stackoverflow.com/questions/18191067/angularjs-routing-not-working-properly-in-phonegap
[18:06:29] *** NoNMaDDeN has quit IRC
[18:07:12] *** zivester has quit IRC
[18:07:16] <niop> tried switching html5 mode off and on. and also added a base tag,<base href="/android_asset/www/" />.
[18:07:22] *** morenoh149 has quit IRC
[18:07:23] *** mac_nibblet has left #angularjs
[18:07:41] <niop> ah.. actually, base tag makes the angular router work, but maybe ui router doesn't like it.
[18:08:38] *** sabbir has joined #angularjs
[18:08:43] <niop> or perhaps prefer base as /
[18:08:50] <sabbir> hi
[18:09:02] *** NoNMaDDeN has joined #angularjs
[18:09:18] *** dimetron has quit IRC
[18:09:58] <pontiki> newbie question: is there a recommended starting point for a new angular app that includes testing frameworks and so on? (coming from the rails world, doing `rails new blah` analog)
[18:10:22] *** wex13r has quit IRC
[18:10:37] *** a3gis has quit IRC
[18:11:17] <sabbir> i am using webstrom 9.i created a project of type angularjs(angular-seed framework).can you tell what are the steps to run it by creating a run/debug config?
[18:11:57] *** corehook has quit IRC
[18:12:04] <beckyconning_> is there a convention for naming functions which change the value of something on a scope based on some asynchronously produced value?
[18:12:14] *** djam90 has joined #angularjs
[18:12:17] *** dsdeiz has quit IRC
[18:12:23] <beckyconning_> something like `getAndApply`
[18:12:30] <sabbir> i am using webstrom 9.i created a project of type angularjs(angular-seed framework).can you tell what are the steps to run it by creating a run/debug config?
[18:13:09] <sabbir> i am using webstrom 9.i created a project of type angularjs(angular-seed framework).can you tell what are the steps to run it by creating a run/debug config?
[18:13:21] *** dreambox has quit IRC
[18:14:10] *** laurensclaessen has joined #angularjs
[18:15:04] <sabbir> i am using webstrom 9.i created a project of type angularjs(angular-seed framework).can you tell what are the steps to run it by creating a run/debug config?
[18:15:24] <pontiki> wow....
[18:15:26] <sabbir> anybody know it
[18:15:57] <pontiki> no, but do you think asking the same question 4 times in a row makes the answer appear quicker? :)
[18:16:15] *** larsgk has joined #angularjs
[18:16:35] *** spaceonline has joined #angularjs
[18:17:16] <lilbaby> Rafzzz: I got side tracked. That didn't seem to work
[18:17:57] *** whunt has joined #angularjs
[18:18:39] <ctanga> niop: so you needed a base tag?
[18:18:40] *** gazbond has joined #angularjs
[18:19:04] <beckyconning_> sabbir: if you are using webstorm i'd recommend watching the http://egghead.io videos
[18:19:06] <Rafzzz> lilbaby: tbh, I'd fund someone who does loads of TDD or unit testing because what you're trying to do is weird anyway and I just dont know what to suggest
[18:19:06] *** ededagic has joined #angularjs
[18:19:22] <lilbaby> Rafzzz: sounds good
[18:19:26] *** corehook has joined #angularjs
[18:19:32] <lilbaby> Rafzzz: thanks for your help though!
[18:19:33] *** voltagex has joined #angularjs
[18:19:47] <niop> ctanga: it hasn't worked, so wouldn't say it was needed necessarily. but in the absence of anything else, worth at try.
[18:20:04] <Rafzzz> lilbaby: you probably need to instantiate the .run bit in the test so that $modal and subsequently $modalInstance are generated
[18:21:07] *** InvidFlower has joined #angularjs
[18:22:00] *** evotuned has joined #angularjs
[18:22:19] <niop> ctanga: just tried <base href="/android_asset/www/"> and also <base href="/"> but no difference.
[18:22:51] *** whunt has quit IRC
[18:23:00] *** adpirz has joined #angularjs
[18:23:20] <niop> i believe that cordova doesn't run a web server. it loads pages up with file://. which could cause complications in routing based on urls supplied to cordova.
[18:24:05] <ctanga> Huh, interesting. it sounds like magic to me
[18:24:09] *** gazbond has quit IRC
[18:24:09] *** Luser has joined #angularjs
[18:24:13] <oniijin> are u using ionic?
[18:24:15] *** corehook has quit IRC
[18:24:20] *** ctanga has quit IRC
[18:24:24] *** dejanr has joined #angularjs
[18:24:27] *** hmsimha_ has joined #angularjs
[18:24:43] *** prbc has quit IRC
[18:25:01] *** ctanga has joined #angularjs
[18:25:04] <niop> yeah.. it worked a few months ago build using older versions of things. but rebuilding using new versions, and it's hit that snag.
[18:25:09] <niop> *built
[18:25:18] *** DrAwesomeClaws has quit IRC
[18:25:51] *** prbc has joined #angularjs
[18:25:56] <niop> i'd be happy to revert to the older versions, except that the app might be taken off play if cordova isn't updated at least.
[18:26:02] *** drej has quit IRC
[18:26:58] <sabbir> anybody know it
[18:27:02] <sabbir> i am using webstrom 9.i created a project of type angularjs(angular-seed framework).can you tell what are the steps to run it by creating a run/debug config?
[18:27:32] *** dreambox has joined #angularjs
[18:27:35] <niop> even if there was just some confirmation of a bug from someone with some authority on these components, then that at least could be reported to the client as.. well, a decent excuse.
[18:27:42] *** adpirz has quit IRC
[18:27:42] *** DuelShark has joined #angularjs
[18:27:44] *** cthrax has joined #angularjs
[18:29:19] *** JR___ has joined #angularjs
[18:29:35] *** sabbir has quit IRC
[18:30:41] *** sacho has joined #angularjs
[18:30:59] *** laurensclaessen has quit IRC
[18:31:39] *** laurensclaessen has joined #angularjs
[18:32:46] *** wex13r has joined #angularjs
[18:33:28] *** JR___ has quit IRC
[18:33:34] *** Aliks has joined #angularjs
[18:34:44] <niop> but of course the overriding interest is to get around the problem somehow.
[18:34:53] *** jMyles has joined #angularjs
[18:35:02] *** kas84 has joined #angularjs
[18:36:42] *** theBorgu has joined #angularjs
[18:37:17] *** djam90 has quit IRC
[18:38:36] *** evotuned has quit IRC
[18:39:43] *** elrabin has quit IRC
[18:41:01] *** Oddman has quit IRC
[18:41:57] *** cotko has joined #angularjs
[18:42:52] *** corehook has joined #angularjs
[18:43:10] *** Sky[x] has quit IRC
[18:44:14] *** patrickarlt has joined #angularjs
[18:44:54] *** stephen has quit IRC
[18:46:09] *** elrabin has joined #angularjs
[18:47:06] *** Sky[x] has joined #angularjs
[18:47:38] *** corehook has quit IRC
[18:48:04] *** k-dawg has joined #angularjs
[18:50:13] *** laurensclaessen has quit IRC
[18:50:42] *** dreambox has quit IRC
[18:52:23] *** sajt has joined #angularjs
[18:53:52] *** cthrax has quit IRC
[18:54:17] *** bayousoft has quit IRC
[18:54:28] *** SonikBoom has joined #angularjs
[18:54:49] *** xxMatiasFCxx has joined #angularjs
[18:55:02] *** carlitux has joined #angularjs
[18:55:14] *** younqcass has quit IRC
[18:55:32] <carlitux> Hi guys how can I access the bound element on controller?
[18:56:45] *** dreambox has joined #angularjs
[18:57:08] *** k-dawg has quit IRC
[18:57:31] *** Prjio has joined #angularjs
[18:58:15] *** AtomicCookie has quit IRC
[18:58:27] *** AtomicCookie has joined #angularjs
[18:58:28] *** punch has joined #angularjs
[18:58:51] *** xxMatiasFxx has quit IRC
[18:58:51] *** mennea has joined #angularjs
[19:00:03] *** JERE has joined #angularjs
[19:01:45] *** monir has joined #angularjs
[19:01:51] *** AtomicCookie has quit IRC
[19:01:55] *** wa5ted is now known as wa5ted_away
[19:02:43] *** cthrax has joined #angularjs
[19:03:57] *** carlitux has quit IRC
[19:05:14] *** lite has quit IRC
[19:05:37] *** otisZart has quit IRC
[19:06:03] *** boxmein has quit IRC
[19:06:11] *** jonr22 has quit IRC
[19:06:13] *** renlo has joined #angularjs
[19:06:47] *** Sky[x] has quit IRC
[19:06:56] *** ededagic has quit IRC
[19:07:21] *** dreambox has quit IRC
[19:07:22] *** Sky[x] has joined #angularjs
[19:07:41] *** ajoslin103 has joined #angularjs
[19:08:13] *** spaceonline has quit IRC
[19:08:36] *** gazbond has joined #angularjs
[19:09:42] *** mtsr has quit IRC
[19:10:06] *** Lakario has quit IRC
[19:12:13] *** dannyc_ has joined #angularjs
[19:12:49] *** jmichaelward has joined #angularjs
[19:13:08] *** Oddman has joined #angularjs
[19:14:02] *** trustyhank has joined #angularjs
[19:16:13] *** ikevin has quit IRC
[19:16:15] *** elrabin has quit IRC
[19:16:24] *** hmsimha_ has quit IRC
[19:16:51] *** dannyc_ has quit IRC
[19:17:33] *** Sebastien-L has joined #angularjs
[19:17:45] *** jmichaelward has quit IRC
[19:17:54] *** AlSquirikou has joined #angularjs
[19:18:03] *** Joseph_Silber has joined #angularjs
[19:18:48] *** BahamutWC_ has joined #angularjs
[19:18:54] *** bc__ has joined #angularjs
[19:18:58] *** whunt has joined #angularjs
[19:18:58] *** Zren has joined #angularjs
[19:19:07] *** marcjs_ has joined #angularjs
[19:19:09] *** instence_ has joined #angularjs
[19:19:10] *** bealtine^ has joined #angularjs
[19:19:12] *** foofoobar has joined #angularjs
[19:19:20] *** AlSquirrel has quit IRC
[19:19:21] *** monir_ has joined #angularjs
[19:19:25] *** quantax has joined #angularjs
[19:19:26] *** chaohuanghong1 has joined #angularjs
[19:19:27] *** efco has joined #angularjs
[19:19:31] *** sixr420- has joined #angularjs
[19:19:40] *** gazbond has quit IRC
[19:19:52] *** ScioMin has joined #angularjs
[19:20:19] *** TweedleDee has quit IRC
[19:20:27] *** instence has quit IRC
[19:20:27] *** BahamutWC has quit IRC
[19:20:49] *** TweedleDee has joined #angularjs
[19:20:51] *** nycdevgirl has quit IRC
[19:20:52] *** ajoslin103 has quit IRC
[19:20:54] *** InvidFlower has quit IRC
[19:21:03] *** chaohuanghong has quit IRC
[19:21:03] *** quantax- has quit IRC
[19:21:04] *** bealtine has quit IRC
[19:21:04] *** bc_ has quit IRC
[19:21:11] *** corehook has joined #angularjs
[19:21:27] *** marcjs has quit IRC
[19:21:39] *** monir has quit IRC
[19:21:39] *** japhar81 has quit IRC
[19:21:40] *** Shadeness has quit IRC
[19:21:40] *** sixr420 has quit IRC
[19:21:40] *** JosephSilber has quit IRC
[19:22:14] *** arpu has joined #angularjs
[19:22:29] *** yhsiang has quit IRC
[19:22:39] *** yhsiang_ has joined #angularjs
[19:22:46] *** Luser has quit IRC
[19:23:04] *** whunt has quit IRC
[19:23:15] *** dannyc_ has joined #angularjs
[19:23:23] *** Luser has joined #angularjs
[19:24:22] *** dreambox has joined #angularjs
[19:24:27] *** glassir has quit IRC
[19:25:16] *** dacuca has quit IRC
[19:25:21] *** ngbot has joined #angularjs
[19:25:21] <ngbot> [angular.js] pkozlowski-opensource pushed 1 new commit to v1.2.x: http://git.io/OACSsQ
[19:25:21] <ngbot> angular.js/v1.2.x 1b9e408 Georgios Kalpakas: fix($route): fix redirection with optional/eager params...
[19:25:21] *** ngbot has left #angularjs
[19:25:39] *** poofmooter has joined #angularjs
[19:27:42] *** zz_night-owl is now known as night-owl
[19:27:47] *** Luser has quit IRC
[19:28:01] *** poofmoot_ has quit IRC
[19:28:06] *** dannyc_ has quit IRC
[19:28:17] *** mennea has quit IRC
[19:28:58] *** mennea has joined #angularjs
[19:30:19] *** ededagic has joined #angularjs
[19:31:02] *** hmsimha_ has joined #angularjs
[19:31:38] *** uru|away is now known as uru
[19:32:51] *** elrabin has joined #angularjs
[19:32:57] *** gazbond has joined #angularjs
[19:32:59] *** diffalot has quit IRC
[19:33:29] *** adpirz has joined #angularjs
[19:34:30] *** eamonn has joined #angularjs
[19:35:24] *** bealtine^ has quit IRC
[19:35:40] *** despai has joined #angularjs
[19:35:56] *** monir_ has quit IRC
[19:36:21] *** bealtine has joined #angularjs
[19:37:33] *** edy has quit IRC
[19:38:05] *** Oxynum has quit IRC
[19:38:09] *** edy has joined #angularjs
[19:38:11] *** tfennelly has joined #angularjs
[19:38:27] *** Oxynum has joined #angularjs
[19:38:43] *** DuelShark has quit IRC
[19:38:53] *** theBorgu has quit IRC
[19:38:57] *** DuelShark has joined #angularjs
[19:39:32] *** DuelShark has joined #angularjs
[19:39:52] *** diffalot has joined #angularjs
[19:40:07] *** DuelShark has joined #angularjs
[19:40:36] *** diffalot has quit IRC
[19:41:11] *** diffalot has joined #angularjs
[19:41:57] *** DuelShark has quit IRC
[19:42:09] *** DuelShark has joined #angularjs
[19:42:20] *** tschundeee has joined #angularjs
[19:42:44] *** DuelShark has joined #angularjs
[19:42:50] *** Sebastien-L has quit IRC
[19:43:25] *** a3gis has joined #angularjs
[19:43:42] *** mlpug has quit IRC
[19:44:21] *** gazbond has quit IRC
[19:44:32] *** cacts|wtf has joined #angularjs
[19:44:38] *** night-owl is now known as zz_night-owl
[19:44:48] *** DuelShark has quit IRC
[19:45:05] *** DuelShark has joined #angularjs
[19:45:27] *** punch has quit IRC
[19:45:32] *** cacts|wtf has quit IRC
[19:46:19] *** s_kilk has joined #angularjs
[19:46:27] *** cacts|wtf has joined #angularjs
[19:46:40] *** elrabin has quit IRC
[19:46:41] *** DuelShark has joined #angularjs
[19:46:53] *** tschundeee has quit IRC
[19:47:00] *** cacts has quit IRC
[19:48:38] *** deanclkclk has quit IRC
[19:48:53] *** rx_ has joined #angularjs
[19:49:06] *** Oddman has quit IRC
[19:49:19] *** yts has joined #angularjs
[19:49:26] *** Oddman has joined #angularjs
[19:49:37] *** memento_ has quit IRC
[19:50:04] *** JERE has quit IRC
[19:51:16] *** Luser has joined #angularjs
[19:51:23] *** efco has quit IRC
[19:51:51] *** Luser has quit IRC
[19:52:09] *** Luser has joined #angularjs
[19:53:46] *** tschundeee has joined #angularjs
[19:53:56] *** elrabin has joined #angularjs
[19:53:57] *** rho has quit IRC
[19:53:58] *** Luser_ has joined #angularjs
[19:54:13] *** boxmein has joined #angularjs
[19:54:16] *** Luser_ has quit IRC
[19:54:22] *** scrooge_mcduck has joined #angularjs
[19:54:29] *** whiteboo_ has quit IRC
[19:54:34] *** laurensclaessen has joined #angularjs
[19:54:40] *** boxmein is now known as pacbrad
[19:54:44] *** pacbrad is now known as boxmein
[19:54:57] *** Luser_ has joined #angularjs
[19:55:03] *** hmsimha_ has quit IRC
[19:56:00] *** Shrooms has joined #angularjs
[19:56:38] *** Luser has quit IRC
[19:57:00] *** mtsr has joined #angularjs
[19:57:24] *** hmsimha_ has joined #angularjs
[19:57:38] *** s_kilk has quit IRC
[19:57:55] *** kalusn has quit IRC
[19:58:19] *** mennea has quit IRC
[19:58:23] *** kalusn has joined #angularjs
[19:58:43] *** pretzel80 has joined #angularjs
[19:58:57] *** mennea has joined #angularjs
[19:59:43] *** kayloos has joined #angularjs
[20:00:30] *** Aerospark has joined #angularjs
[20:00:31] *** disorder20 has joined #angularjs
[20:00:32] *** evotuned has joined #angularjs
[20:01:03] *** laurensclaessen has quit IRC
[20:01:07] *** c00ljs has joined #angularjs
[20:01:53] *** evotuned has quit IRC
[20:02:40] *** BahamutWC_ is now known as BahamutWC
[20:03:07] *** kalusn has quit IRC
[20:04:38] *** shpoont has quit IRC
[20:04:40] *** tech2 has joined #angularjs
[20:05:12] *** scrooge_mcduck has quit IRC
[20:05:18] *** Aerospark has quit IRC
[20:06:11] *** rileylark has joined #angularjs
[20:06:17] *** lite has joined #angularjs
[20:06:41] *** macobo has joined #angularjs
[20:07:10] *** niop has quit IRC
[20:07:41] *** mlpug has joined #angularjs
[20:07:46] *** whitebook has joined #angularjs
[20:07:46] *** stormbytes has joined #angularjs
[20:07:53] *** patrick99e99 has joined #angularjs
[20:08:26] *** slopjong has quit IRC
[20:08:40] *** evotuned has joined #angularjs
[20:08:52] *** shredjs has joined #angularjs
[20:09:36] <shredjs> hey ngsrc generate data-src in html code.. but my picture doesnt show... if i just use src instead of src it works any way of doing that ?
[20:10:10] *** scrooge_mcduck has joined #angularjs
[20:10:30] *** FIFOd[a] has joined #angularjs
[20:10:39] *** bit_twit has joined #angularjs
[20:10:52] *** lite has quit IRC
[20:11:18] *** rileylark has quit IRC
[20:11:32] *** martianboy has quit IRC
[20:12:36] <shredjs> i already have data-src binded to something
[20:13:06] *** patrick99e99 has quit IRC
[20:13:31] *** rx_ has left #angularjs
[20:13:45] *** jmichaelward has joined #angularjs
[20:13:54] *** FIFOd[a] has quit IRC
[20:14:19] *** SahanH has quit IRC
[20:14:23] *** deanclkclk has joined #angularjs
[20:14:27] *** FIFOd[a] has joined #angularjs
[20:16:44] *** cornerma1 has joined #angularjs
[20:17:56] *** glassir has joined #angularjs
[20:18:12] <stormbytes> hey peeps
[20:18:28] *** jmichaelward has quit IRC
[20:18:58] <stormbytes> so.. is there some way of error trapping a select list from assigning a null value to a model?
[20:19:30] *** Lewix has joined #angularjs
[20:19:30] <stormbytes> tried binding the select to a function, that didn't go well (ngModel:nonassign error)
[20:19:46] *** darrin has joined #angularjs
[20:20:27] *** cornerman has quit IRC
[20:20:29] *** cornerma1 is now known as cornerman
[20:20:39] *** corehook has quit IRC
[20:21:04] <shredjs> btw my problem is bcause i was using data-src"holder.js/35x35" as soon as i removed it worked but i dont have the specific canvas... no biggy
[20:21:37] *** wex13r has quit IRC
[20:21:48] *** jonr22 has joined #angularjs
[20:21:53] *** JERE has joined #angularjs
[20:23:07] *** whitebook has quit IRC
[20:23:21] *** uru is now known as uru|away
[20:24:01] *** Rafzzz has quit IRC
[20:24:24] *** junmin has quit IRC
[20:24:28] *** Rafzzz has joined #angularjs
[20:24:56] <Lewix> what's the best approach going forward with angular 1.3.x considering that angular.js 2.0 is going to be released a year from now. Would it just be mission impossible to do an upgrade or is there ways now to arrange the code to make the transition smoother
[20:26:33] *** rbs has joined #angularjs
[20:26:37] *** jonr22 has quit IRC
[20:27:45] <seriema> Lewix: I'm releasing an article on that this week =) but basically, keep upgrading with every release of 1.x you can
[20:28:21] *** mennea has quit IRC
[20:28:33] *** mtsr has quit IRC
[20:28:47] <seriema> Lewix: there's other stuff too ofc, like using controller as instead of $scope. etc
[20:28:59] *** mennea has joined #angularjs
[20:29:07] <Lewix> seriema there is already a nice article on the topic out there but to be honest it's not as detailed as I would have hoped. I'm starting to think that the transition will be hard no matter what and it might be energy wasted trying to make it compatible
[20:29:18] <Lewix> seriema: you mean this
[20:29:26] *** Sky[x] has quit IRC
[20:29:37] <seriema> Lewix: what article? I've seen a few.
[20:29:54] *** shpoont has joined #angularjs
[20:29:56] *** DrAwesomeCloaws2 has joined #angularjs
[20:30:08] <seriema> Lewix: but basically, 2.0 is not done yet. it could change drastically at any moment. so there can't be anything detailed, but my article details a bit.
[20:30:12] *** mattattaque has quit IRC
[20:32:00] *** jMyles has quit IRC
[20:32:35] <Lewix> seriema: http://rangle.io/blog/articles/how-to-embrace-angular-2-today-with-future-friendly-angular-1.3/?utm_source=javascriptweekly&utm_medium=email
[20:32:45] *** Geertje123_ has joined #angularjs
[20:33:11] *** monir has joined #angularjs
[20:34:06] <seriema> Lewix: thx. but you're right, it doesn't give much details. mine gives a bit more :P
[20:34:14] *** StryKaizer has joined #angularjs
[20:34:20] <DrAwesomeCloaws2> Hey folks. Noticing a small bug, and curious if anyone can comment on how i might proceed. On my form I've got a model with a property (toNotify) which holds an array of objects. The view uses ng-repeat to display all the objects in toNotify. You can see this at: http://arcane-tundra-1855.herokuapp.com/#/create under "Who should be notified?" The bug can be seen by doing the following: Add 2 more entries (click + button, creating to
[20:34:20] <DrAwesomeCloaws2> tal of 3). Then click the submit (Create Notification button) to trigger the validation. It should mark all 3 entries as invalid. Now delete the 2nd entry by pressing the X. When the entry below it (toNotify[2]) moves up (and becomes toNotify[1]) it seems angular gets confused and the validation goes all wacky
[20:34:23] *** Star-Lord has quit IRC
[20:34:56] <Lewix> seriema: i think that's a mistake not to make it backward compatible
[20:35:15] *** moafoca has quit IRC
[20:35:28] <seriema> Lewix: ehm, it's a MAJOR version. It's not meant to be backward compatible. The whole point is to fix mistakes in the API.
[20:36:16] <Lewix> seriema: well javascript has a lot of wholes..we could probably also release a MAJOR version but they don't do that for several reasons
[20:36:22] <Lewix> holes* =)
[20:36:33] <Lewix> seriema: it's inevitable to have mistakes in the APO
[20:36:38] <Lewix> API* =)
[20:36:56] *** derer has joined #angularjs
[20:37:06] <seriema> Lewix: there's a huge difference. if we would bump it in the browsers suddenly then yeah the whole internet would break. but nothing breaks from a framework unless YOU manually update the framework version.
[20:37:33] <seriema> if we could break javascript in a safe way, we probably should
[20:37:33] *** shpoont has quit IRC
[20:38:33] <seriema> so you'll be able to use 1.x forever. no one's forcing you to adopt 2.0.
[20:38:52] * seriema is hungry
[20:38:54] <seriema> dinner time!
[20:39:02] *** Geertje123_ has quit IRC
[20:39:17] *** Geertje123_ has joined #angularjs
[20:40:02] *** adpirz has quit IRC
[20:40:19] <Lewix> i disagree
[20:41:26] *** Rafzzz has quit IRC
[20:41:33] *** gazbond has joined #angularjs
[20:42:23] *** s00pcan has quit IRC
[20:42:41] <Lewix> seriema: no jqlite right? so pure javascript is favored instead
[20:43:05] *** Rafzzz has joined #angularjs
[20:43:06] *** DrAwesomeCloaws2 has quit IRC
[20:43:32] *** DrAwesomeClaws has joined #angularjs
[20:44:23] *** gazbond has quit IRC
[20:45:03] <DrAwesomeClaws> keeping everything backward compatible would be a bad choice i think. Upgrading a major version, while sometimes a lot of work, is a pretty trivial process with decent test coverage
[20:45:35] *** s00pcan has joined #angularjs
[20:45:47] *** mattattaque has joined #angularjs
[20:45:58] <snurfery> sup yall
[20:46:01] <snurfery> happy sundeezy
[20:46:20] *** plushy has quit IRC
[20:46:25] *** Cache_Money has joined #angularjs
[20:48:09] *** il is now known as rivel
[20:48:24] *** rivel is now known as il
[20:48:42] *** nemothekid has joined #angularjs
[20:49:10] *** dnewkerk has joined #angularjs
[20:49:12] <DrAwesomeClaws> now to decide if i just move on from this bug for now (not very ciritical) or try to replicate it in a simpler environment to see if it's my code or an angular bug
[20:49:15] *** godzaman has joined #angularjs
[20:49:33] <godzaman> Hi guys, let's say i have someMethod() declared in controller
[20:50:03] <godzaman> and i pass it to the custom directive <custom-directive on-change="someMethod()">
[20:50:05] *** kayloos has quit IRC
[20:50:28] <godzaman> how do i call (execute) that method from the link callback of mentioned directive?
[20:50:31] *** kalusn has joined #angularjs
[20:50:51] <Lewix> DrAwesomeClaws: are they gonna implement reactjs stuff
[20:51:47] *** mtsr has joined #angularjs
[20:52:00] <DrAwesomeClaws> Lewix, I dunno, i'm just speaking generally.
[20:52:04] *** Sky[x] has joined #angularjs
[20:52:17] *** TheAceOfHearts has joined #angularjs
[20:52:48] <DrAwesomeClaws> godzaman, https://docs.angularjs.org/guide/scope might help.
[20:53:11] *** zanea|away is now known as zanea
[20:53:13] <godzaman> i'm 12 months in development of one angular app
[20:53:24] <godzaman> and still can't figure out how to do it properly
[20:53:43] *** UXDork has joined #angularjs
[20:53:56] <UXDork> Offering a tip, using Change Tip, for help on this http://stackoverflow.com/questions/27082003/my-resource-query-is-returning-all-the-objects-when-i-have-parameters-for-just
[20:54:13] *** lemur has joined #angularjs
[20:54:14] <godzaman> i know i can use & in isolate scope definition
[20:54:36] <godzaman> but don't know how to call that method from the javascript code
[20:54:50] *** discgo has joined #angularjs
[20:54:52] *** kalusn has quit IRC
[20:55:19] *** mtsr has quit IRC
[20:55:34] *** Sky[x] has quit IRC
[20:55:36] <beckyconning_> is there a way to create a scope detached from rootscope or somehow prevent digest events from propagating up to the rootscope?
[20:56:14] *** zz_night-owl is now known as night-owl
[20:56:18] <DrAwesomeClaws> i'm relatively new to angular, but maybe your overall goal is misguided? Calling the controller's someMehthod() from the directive implies that the directive is only to be used in the context of that particular controller. Feels like coupling things that maybe shouldn't be coupled... but like i said, i'm still pretty new w/ angular
[20:57:51] *** lilbaby has quit IRC
[20:58:22] *** mennea has quit IRC
[20:58:46] *** tech2 has quit IRC
[20:59:00] *** mennea has joined #angularjs
[20:59:10] *** amphetamines has joined #angularjs
[20:59:31] <godzaman> DrAwesomeClaws i'm trying to pass method to custom directive as you would do with any other ng directive like ngChange ngKeyDown ngClick etc.
[20:59:43] <godzaman> so it's an event callback
[20:59:52] *** djam90 has joined #angularjs
[20:59:56] *** kalusn has joined #angularjs
[21:00:33] <BahamutWC> beckyconning_: in an event listener on scope, you can do $scope.$on('eventName', function (e) { e.stopPropagation(); });
[21:01:03] <beckyconning_> BahamutWC: what is the eventName of the digest event? is it '$digest()'
[21:01:10] <snurfery> godzaman: you can use $parse(attrs.onChange)
[21:01:29] <godzaman> i'm trying to do that
[21:01:31] <beckyconning_> godzaman: scope: { changeHandler: "&onChange" }, link: function(scope) { scope.changeHandler()(); }
[21:01:35] *** Aerospark has joined #angularjs
[21:01:39] <BahamutWC> beckyconning_: I don't think $digest fires an event
[21:01:48] *** rho has joined #angularjs
[21:02:00] <BahamutWC> if you want to do a $digest from a particular $scope and below, just do $scope.$digest
[21:02:04] <BahamutWC> $scope.$digest()*
[21:02:10] <godzaman> snurfery and how do i execute it afterwards
[21:02:24] <godzaman> $parse(attrs.onChange)(scope)?
[21:02:28] <beckyconning_> BahamutWC: and that definitely doesn't send an event upwards?
[21:02:39] *** threesixes has joined #angularjs
[21:02:46] <beckyconning_> godzaman: i gave u the answer
[21:02:57] *** opiates has quit IRC
[21:03:00] <BahamutWC> beckyconning_: well, $digest doesn't fire an event
[21:03:03] <snurfery> godzaman: yup
[21:03:10] <BahamutWC> $scope.$digest() starts the $digest cycle from that $scope and below
[21:03:15] *** greengriminal has joined #angularjs
[21:03:19] <snurfery> that's how I understand it at least, can't say I've done it in my own code
[21:03:30] <BahamutWC> $scope.$apply() is equivalent to $rootScope.$digest() except for first evaluating the callback passed into $apply
[21:03:37] <godzaman> beckyconning_ i'm trying that but for some reason it doesnt work
[21:03:46] <BahamutWC> i.e. $scope.$apply(foo) is equivalent to foo(); $rootScope.$digest();
[21:04:11] <beckyconning_> godzaman: post code?
[21:04:22] *** Juanchito has joined #angularjs
[21:04:33] <BahamutWC> once you are in a $digest though you cannot stop it until it is complete
[21:05:23] <snurfery> can't stop won't stop
[21:05:41] *** a3gis has quit IRC
[21:05:53] *** Aerospark has quit IRC
[21:06:00] *** mtsr has joined #angularjs
[21:06:07] *** theBorgu has joined #angularjs
[21:06:12] *** a3gis has joined #angularjs
[21:06:34] <beckyconning_> BahamutWC: yeah i know thanks though. i was just confused by this bit of the docs ("The parent scope will propagate the $digest() event. The scope can be removed from the scope hierarchy using $destroy().") today whilst debugging a weird testing issue
[21:06:34] *** monir has quit IRC
[21:06:49] <beckyconning_> https://docs.angularjs.org/api/ng/type/$rootScope.Scope
[21:07:10] *** djam90 has quit IRC
[21:07:22] <godzaman> beckyconning_ i fill stupid, it works all along
[21:07:26] <godzaman> feel
[21:07:28] *** StryKaizer has quit IRC
[21:07:32] *** Fishy has joined #angularjs
[21:07:48] *** a3gis has quit IRC
[21:08:13] <beckyconning_> yus it works cos directives and stuff. do not feel stupid though. states and bindings between them is the most confusing thing thats happened to anyone ever.
[21:08:18] *** recidive has quit IRC
[21:09:31] *** elrabin has quit IRC
[21:09:41] *** IvailoStoianov_ has joined #angularjs
[21:09:47] *** jMyles has joined #angularjs
[21:11:23] *** IvailoStoianov has quit IRC
[21:11:30] *** IvailoStoianov_ is now known as IvailoStoianov
[21:11:49] *** godzaman has quit IRC
[21:12:08] *** evotuned has quit IRC
[21:13:04] *** IvailoStoianov has quit IRC
[21:13:13] *** busticated has joined #angularjs
[21:13:33] *** peterp has joined #angularjs
[21:14:08] *** oddalot1 has joined #angularjs
[21:14:34] <peterp> Hi all, I'm using two different ng-repeats on the same source of data. On each ng-repeat there is a click handler that adds an active class to the clicked element. I'm controlling this with $index
[21:14:51] <peterp> The issue is that $index on one list, is different than $index on the other list of ng-repeat. Anyone have any suggestions on how I can *sync* the two values up?
[21:15:05] <snurfery> $parent.$index
[21:15:22] <snurfery> ng-repeat creates a new scope, so that might work
[21:15:50] <peterp> Oh that is interesting. Let me try that. Thanks snurfery!
[21:15:52] <snurfery> no guarantees it'll work ;)
[21:15:54] <snurfery> yw!
[21:16:30] *** lilbaby has joined #angularjs
[21:16:32] *** jotbe has joined #angularjs
[21:17:49] *** oddalot has quit IRC
[21:17:50] *** tech2 has joined #angularjs
[21:17:52] <Lewix> beckyconning_: how did godzaman solved it/?
[21:18:07] <beckyconning_> Lewix: godzaman: scope: { changeHandler: "&onChange" }, link: function(scope) { scope.changeHandler()(); }
[21:18:39] <Lewix> that was easy apparently..what's all that talk about registering event listener, beckyconning_
[21:18:46] <Lewix> what was*
[21:18:53] *** rho has quit IRC
[21:19:08] <Lewix> beckyconning_: (I'm still learning so I'm a tad curious)
[21:19:15] <beckyconning_> just trying to get past a stupid ui-router issue with testing i'm trying a few workarounds instead of trying to work it out
[21:19:26] *** oddalot1 is now known as oddalot
[21:20:04] *** darrin has quit IRC
[21:20:35] <DrAwesomeClaws> https://www.facebook.com/video.php?v=891014474242678&set=vb.126630270681106&type=2&theater
[21:20:54] *** JohnBat26 has quit IRC
[21:21:48] <snurfery> ^^what's that?
[21:22:04] <snurfery> I don't wanna see someone beheaded right now, anonymous video poster
[21:22:07] <snurfery> haha
[21:22:21] <beckyconning_> john carmack's tennis for apple ii
[21:22:37] <Lewix> I don't kown, I definitely dont wanna click on it =)
[21:22:44] <Lewix> s/kown/know
[21:23:37] *** stormbytes has quit IRC
[21:23:45] *** dreambox has quit IRC
[21:23:48] *** elrabin has joined #angularjs
[21:24:05] *** foofoobar has quit IRC
[21:24:30] *** Johnny13371337 has quit IRC
[21:24:40] *** dannyc has joined #angularjs
[21:24:44] *** busticated has quit IRC
[21:24:49] *** mennea has quit IRC
[21:25:10] *** foofoobar has joined #angularjs
[21:25:24] *** mennea has joined #angularjs
[21:25:55] *** foofoobar has quit IRC
[21:26:53] *** gazbond has joined #angularjs
[21:26:56] *** blackkbot has quit IRC
[21:28:10] *** gazbond has quit IRC
[21:28:15] *** btc_panhandler has joined #angularjs
[21:29:18] *** dannyc has quit IRC
[21:29:24] *** rea has joined #angularjs
[21:29:40] <UXDork> Offering a $2 tip to solve this using Change Tip http://stackoverflow.com/questions/27082003/my-resource-query-is-returning-all-the-objects-when-i-have-parameters-for-just
[21:29:50] *** jlmitch5dev has quit IRC
[21:29:52] <UXDork> Just updated it with further debugging. Getting really close to a solution.
[21:30:12] *** jgladwill has joined #angularjs
[21:30:25] *** efco has joined #angularjs
[21:30:40] <snurfery> I don't know jack about $resource
[21:30:43] <snurfery> but that looks wrong
[21:30:45] *** efco has left #angularjs
[21:31:00] <snurfery> I'd expect to see GET /admin/company/5470e913d20b3dab7c13218b
[21:31:39] <UXDork> You're right
[21:31:47] <UXDork> well maybe
[21:32:29] <UXDork> If I go to 'Network' and then 'Headers' under 'Query String Operators' it says the id
[21:32:35] <BahamutWC> I think that's the right way to use $resource
[21:32:43] <BahamutWC> it's probably your Node server that's wrong here
[21:33:07] <UXDork> Srsly?
[21:33:41] <BahamutWC> I could be wrong though, need to look up $resource again
[21:34:22] <UXDork> If I comment out the route for getting /admin/company/ (without the companyId) it says GET /admin/company?_id=5470e913d20b3dab7c13218b 404
[21:34:31] <BahamutWC> what happens if you remove the _ from _id?
[21:34:37] *** josh-k_ has joined #angularjs
[21:34:39] <BahamutWC> in your $resource definition as well
[21:34:54] <UXDork> lemme check
[21:35:11] *** Grokling_ has joined #angularjs
[21:35:47] *** rileylark has joined #angularjs
[21:35:48] <UXDork> GET http://localhost:3000/admin/company?_id=5470e913d20b3dab7c13218b 404 (Not Found)
[21:36:00] <UXDork> that's when I remove the _ from id
[21:36:24] <UXDork> in the services
[21:36:25] *** codeman has quit IRC
[21:36:26] *** lw has quit IRC
[21:37:02] <BahamutWC> of
[21:37:04] <BahamutWC> oh*
[21:37:09] <UXDork> Good guess
[21:37:12] <BahamutWC> it's Companies.get({ userId: 'foo' })
[21:37:27] *** lemur has quit IRC
[21:37:30] <peterp> snurfery, no luck. Any idea how I could sync two ng-repeats together? Maybe I'm looking for the wrong thing inside $parent
[21:37:35] <BahamutWC> the @_id binding is to the id you get back from the DB
[21:37:54] <BahamutWC> or rather, the server
[21:37:54] <snurfery> try $parent.$parent.$index ;) this is getting more hacky
[21:37:58] <peterp> So the issue is that ng-repeat does not list the items in the same order. If I could force the order, this would be much easier
[21:38:00] <snurfery> nah I'm not sure
[21:38:03] *** lemur has joined #angularjs
[21:38:24] *** AciD` has quit IRC
[21:38:24] <UXDork> Bahamut I'm confused
[21:38:29] <peterp> $index.$parent returns the index of the scope - so it's always 0, 1 in my case
[21:39:04] <UXDork> This is how to get one article using the mean stack app.route('/articles/:articleId') .get(articles.show)
[21:39:09] *** dannyc has joined #angularjs
[21:39:17] <UXDork> it uses app.route
[21:39:33] <BahamutWC> UXDork: is that on the Node part?
[21:39:45] <UXDork> it's in a services file
[21:39:51] <BahamutWC> I'm talking purely angular atm - if you do Companies.get({ userId: 'foo' }), it should work
[21:39:55] *** Oddman has quit IRC
[21:39:58] <BahamutWC> instead of Companies.get({ _id: 'foo' })
[21:40:00] <UXDork> idk what part of the stack handles services tbh
[21:40:16] *** jonr22 has joined #angularjs
[21:40:27] *** Oddman has joined #angularjs
[21:40:28] <UXDork> Really? So try a different query?
[21:40:29] *** dweave has joined #angularjs
[21:40:43] *** Sky[x] has joined #angularjs
[21:40:51] <UXDork> the route's not working I think
[21:41:02] *** AciD` has joined #angularjs
[21:41:20] <UXDork> it works with update & delete but not get
[21:42:12] *** Oxynum has quit IRC
[21:42:18] *** mven has quit IRC
[21:42:33] <UXDork> Does this do anything? app.param('articleId', articles.article);
[21:42:40] <UXDork> @BahamutWC
[21:42:47] <UXDork> BahamutWC
[21:42:49] *** rburns has joined #angularjs
[21:43:20] <wafflej0ck_> peterp: do you have a set number of elements in each child array?
[21:43:46] *** Oxynum has joined #angularjs
[21:44:06] <peterp> wafflej0ck_ - $scope.availableItems is the list I pull from a DB. $scope.filteredItems is the array that gets created when I filter stuff out
[21:44:08] *** codeman has joined #angularjs
[21:44:13] *** mlpug has quit IRC
[21:44:36] *** btc_panhandler has quit IRC
[21:44:38] *** Oddman has quit IRC
[21:44:45] <peterp> I have 2 ng-repeats because one of them displays SVG circles on a map. There is also a list-view
[21:45:05] *** dc_ has joined #angularjs
[21:45:26] <peterp> so clicking on a circle on the map displays the right detail. It's just when I open up list view, the $index's do not sync up, and the wrong *active class* is added to the selected list view element
[21:45:35] *** codeman has quit IRC
[21:46:25] <wafflej0ck_> peterp: can you show a little gist with the two ng-repeat parts and where you're trying to set the active class
[21:46:55] *** codeman has joined #angularjs
[21:47:04] <wafflej0ck_> peterp: typically I would do something like ng-class="{'active':curItem==selectedItem}"
[21:47:15] <wafflej0ck_> then just update selectedItem with the click event
[21:47:16] *** mven has joined #angularjs
[21:47:18] <peterp> Sure, I'll come up with something
[21:47:23] <wafflej0ck_> where curItem is the iterant but would be good to see
[21:47:31] <peterp> So that's what I did with currentIndex = selectedItem, but the issue is that $index is different
[21:47:40] *** bmac has joined #angularjs
[21:47:42] <wafflej0ck_> why use the index though?
[21:47:58] <wafflej0ck_> seems like an easy to mess up thing better to compare the elements or their ids or something
[21:48:39] <BahamutWC> avoid $index as much as possible when doing sorting
[21:48:43] <wafflej0ck_> yeah
[21:48:47] *** NoNMaDDeN has quit IRC
[21:48:49] <peterp> Oh ok. So what is selectedItem equal to? This?
[21:48:53] <BahamutWC> using better to use a value inherent to the object itself
[21:48:57] *** larsgk has quit IRC
[21:49:00] <peterp> That is exactly what my problem is wafflej0ck_ and BahamutWC
[21:49:02] <BahamutWC> better to use*
[21:49:03] <wafflej0ck_> peterp: ng-click="selectedItem = curItem"
[21:49:14] *** disorder20 has quit IRC
[21:49:16] *** codeman has quit IRC
[21:49:26] <peterp> and curItem is the current item you are clicking on?
[21:49:29] <peterp> Do I define curItem somewhere?
[21:49:33] *** disorder20 has joined #angularjs
[21:49:45] <wafflej0ck_> peterp: curItem would be the iterant in the ng-repeat="curItem in items"
[21:49:51] <peterp> Oh ok
[21:49:53] *** dc_ has quit IRC
[21:49:54] *** prbc has quit IRC
[21:50:08] <wafflej0ck_> peterp: if you aren't literally iterating over the same objects in both places just do the ng-class by comparing the ids of the object
[21:50:33] <wafflej0ck_> ng-class="{'active':curItem.id==selectedItem.id}"
[21:50:34] *** codeman has joined #angularjs
[21:50:41] <peterp> wafflej0ck_ I had no idea you could use it that way. That is awesome. I'm going to give this a shot!
[21:50:52] <wafflej0ck_> cool good luck
[21:51:03] <peterp> I have to run out of the house for a bit, but excited to give it a go. Thanks again!
[21:51:09] <wafflej0ck_> np
[21:52:03] *** codeman has quit IRC
[21:52:15] *** prbc has joined #angularjs
[21:52:41] <Grokling> Chained promises in ui-router resolve. What's the best way to return the results of each promise? Push them into an object, and return that?
[21:53:01] <wafflej0ck_> Grokling: sounds reasonable
[21:53:11] <Grokling> Or is there a way to feed the result of one resolve into another?
[21:53:30] *** codeman has joined #angularjs
[21:54:21] *** macobo has quit IRC
[21:54:49] *** lite_ has joined #angularjs
[21:55:01] *** mennea has quit IRC
[21:55:34] *** dejanr has quit IRC
[21:55:38] *** NoNMaDDeN has joined #angularjs
[21:55:40] *** mennea has joined #angularjs
[21:55:56] *** Oddman has joined #angularjs
[21:56:42] *** prbc has quit IRC
[21:56:50] *** amphetamines is now known as opiates
[21:56:55] *** dannyc_ has joined #angularjs
[21:57:50] *** dannyc has quit IRC
[21:58:14] *** TheAceOfHearts has quit IRC
[21:58:16] *** pretzel80 has quit IRC
[21:58:44] *** _jotbe has joined #angularjs
[21:59:54] *** lite_ has quit IRC
[22:02:12] *** jotbe has quit IRC
[22:02:15] *** Aerospark has joined #angularjs
[22:02:32] *** rea has quit IRC
[22:02:34] *** foofoobar has joined #angularjs
[22:02:42] *** D-Boy has quit IRC
[22:02:48] *** D-Boy has joined #angularjs
[22:03:29] *** rburns has quit IRC
[22:03:58] *** monir has joined #angularjs
[22:04:22] *** Rafzzz has quit IRC
[22:05:01] *** one0one has joined #angularjs
[22:05:43] *** ron1 has joined #angularjs
[22:05:44] *** peterp has quit IRC
[22:06:08] *** Expi1 has joined #angularjs
[22:06:09] *** jimmyy has joined #angularjs
[22:06:23] *** pen has quit IRC
[22:06:40] *** Lewix has quit IRC
[22:06:48] *** Aerospark has quit IRC
[22:06:52] *** TweedleDumb has joined #angularjs
[22:06:55] *** jonr22 has quit IRC
[22:06:57] *** pen has joined #angularjs
[22:07:04] *** Expi1 has quit IRC
[22:07:21] *** josh-k_ has quit IRC
[22:09:12] *** patrick99e99 has joined #angularjs
[22:09:13] *** seriema_ has joined #angularjs
[22:09:37] *** jotbe has joined #angularjs
[22:10:15] *** seriema has quit IRC
[22:10:44] *** josh-k has joined #angularjs
[22:10:51] *** one0one has quit IRC
[22:11:07] *** jonr22 has joined #angularjs
[22:11:26] *** DrAwesomeClaws has quit IRC
[22:11:27] *** pen has quit IRC
[22:11:54] *** Grokling_ has quit IRC
[22:11:56] *** DrAwesomeClaws has joined #angularjs
[22:12:11] *** soee_ has joined #angularjs
[22:12:34] *** NoNMaDDeN has quit IRC
[22:12:39] *** _jotbe has quit IRC
[22:13:04] *** nemothekid has quit IRC
[22:13:14] *** one0one has joined #angularjs
[22:13:21] *** jlmitch5dev has joined #angularjs
[22:13:42] *** patrick99e99 has quit IRC
[22:14:07] *** rileylark has quit IRC
[22:14:23] *** Joe_knock has joined #angularjs
[22:14:52] *** davemerwin has joined #angularjs
[22:15:25] *** soee has quit IRC
[22:15:27] *** edy has quit IRC
[22:15:39] *** jonr22 has quit IRC
[22:15:54] *** recidive has joined #angularjs
[22:16:06] *** dannyc_ has quit IRC
[22:16:18] *** NoNMaDDeN has joined #angularjs
[22:16:21] *** edy has joined #angularjs
[22:18:08] *** ededagic has quit IRC
[22:18:12] *** josh-k has quit IRC
[22:18:16] *** Una has joined #angularjs
[22:18:32] <TweedleDumb> Anyone use UI-Select and know how to make it a required field on a form?
[22:18:41] *** Joe_knock has left #angularjs
[22:18:42] <beckyconning_> when testing an angularjs controller that uses the $rootScope is it best to create a new child scope and apply that to the controller as a local or to use the actual $rootScope?
[22:19:00] *** jlmitch5dev has quit IRC
[22:19:03] <beckyconning_> like as a local
[22:19:37] *** deanclkclk has quit IRC
[22:19:45] *** despai has quit IRC
[22:20:54] *** jlmitch5dev has joined #angularjs
[22:21:22] *** edy has quit IRC
[22:21:30] *** cigol_ has joined #angularjs
[22:22:24] *** josh-k has joined #angularjs
[22:23:57] *** josh-k has quit IRC
[22:24:49] *** josh-k has joined #angularjs
[22:24:52] *** deanclkclk has joined #angularjs
[22:25:02] *** mennea has quit IRC
[22:25:02] *** DuelShark has quit IRC
[22:25:13] *** \du has joined #angularjs
[22:25:24] *** night-owl is now known as zz_night-owl
[22:25:35] *** dannyc has joined #angularjs
[22:25:36] *** despai has joined #angularjs
[22:25:39] *** mennea has joined #angularjs
[22:25:42] *** tech2 has quit IRC
[22:26:17] *** jotbe has quit IRC
[22:26:21] *** joshontheweb has joined #angularjs
[22:27:54] *** whitebook has joined #angularjs
[22:28:36] *** alinou has joined #angularjs
[22:28:51] *** adpirz has joined #angularjs
[22:29:02] *** jonr22 has joined #angularjs
[22:29:02] *** josh-k has quit IRC
[22:30:20] *** punch has joined #angularjs
[22:32:45] *** tonyfrazier has joined #angularjs
[22:32:46] *** laurensclaessen has joined #angularjs
[22:33:03] *** jimmyy has quit IRC
[22:33:09] *** mven has quit IRC
[22:33:34] *** adpirz has quit IRC
[22:33:35] *** Lewix has joined #angularjs
[22:33:35] *** Lewix has joined #angularjs
[22:34:57] *** punch has quit IRC
[22:35:00] *** Sky[x] has quit IRC
[22:35:28] *** UXDork has quit IRC
[22:36:58] *** Sky[x] has joined #angularjs
[22:37:04] *** fourq has quit IRC
[22:38:00] *** monir has quit IRC
[22:38:48] *** tech2 has joined #angularjs
[22:40:03] *** squeakytoy2 has quit IRC
[22:41:02] *** Sna4x8 has quit IRC
[22:41:43] *** Sna4x8 has joined #angularjs
[22:42:09] *** Tyler_ has joined #angularjs
[22:42:44] *** devhoag has joined #angularjs
[22:42:51] <Tyler_> Offering $2 tip for anyone (using Change Tip) who can solve this http://stackoverflow.com/questions/27082003/my-resource-query-is-returning-all-the-objects-when-i-have-parameters-for-just
[22:42:57] <Tyler_> I know the problem is with my route
[22:43:43] <davek> My god, ui-router, well done. Drop-in upgrade where the breaking changes FIXED things.
[22:45:36] *** freeRadical has joined #angularjs
[22:45:51] *** Sky[x] has quit IRC
[22:46:20] *** ron1 has quit IRC
[22:46:22] <freeRadical> nuget package doesn't seem to be installing templates
[22:46:35] <freeRadical> is that expected behavior?
[22:46:44] *** epantzar has joined #angularjs
[22:47:36] <Grokling> davek: ctanga has been working hard on it. Give him the props when you see him next.
[22:48:39] <freeRadical> the nuget package?
[22:48:52] *** sebhoss has joined #angularjs
[22:49:11] *** charuru has joined #angularjs
[22:49:11] *** nycdevgirl has joined #angularjs
[22:50:09] *** gazbond has joined #angularjs
[22:50:10] <Grokling> nuget is a microsofty boweresque thing?
[22:50:19] <freeRadical> yeah
[22:50:34] <freeRadical> haha
[22:50:36] *** ron1 has joined #angularjs
[22:50:45] *** nycdevgirl has quit IRC
[22:51:10] <freeRadical> just curious if the templates should be installed by default
[22:51:24] *** ehalas has quit IRC
[22:51:47] <freeRadical> I can look into it and commit a fix assuming I'm not missing something on my end
[22:51:55] <Grokling> No idea. I'm way too busy not having forced restarts to use microsoft..
[22:52:26] <freeRadical> heh you know you can stop that from happening with a registry setting
[22:52:36] *** pen has joined #angularjs
[22:52:50] *** Sky[x] has joined #angularjs
[22:52:54] <Grokling> You can also fix it with a bootloader. Grub does a nice job ;-)
[22:52:57] *** zz_night-owl is now known as night-owl
[22:53:03] <freeRadical> but yeah my client asked for asp.net mvc so Microsoft it is for this project
[22:53:06] *** Aerospark has joined #angularjs
[22:53:13] *** niop has joined #angularjs
[22:53:36] <freeRadical> alright well I'll look into it was just wondering what the expected behavior is before I go assuming something's wrong
[22:53:40] <Grokling> Sorry about that. Still, without the downs, the ups would seem less.
[22:54:25] <freeRadical> they all have their ups and downs
[22:55:04] *** mennea has quit IRC
[22:55:10] *** dweave has quit IRC
[22:55:20] *** recidive has quit IRC
[22:55:41] *** mennea has joined #angularjs
[22:56:00] *** soee_ is now known as soee
[22:56:44] *** hmsimha_ has quit IRC
[22:57:58] *** robksawyer has joined #angularjs
[22:58:40] *** ngbot has joined #angularjs
[22:58:41] <ngbot> [angular.js] petebacondarwin pushed 1 new commit to master: http://git.io/pnjRsw
[22:58:41] <ngbot> angular.js/master 8ee8ffe Lucas Galfaso: fix(linky): encode double quotes when serializing email addresses...
[22:58:41] *** ngbot has left #angularjs
[22:58:45] *** mennea has quit IRC
[22:59:14] *** mennea has joined #angularjs
[22:59:14] *** ron1 has quit IRC
[22:59:18] *** patrickarlt has quit IRC
[22:59:36] *** jimvideo has joined #angularjs
[22:59:39] *** bit_twit has quit IRC
[23:00:08] *** hmsimha_ has joined #angularjs
[23:00:16] *** jmichaelward has joined #angularjs
[23:00:30] <Grokling> wafflej0ck_: Any ideas on ui-router resolves and inheritance? I have nested states, on one of my outer states, I test for authorisation. I had expected that a rejected promise there would prevent the inner states from being reached. But 50% of the time their code tries to run - almost like the resolves aren't chaining, and it's down to latency as to whether it works or not. Any clues?
[23:01:02] *** dannyc has quit IRC
[23:01:32] *** DatAceHoleTweedl has joined #angularjs
[23:01:34] *** dannyc has joined #angularjs
[23:01:37] *** kalusn has quit IRC
[23:02:15] <DatAceHoleTweedl> if I want to share state across my application I can do that with a factory injected into the angular.module('myApp', ['myFactory']); right?
[23:02:36] <DatAceHoleTweedl> then from Ctrl1 and Ctrl2 also injected, if I do myFactory.saveInfo or .getInfo it should share the info?
[23:03:07] <Grokling> DatAceHoleTweedl: Not quite.
[23:03:30] *** tech2 has quit IRC
[23:03:30] <Grokling> Factories are part of modules. You can certainly inject modules into other modules.
[23:03:31] <DatAceHoleTweedl> oh..
[23:03:32] *** Aerospark has quit IRC
[23:03:46] <Grokling> You inject factories/services etc into your controllers.
[23:03:53] <DatAceHoleTweedl> right so let me get this traight
[23:03:57] *** ron1 has joined #angularjs
[23:04:04] *** lilbaby has quit IRC
[23:04:28] *** whitebook has quit IRC
[23:04:53] *** rcdev has joined #angularjs
[23:05:00] *** jmichaelward has quit IRC
[23:05:06] <DatAceHoleTweedl> if I have my app.js module declaration of angular.module('myApp', [myFactory]) then in my ctrl1 I inject 'myFactory' and form ctrl2 I also inject myFactory are they not sharing the same info?
[23:05:39] *** mennea has quit IRC
[23:05:40] *** epantzar has quit IRC
[23:05:52] *** rcdev has quit IRC
[23:05:53] *** dannyc has quit IRC
[23:06:04] <DatAceHoleTweedl> the only way I've used Factories thus far is to share info that will be used all over my sight, for example a list of 50 states.. I call my GeneralRepo.getStates();
[23:06:12] *** dejanr has joined #angularjs
[23:06:20] *** Nannet has joined #angularjs
[23:06:21] <Grokling> angular.module('myApp', []).factory('myFactory', function($http, $q ...) {})
[23:06:24] *** Nannet has quit IRC
[23:06:42] *** Nannet has joined #angularjs
[23:06:44] <DatAceHoleTweedl> question still remains, if I used myFactory from 2 places I can pass the same info?
[23:06:46] *** Nannet has quit IRC
[23:06:47] *** allsystemsarego has quit IRC
[23:06:53] <DatAceHoleTweedl> want some code?
[23:06:58] *** shredjs has quit IRC
[23:07:09] *** Nannet has joined #angularjs
[23:07:32] *** Nannet has joined #angularjs
[23:07:33] *** mtsr has quit IRC
[23:07:36] *** Nannet has quit IRC
[23:07:43] <Grokling> myApp.controller('ThingController', function($scope, $stateParams, myFactory) { myFactory.doStuff();})
[23:07:51] <Grokling> There's the injection..
[23:07:52] *** mtsr has joined #angularjs
[23:07:57] *** Nannet has joined #angularjs
[23:08:30] <Grokling> Because the factory belongs to the module, it's a singleton. Where ever you inject it there after, it's the same instance.
[23:08:32] <DatAceHoleTweedl> i have no problem injecting or anything thats easy as piss
[23:08:39] <DatAceHoleTweedl> gotcha
[23:08:48] <DatAceHoleTweedl> so they should be perfect for state information
[23:08:51] <Grokling> Yeah, you're just confused about where!
[23:09:02] <DatAceHoleTweedl> no.. I'm just confused if I want a factory or a service
[23:09:06] *** recidive has joined #angularjs
[23:09:16] <DatAceHoleTweedl> they are both 'services' but I thought only a true service was a singleton
[23:09:20] <Grokling> Same animal, different colored fur.
[23:09:31] <DatAceHoleTweedl> gotcha
[23:09:52] *** ron1 has quit IRC
[23:10:17] *** dejanr has quit IRC
[23:10:58] *** gazbond has quit IRC
[23:11:06] <Grokling> Either will work. My differentiation (and there are many) is that if I have one 'thing' which has many methods (like the identity of the current user) then I use a service. If I can have many 'things' of the same type, then I use a factory. Many books in my library for example.
[23:12:55] <DatAceHoleTweedl> right now I'm re-developing our online application process and want to store the state of each page SOMEWHERE, I don't care where... just not in the database yet.. until all is finished and well.. right now in my "Factory" I call GeneralRepo I store a list of 50 states, the positions my company has positions for, and the shifts, but I wanted to make another factory that held their info
[23:12:55] <DatAceHoleTweedl> across different controllers
[23:13:02] *** ron1 has joined #angularjs
[23:13:28] *** reavengr1y has quit IRC
[23:13:31] <DatAceHoleTweedl> so for example if I have the PersonalInfo page, using the PersonalInfo Controller, and the WorkHistory page, using the WorkHistoryController, I wanted to share the info in a ApplicationData Factory
[23:14:15] <Grokling> Sounds fun. Doesn't sound stateless. No hot-linking I take it..
[23:14:18] *** Marble68 has quit IRC
[23:14:34] *** Aerospark has joined #angularjs
[23:14:35] <DatAceHoleTweedl> sorry whats a hot-link? not 100% up with the lingos
[23:14:51] *** gazbond has joined #angularjs
[23:15:38] *** mtsr has quit IRC
[23:15:45] <Grokling> http://mysite.com/application/jobs?id=123&person=2 could be a hot-link. So you can click it and reasonably expect everything to work.
[23:15:48] *** cacts has joined #angularjs
[23:15:56] <DatAceHoleTweedl> gotcha
[23:16:08] <DatAceHoleTweedl> i could pull the info like that via WebApi I suppose
[23:16:14] <Grokling> If you're relying on an accumulated history of states of other stuff, and you haven't been there yet, then you're sunk.
[23:16:32] *** plushy has joined #angularjs
[23:16:49] *** Oxynum has quit IRC
[23:16:53] <DatAceHoleTweedl> right, I guess I could just log all the info to the DB with the two-way binding, and make them login and upon login it pulls all their shit..
[23:17:04] <DatAceHoleTweedl> sounds easier..
[23:17:31] <Grokling> Or use a resolve to ensure that all the stuff you need for a state is sorted when you get there.
[23:17:40] *** tonyfrazier has quit IRC
[23:18:46] *** ron1 has quit IRC
[23:19:15] *** lite_ has joined #angularjs
[23:19:26] *** cacts|wtf has quit IRC
[23:20:02] *** TheAceOfHearts has joined #angularjs
[23:20:13] *** Johnny13371337 has joined #angularjs
[23:20:46] *** marcospgp has joined #angularjs
[23:21:17] *** peterp has joined #angularjs
[23:21:34] *** TweedleDumb has quit IRC
[23:21:59] *** peterp has quit IRC
[23:22:11] *** peterp has joined #angularjs
[23:22:54] *** ron1 has joined #angularjs
[23:23:03] *** marcospgp has quit IRC
[23:23:08] *** ron1 has quit IRC
[23:23:11] *** despai has quit IRC
[23:23:16] *** marcospgp has joined #angularjs
[23:23:23] *** punch has joined #angularjs
[23:23:56] *** lite_ has quit IRC
[23:24:00] *** foofoobar has quit IRC
[23:24:14] *** ngbot has joined #angularjs
[23:24:14] <ngbot> [angular.js] petebacondarwin pushed 1 new commit to v1.2.x: http://git.io/_44MsA
[23:24:14] <ngbot> angular.js/v1.2.x 929dd15 Lucas Galfaso: fix(linky): encode double quotes when serializing email addresses...
[23:24:14] *** ngbot has left #angularjs
[23:24:18] *** epantzar has joined #angularjs
[23:24:27] <marcospgp> hey guys!
[23:25:09] *** punch has quit IRC
[23:25:12] *** epantzar has quit IRC
[23:25:33] *** epantzar has joined #angularjs
[23:26:10] *** marcospgp has quit IRC
[23:26:19] *** dannyc has joined #angularjs
[23:26:23] *** marcospgp has joined #angularjs
[23:26:35] <freeRadical> @Grokling looks like templates aren't supposed to be included and I simply needed to make sure I only include the tpls file in my build config
[23:27:37] *** arpu has quit IRC
[23:27:51] <freeRadical> https://github.com/angular-ui/bootstrap/wiki/FAQ#im-using-modal-service-but-it-cant-find-its-templates
[23:28:43] *** ScioMin has quit IRC
[23:28:58] <davemerwin> I need to create a persistent timer service that will work regardless of browser state. I've been thinking websockets with a python timer library on the server. Any ideas on how this might work better?
[23:29:18] *** DrAwesomeClaws has quit IRC
[23:29:23] *** Sky[x] has quit IRC
[23:29:25] *** kirfu has quit IRC
[23:29:31] <freeRadical> I'll probably want to provide my own implementations in some cases, but I can just use a decorator for that
[23:29:33] <marcospgp> davemerwin persistent timer service?
[23:29:40] *** punch has joined #angularjs
[23:30:04] *** kirfu has joined #angularjs
[23:30:12] <davemerwin> I want users to set a timeer and then be able to close the browser and have the timer continue the countdown and then send a notice once it's done. My angular app would trigger teh service.
[23:30:16] *** prbc has joined #angularjs
[23:30:42] *** dannyc has quit IRC
[23:31:38] *** AciD` has quit IRC
[23:31:38] *** AciD` has joined #angularjs
[23:31:44] *** jimmyy has joined #angularjs
[23:33:40] *** Evanion has quit IRC
[23:34:36] *** cthrax has quit IRC
[23:34:45] *** jimmyy has quit IRC
[23:34:59] *** monir has joined #angularjs
[23:35:04] *** tech2 has joined #angularjs
[23:35:13] *** mkusher has joined #angularjs
[23:35:23] *** Sky[x] has joined #angularjs
[23:35:27] *** jimmyy has joined #angularjs
[23:35:35] *** tbo_ has quit IRC
[23:35:48] *** jimmyy has quit IRC
[23:36:17] *** Evanion has joined #angularjs
[23:36:32] *** jimmyy has joined #angularjs
[23:37:27] *** ngbot has joined #angularjs
[23:37:27] <ngbot> [angular.js] petebacondarwin pushed 1 new commit to master: http://git.io/wKUlhg
[23:37:27] <ngbot> angular.js/master bf6a79c Jason Bedard: perf(*): use Object.create instead of creating temporary constructors...
[23:37:27] *** ngbot has left #angularjs
[23:37:37] *** jimmyy has joined #angularjs
[23:38:02] *** deanclkclk_ has joined #angularjs
[23:38:55] *** toad-br has quit IRC
[23:39:53] <BahamutWC|Work> return extend(new (extend(function() {}, {prototype:parent}))(), extra); - there was code like that in angular?
[23:40:02] *** opiates has quit IRC
[23:40:09] *** scrooge_mcduck has quit IRC
[23:40:13] <marcospgp> davemerwin hey sorry im back
[23:40:23] <davemerwin> np
[23:40:30] <davemerwin> did you see my followup?
[23:40:39] *** prettymuchbryce has quit IRC
[23:40:54] <marcospgp> davemerwin hm you could save a timestamp of all the set timers
[23:40:56] *** Oxynum has joined #angularjs
[23:40:57] <Grokling> BahamutWC|Work: angular.extend?
[23:41:07] *** deanclkclk has quit IRC
[23:41:08] <marcospgp> and have a cron job comparing that timestamp to the current and sending alerts as needed
[23:41:17] <BahamutWC|Work> Grokling: looks like it - just got updated to use Object.create
[23:41:18] *** DrAwesomeClaws has joined #angularjs
[23:41:19] <marcospgp> of all the user alerts / timestamps
[23:41:23] <davemerwin> hmmmm.... that is a interesting idea
[23:41:49] *** c00ljs has quit IRC
[23:41:55] <marcospgp> and if the user goes to the website, send the timestamp from the backend and angular can show the timer again based on the timestamp and the target time
[23:42:43] <marcospgp> I'm not sure if there is a way to keep a backend alive and checking something after the browser has closed, at least not without using some weird technology
[23:42:50] <marcospgp> nothing like the usual app backend
[23:43:04] *** c00ljs has joined #angularjs
[23:43:06] <marcospgp> but hey ther is google :)
[23:43:10] <marcospgp> there*
[23:43:20] *** opiates has joined #angularjs
[23:43:46] *** uru|away is now known as uru
[23:43:51] *** gazbond has quit IRC
[23:44:25] *** tschundeee has quit IRC
[23:44:30] <davemerwin> lol. Yeah, that's what I'm trying to see. But that is beyond the topic here so I'll keep researching.
[23:44:42] *** scrooge_mcduck has joined #angularjs
[23:45:32] *** DrAwesomeClaws has quit IRC
[23:45:41] *** soren_engel has joined #angularjs
[23:46:00] *** Evanion has quit IRC
[23:46:21] *** Joseph_Silber has quit IRC
[23:46:48] <marcospgp> davemerwin good luck :)
[23:47:08] <marcospgp> and don't forget to share the final work with us here :)
[23:47:22] *** Nijikokun has joined #angularjs
[23:48:38] *** Nijikokun has joined #angularjs
[23:48:52] *** adpirz has joined #angularjs
[23:49:20] *** Nijikokun has joined #angularjs
[23:51:27] *** bmac has quit IRC
[23:51:50] *** BillCriswell has joined #angularjs
[23:53:05] *** bmac has joined #angularjs
[23:53:43] *** Oxynum has quit IRC
[23:54:07] *** dweave has joined #angularjs
[23:54:39] *** tech2 has quit IRC
[23:54:42] *** soren_engel has quit IRC
[23:54:49] *** soren_engel has joined #angularjs
[23:55:17] *** Geertje123_ has quit IRC
[23:57:09] *** MaxV has quit IRC
[23:57:58] *** whitebook has joined #angularjs
[23:58:22] *** davemerwin has quit IRC
[23:58:23] *** marcospgp has quit IRC
[23:58:42] *** soren_engel has quit IRC
[23:58:51] <dweave> are closure compiler and browserify mutuallly exclusive things? like would you use one or the other only
[23:58:54] *** davemerwin has joined #angularjs
top

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