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

Toggle Join/Part | bottom
[00:00:26] <mustmodify> ok I need a sanity check. This ng-click doesn't seem to do anything. Any thoughts? <div class="section ng-scope" ng-click="abc = 123" ng-repeat="section in sections">
[00:00:47] <mustmodify> because {{abc|json}} shows nothing.
[00:01:27] <ycon_> wafflejock: is the name of the module in my controller? Doesnt look like the naming convention has changed
[00:01:38] *** loplin has quit IRC
[00:01:40] <ycon_> wafflejock: this is the one I'm trying to use- https://github.com/shprink/ionic-native-transitions
[00:02:01] *** yky_ has quit IRC
[00:02:23] *** ngbot has joined #angularjs
[00:02:23] <ngbot> [angular.js] petebacondarwin pushed 6 new commits to v1.2.x: http://git.io/v0deW
[00:02:23] <ngbot> angular.js/v1.2.x 07f3ba5 Peter Bacon Darwin: chore(npm-shrinkwrap): install glob package
[00:02:24] <ngbot> angular.js/v1.2.x d662a17 Peter Bacon Darwin: chore(angularFiles): add documentation only file to list of files...
[00:02:24] <ngbot> angular.js/v1.2.x 5fec3da Matias Niemelä: chore(build): add a validation step for angularFiles...
[00:02:24] *** ngbot has left #angularjs
[00:02:50] <ycon_> wafflejock: it says something about requiring a library (#ES5 or ES6. What is this talking about?
[00:03:02] *** yeshacker has quit IRC
[00:04:06] <wafflejock> michaelo123456: you basically need to wrap the code up into directives/services, typically directives for things that manipulate the DOM and the rest of the work lib can be "exposed" to angular via a service which you can then inject where you need to use it, typically that's what the third party stuff provides but can certainly roll your own if you're concerned with the integrity of the code or whatever
[00:04:48] *** swordfis_ has joined #angularjs
[00:06:14] *** saysora has joined #angularjs
[00:06:16] *** thatslifeson has quit IRC
[00:07:06] *** swordfish has quit IRC
[00:07:26] *** bbankes has quit IRC
[00:07:48] *** Aliks_ has quit IRC
[00:08:03] *** Aliks has joined #angularjs
[00:08:12] *** austinsk8s has quit IRC
[00:08:28] <wafflejock> michaelo123456: http://plnkr.co/edit/WBHk2L4haC0ag1AAxzTr?p=preview
[00:08:45] *** dopesong has joined #angularjs
[00:10:10] *** jun_ has quit IRC
[00:10:15] *** xwid has quit IRC
[00:13:04] <wafflejock> ycon_: looks like the doc description of how to load it assumes you're using RequireJS or some AMD (asynchronous module loading) or the new ES6 modules I think but my knowledge there is fuzzy at best
[00:13:23] *** johnnyfive has quit IRC
[00:13:45] <wafflejock> http://requirejs.org/docs/whyamd.html <-- can see some info here about it but would have to search about that particular component and read up on the current state of things in ionic to tell ya what to do there
[00:13:45] *** dopesong has quit IRC
[00:14:12] <ycon_> Ah ok, so installing npm install es6-shim /es5
[00:15:32] <ycon_> Then I'd have to put `require('es5-shim'); require('es6-shim'); on a js script that executes on every page?
[00:16:58] <michaelo123456> thanks wafflejock! how do i reference the app i'm currently using? just change 'plunker' to the name of my app defined in app.js?
[00:17:36] <wafflejock> michaelo123456: yeah module name can be whatever just needs to match the ng-app on the page
[00:17:50] *** _matix has quit IRC
[00:18:26] <wafflejock> michaelo123456: only issue with showing things in plnkr as it is is you don't have folders so files all need to be at the root and references sometimes need to be fixed but nice way to be able to share actual demos
[00:18:49] *** _matix has joined #angularjs
[00:19:02] <wafflejock> es6 stuff is an issue too it worked at some point but most of that stuff I've found for demoing es6 there breaks
[00:19:34] *** syzygy_ has quit IRC
[00:19:58] <ycon_> wafflejock: so I should just use ES5? I'm not sure the syntax of adding to my js file
[00:20:03] *** _matix has quit IRC
[00:20:06] *** Getzel has quit IRC
[00:20:29] *** _matix has joined #angularjs
[00:20:49] <ycon_> I know it's just a simple require('es6-shim'); right?
[00:21:31] *** yky_ has joined #angularjs
[00:21:59] <ekarlso> Foxandxss: what features is it that you are missing from ng2 ?
[00:22:13] <wafflejock> ycon_: yeah sorry can't really help you on the whole AMD world and ES6 setup yet I'm still about as noobish to it as you so blind leading the blind
[00:22:15] <ycon_> wait, I put it in my routes (as it always loads) line 88- no syntax error
[00:22:36] <Foxandxss> ekarlso: unless you have a deep familiarity with the code base, can't explain
[00:22:52] <ekarlso> Foxandxss: ah ok : P
[00:23:46] *** johnnyfive has joined #angularjs
[00:23:53] *** qwebirc650070 has joined #angularjs
[00:24:08] *** gho5t has joined #angularjs
[00:24:12] <qwebirc650070> Is anyone here familair with proxies?
[00:24:16] <wafflejock> bbiab gotta run out and need to crank through some stuff here
[00:24:32] *** Drewery has quit IRC
[00:24:53] *** yanivkalfa has quit IRC
[00:25:21] <michaelo123456> wafflejock so if i'm using $stateprovider, i'll still be able to use $state.go in my controller to route to another state say if i want to use ng-click on the submit button?
[00:25:29] <qwebirc650070> My client uses $http to talk to my server, which sends an external API call and returns it to teh client
[00:25:32] <qwebirc650070> I got that working
[00:25:37] <qwebirc650070> but can't handle errors garcefully
[00:25:56] *** bayousoft has quit IRC
[00:27:04] *** fscala has quit IRC
[00:27:30] *** TyrfingMjolnir has joined #angularjs
[00:27:41] <ekarlso> what's the diff between material design and mdl ?
[00:28:11] *** AimerPaddle has joined #angularjs
[00:28:28] *** mekhami has quit IRC
[00:29:42] <qwebirc650070> Anyone here familiar with $http? I'm having some trouble handling errors
[00:29:52] <michaelo123456> @wafflejock also do i need to include a templateUrl for brainTree directive? couldn't I use the current state's template?
[00:30:02] <ycon_> qwebirc650070: I'm day #2 of using it, might know something
[00:30:10] *** fscala has joined #angularjs
[00:30:38] <qwebirc650070> Alright, so I set up a simple server that makes an external API call and returns it to the client
[00:31:01] <qwebirc650070> it works fien when successful, but when an error happens, it's not sending proper error info the client
[00:31:04] <qwebirc650070> my code looks like this
[00:32:16] <qwebirc650070> Uhh, hang on a moment
[00:32:36] <icfantv> qwebirc650070: please use a service like gist to post code
[00:33:12] <qwebirc650070> http://pastebin.com/BQX4UGLB
[00:33:34] <qwebirc650070> That's both my server and client code
[00:33:51] <qwebirc650070> When it fails, the console.log.err seems to work
[00:34:01] *** aghiuru has quit IRC
[00:34:11] *** encryptd_fractal has quit IRC
[00:34:11] <qwebirc650070> but the client doesn't chagne the status to somethign went wrong
[00:34:31] *** speeddra_ has joined #angularjs
[00:34:58] <icfantv> qwebirc650070: what are you seeing in your network stack in your browser as the response?
[00:35:00] <qwebirc650070> So yeah, main issue is I can't get error(function(data, status, headers, config) to run on the client side
[00:35:01] *** soee_ has quit IRC
[00:35:14] <qwebirc650070> let me check
[00:35:18] *** macmod has joined #angularjs
[00:35:20] *** speeddra_ has joined #angularjs
[00:35:54] <qwebirc650070> Cannot read property ... of undefined
[00:35:58] <qwebirc650070> That's something in my success part
[00:36:03] <ekarlso> is there any material design for ng2 yet ?
[00:36:05] <qwebirc650070> so it's going into success even when it shouldn't
[00:36:15] *** Marble68_ has joined #angularjs
[00:36:17] <icfantv> ekarlso: material *just* went 1.0 like two days ago
[00:36:23] *** yanivkalfa has joined #angularjs
[00:36:23] *** hardyred has joined #angularjs
[00:36:31] *** speeddra_ has quit IRC
[00:36:34] <ekarlso> icfantv: -,,-, so ng1 only then atm
[00:36:34] *** Marble68 has quit IRC
[00:36:57] <qwebirc650070> I think I have to change this line, but I'm not sure:
[00:36:58] <qwebirc650070> res.status(500).send("Something went wrong.");
[00:37:23] *** beakman has quit IRC
[00:37:59] *** speeddra_ has joined #angularjs
[00:38:33] *** smccarthy has quit IRC
[00:39:03] *** speeddra_ has quit IRC
[00:39:04] *** swordfis_ has quit IRC
[00:39:16] *** baweaver has joined #angularjs
[00:39:51] *** fedenunez has quit IRC
[00:39:57] *** swordfish has joined #angularjs
[00:40:49] *** Aliks has quit IRC
[00:40:49] *** hardyred has quit IRC
[00:40:52] *** Aliks_ has joined #angularjs
[00:40:57] *** swordfish has joined #angularjs
[00:41:00] *** Marble68_ has quit IRC
[00:41:21] *** Guest30_ has joined #angularjs
[00:41:41] *** Drewery has joined #angularjs
[00:42:30] *** speeddra_ has joined #angularjs
[00:42:30] *** Guest30_ is now known as Baadshah
[00:42:45] *** gho5t has quit IRC
[00:44:56] <icfantv> qwebirc650070: what JSON is being sent as the response?
[00:45:19] *** mustmodify has left #angularjs
[00:45:24] *** speeddra_ has quit IRC
[00:45:49] *** speeddra_ has joined #angularjs
[00:46:27] *** Baadshah has quit IRC
[00:47:43] <qwebirc650070> icfantv: oh wait, I think I figured it out
[00:47:53] *** sqwishy has joined #angularjs
[00:48:05] <qwebirc650070> Something in on err wasn't actually defined
[00:48:19] <qwebirc650070> so it was reaching the err part of the client end and then froze
[00:48:47] *** macabre has quit IRC
[00:49:06] *** Guest30_ has joined #angularjs
[00:49:15] *** beakman has joined #angularjs
[00:49:46] *** Guest30_ has quit IRC
[00:49:48] *** kkthxbye has joined #angularjs
[00:50:17] *** Drewery has quit IRC
[00:51:08] *** Guest30_ has joined #angularjs
[00:51:54] *** ome has joined #angularjs
[00:52:25] *** kk_drop has quit IRC
[00:52:42] *** Croves has joined #angularjs
[00:53:10] *** Rebirth has quit IRC
[00:53:13] <Croves> Guys, how can I simplify this route? http://pastie.org/10638933
[00:53:38] <sqwishy> I'm writing a unit test and I'm testing that a function does some stuff. I have it in a scope.$apply because it uses watch. But I want to make sure it makes a request but check the state it is in before it receives a response.
[00:54:17] <sqwishy> The problem is that the $apply makes $httpBackend yell at me because it's expecting me to have given it a response.
[00:56:49] *** byarger has joined #angularjs
[00:57:37] <wafflejock> michaelo123456: directives in angular can have their own templates you could certainly write this to just use controllers on some state for running the JS but you don't want to have things that depend on or manipulate the DOM in controllers as it makes testing them more difficult and ties your controller to a particular view instead of just having the controller deal with the local view model
[00:58:08] <wafflejock> michaelo123456: you can probably customize the template in the directive I put there to some degree but I'm not sure what assumptions the braintree JS makes about the DOM element it's working with
[00:58:23] *** baweaver has quit IRC
[00:58:41] <wafflejock> michaelo123456: things like facebook share sdk and whatnot work similar to this where they load some JS that then works on the DOM so you have to make due with using CSS to override things and customize the display
[00:58:55] *** damoncasale has joined #angularjs
[00:58:59] <damoncasale> Afternoon all.
[00:59:45] *** macmod has quit IRC
[00:59:50] *** byarger has quit IRC
[00:59:58] <michaelo123456> thanks @wafflejock! I tried refactoring my code to work like yours, but i'm still getting the same error of braintree is undefined: https://gist.github.com/MichaelArnoldOwens/37bb807d681936466084
[01:00:03] *** cotko has joined #angularjs
[01:00:14] <damoncasale> So, I've been looking over the Angular 2 docs. I'm already developing in Angular 1 using directives (with their own controllers) attached to routes, instead of controllers attached to routes. My question is, what's the best practice for displaying common elements like header/footer?
[01:00:32] <damoncasale> Just have a directive/component for every page that includes a common sub-component?
[01:00:34] *** dopesong has joined #angularjs
[01:00:35] <wafflejock> michaelo123456: are you loading the braintree library in the head so it's available before the page starts processing?
[01:01:11] <wafflejock> michaelo123456: you'll either need to do that or customize the code so it can deal with the fact that it might not immediately be loaded as is when it finds this directive in the view it will run the link function at that point and if braintree isn't loaded yet you'll have a problem
[01:01:12] <michaelo123456> no loading at the end of the body before braintree.setup <script>
[01:02:01] *** owenjones has joined #angularjs
[01:02:03] <michaelo123456> so if i put <script src="https://js.braintreegateway.com/v2/braintree.js"></script> in the head it should load?
[01:02:04] <wafflejock> michaelo123456: yeah if you want to keep it async then you'll need someway to either notify the directive code that it's done loading or need to run an interval for it to wait till it's loaded to call the braintree.setup
[01:02:07] <wafflejock> yup
[01:02:25] *** swordfish has quit IRC
[01:04:44] <michaelo123456> how can i query when briantree.js has been loaded?
[01:04:56] *** Aliks_ has quit IRC
[01:05:08] *** yanivkalfa has quit IRC
[01:05:25] *** damoncasale has quit IRC
[01:05:29] *** Aliks has joined #angularjs
[01:05:33] *** damoncasale has joined #angularjs
[01:05:43] <michaelo123456> also can i still route with this setup?
[01:06:08] <ycon_> Has anyone had experience using browsify with angularjs? Need it for a single library.
[01:06:34] <wafflejock> michaelo123456: yeah you can use this directive in a template and it'll work fine too
[01:08:06] *** macobo has quit IRC
[01:08:08] <michaelo123456> when you say template are you referring to the html template?
[01:08:41] *** damoncasale|2 has joined #angularjs
[01:09:04] <wafflejock> well just mean if you have some template for a state that gets loaded it can be in there and angular will still find/process it
[01:09:06] <michaelo123456> my concern is that maybe my angular app is not able to find the controller
[01:09:26] *** erste has quit IRC
[01:09:45] *** javagoogles has joined #angularjs
[01:09:47] <wafflejock> you'll end up wanting to add an isolate scope to this directive most likely so you can pass data in from the controller that is "surrounding" the use of the directive
[01:09:47] *** damoncasale has quit IRC
[01:09:50] *** Aliks_ has joined #angularjs
[01:10:16] <wafflejock> michaelo123456: this may help https://egghead.io/lessons/angularjs-understanding-isolate-scope
[01:10:35] *** Aliks has quit IRC
[01:10:57] *** clivejo has quit IRC
[01:10:59] *** s3shs has quit IRC
[01:11:04] *** nya_ has quit IRC
[01:11:37] <godlycow78> !help
[01:11:37] <angularjs_bot> AngularJS Plunker template http://plnkr.co/edit/tpl:nKLNBdve51sqOoKZAOUS
[01:12:19] <javagoogles> Hi, I'm running the Angular2 quick start on my mac. Works OK, but the file watcher is very slow - around 5s to detect that a file has changed. I can't find any configuration in the typescript docs other than -w. I'm not doing anything fancy and the actual compilation is pretty quick once it recognises a change. Any ideas?
[01:13:15] *** dopesong has quit IRC
[01:13:46] <michaelo123456> wafflejock i only need one controller for the view though, why would i need to use isolate scope?
[01:14:03] *** ril has joined #angularjs
[01:14:16] *** AimerPaddle has quit IRC
[01:14:18] *** codeitloadit has joined #angularjs
[01:14:40] <wafflejock> michaelo123456: you could assume the data is available in the current scope for the directive I just prefer to have it use an isolate scope so it just takes in whatever it needs in order to work directly, partially personal preference though not necessarily required
[01:14:55] *** Aliks_ has quit IRC
[01:15:30] *** jstroem has joined #angularjs
[01:15:54] *** Aliks has joined #angularjs
[01:16:16] <godlycow78> wafflejock: I'm trying to totally modularize the nav-bar we discussed yesterday. I do have it working if the way I'm attempting to do it won't work, or is terribly bad practice: http://plnkr.co/edit/06iWwyXuKlYnSpRoc4eK?p=catalogue what are your thoughts on that?
[01:16:20] *** TinkerTyper has quit IRC
[01:17:19] *** tobias47n9e__ has joined #angularjs
[01:18:14] *** ahhhndi has quit IRC
[01:18:23] *** ahhhndi has joined #angularjs
[01:19:46] *** jstroem has quit IRC
[01:19:56] *** tobias47n9e_ has quit IRC
[01:20:55] *** Aliks has quit IRC
[01:20:58] *** ojtua has joined #angularjs
[01:21:02] *** Aliks has joined #angularjs
[01:21:10] *** damoncasale|2 is now known as damoncasale
[01:21:42] <damoncasale> So, I have a directive that looks like this:
[01:22:24] <damoncasale> scope: { page: '@' }, templateUrl: function() { return 'components/static' + this.page + 'View.html'; }
[01:22:32] <damoncasale> But this.page is undefined.
[01:22:36] <damoncasale> Am I able to do that?
[01:22:49] <damoncasale> I want to have a "static" directive that looks like this:
[01:22:55] <damoncasale> <static page="home"></static>
[01:23:03] *** joshontheweb has joined #angularjs
[01:23:30] <damoncasale> This is for Angular 1. :p
[01:24:57] <godlycow78> damoncasale: you might want to pop that into plunkr !help
[01:24:57] <angularjs_bot> AngularJS Plunker template http://plnkr.co/edit/tpl:nKLNBdve51sqOoKZAOUS
[01:25:24] *** owenjones has quit IRC
[01:26:42] *** Ugolin has joined #angularjs
[01:27:20] *** diegoaguilar has quit IRC
[01:27:21] <wafflejock> godlycow78: seems mostly okay one thing to make note of though the link function you can't inject things directly there it injects the params/arguments based on the order in the link function so it's always link: function(scope, iElem, iAttr){}
[01:27:31] <sqwishy> If I have a $watch listener that calls foo() and fires an http request. How do I test that it calls foo without testing the code that handles the http response? Because it seems to invoke the listener I have to use $apply or $digest. And that tries to flush the $httpBackend or something
[01:27:42] <wafflejock> godlycow78: see line 7 here for where you should inject the apiService for the directive to have it in scope/context http://plnkr.co/edit/5Sxgm7f62K9GGhz0yobC?p=catalogue
[01:28:13] <damoncasale> godlycow78: Ok sec.
[01:28:47] *** wontoner has joined #angularjs
[01:29:22] <godlycow78> wafflejock: ah, I see how that works. the link bit is a sort of strange twist.
[01:29:49] <wafflejock> godlycow78: yeah it's a little weird, directives in general have a lot of weird ways to define things for "convenience" but think it is mostly confusing :)
[01:30:02] <godlycow78> wafflejock: one issue I get is that it isn't able to find itemsUrl from the scope: {} bit
[01:30:03] *** Croves has quit IRC
[01:31:01] <wafflejock> godlycow78: ah there just need the hyphen "case" for the view so camel case to snake case I think it's called itemsUrl in JS becomes items-url in HTML ($normalize in angular does that I'm pretty sure)
[01:31:34] *** Ugolin has quit IRC
[01:31:41] <godlycow78> Ah, I noticed that had happened with the directive calls, didn't realize it applied to params. slick
[01:31:50] *** beakman has quit IRC
[01:32:03] <wafflejock> godlycow78: yeah basically cause html isn't typically case sensitive really but JS is and - in JS means minus so it causes problems
[01:32:52] *** owenjones has joined #angularjs
[01:32:52] *** Aliks_ has joined #angularjs
[01:33:08] <damoncasale> godlycow78: http://plnkr.co/edit/lNGIxcqzZKfzsfomglEF?p=preview
[01:34:15] *** Aliks has quit IRC
[01:34:40] <godlycow78> ah. I don't think your templateurl should be inside your script brackets
[01:35:10] <godlycow78> additionally, it will be returning homeView.html which is not a path in that plunkr you sent
[01:35:11] *** vandyk has joined #angularjs
[01:35:18] <godlycow78> should home.html be homeView.html?
[01:35:24] *** c00ljs_ has quit IRC
[01:36:00] <damoncasale> Yes, my mistake on that.
[01:36:26] *** Guest30_ has quit IRC
[01:37:53] <damoncasale> Fixed my plunkr but I still can't get it to work.
[01:37:54] *** vandyk has quit IRC
[01:38:03] <damoncasale> Suggestions?
[01:38:10] *** thatslifeson has joined #angularjs
[01:38:14] *** beakman has joined #angularjs
[01:38:15] <godlycow78> one moment, I'm checking something out that I think will help
[01:38:30] <godlycow78> if not, we can maybe get wafflejock to help
[01:38:51] *** FIFOd has joined #angularjs
[01:39:46] *** Aliks has joined #angularjs
[01:40:09] *** brodul has quit IRC
[01:40:18] <wafflejock> godlycow78: damoncasale yeah no scope available there and the isolate scope just puts things on the scope, in the template function you can pass telem and tattr to get the template object (before it's been processed) and it's attributes http://plnkr.co/edit/cXzDFbaJkYBRHmjsI8TF?p=preview
[01:40:30] *** madhums has joined #angularjs
[01:40:43] <wafflejock> can call them whatever too same with link function where the order of params is what matters
[01:40:55] *** Aliks_ has quit IRC
[01:42:17] <godlycow78> wafflejock: your solution to his problem also fixed mine. cheers
[01:42:26] <wafflejock> :) cool
[01:42:34] <godlycow78> I just needed the tElem and tAttr to get to itemsUrl in the linked function
[01:42:42] *** baweaver has joined #angularjs
[01:42:53] <C0nundrum> Hi wafflejock
[01:42:58] <godlycow78> how do I inject bootstrap styling through nested directive-type views?
[01:43:14] <godlycow78> or, I suppose, whichever styling I happen to be using
[01:43:34] <damoncasale> wafflejock: Got it, thanks!
[01:43:49] <wafflejock> godlycow78: CSS is just applied across the entire page the directives aren't truly isolated from the page they just are given some dom element to operate on (the one their applied to in the markup)
[01:43:50] <godlycow78> damoncasale: sorry I wasn't more help!
[01:43:57] <wafflejock> hi C0nundrum
[01:43:58] *** JBreit has quit IRC
[01:44:06] <damoncasale> godlycow78: np
[01:44:10] *** Aliks_ has joined #angularjs
[01:44:19] <godlycow78> huh, that's strange, I don't seem to be getting a "cascade". I must not be applying bootstrap to begin with
[01:44:37] *** storresi has quit IRC
[01:45:20] *** Aliks has quit IRC
[01:45:35] *** cacts|works has quit IRC
[01:46:11] *** ril has quit IRC
[01:47:29] <Arc__> angularjs is so fun... just saying... :)
[01:48:38] *** dodobrain has joined #angularjs
[01:48:59] <C0nundrum> wafflejock any last suggestions on this thinking about scrapping it ans just going with absolute elements :( https://jsfiddle.net/dragonpiper/6j5jmemo/
[01:49:13] *** gho5t has joined #angularjs
[01:50:18] <wafflejock> C0nundrum: yeah personally when I want tight control over the UI and am doing animation stuff I'm just working with a Cartesian coordinate system so use absolute if it's DOM stuff or use a canvas if it's image heavy stuff and I'm not so concerned with the interactions (hit checking is all manual with canvas so far as I know)
[01:51:03] <wafflejock> C0nundrum: SVG is an option too depending on browser support requirements, I've used Velocity.js within directives that rely mostly on SVG to animate some things
[01:52:10] <C0nundrum> Yea, i was also considering an animation framework since they are really good at performance and keep elements in sync
[01:52:13] *** Aliks has joined #angularjs
[01:52:15] <C0nundrum> animations in sync*
[01:52:15] *** Aliks_ has quit IRC
[01:52:28] *** joshontheweb has quit IRC
[01:53:06] *** ron_frown has joined #angularjs
[01:53:11] <wafflejock> yah was really happy with velocity
[01:53:15] <dodobrain> C0nundrum, tried snapsvg.io ?
[01:53:20] <wafflejock> there are some other nice ones out there I'm sure too though
[01:53:49] <C0nundrum> but don't you think svg is overkill for just a shifting table or would it just makes things easier ?
[01:54:58] *** mdedetrich has joined #angularjs
[01:55:25] <wafflejock> C0nundrum: eh I dunno I really take to SVG stuff have a big file of craziness using some SVG stuff here in a directive https://github.com/shusain/itDateTimePicker/blob/master/app/component/component.js demo here http://shusain.github.io/itDateTimePicker/ keep in mind the code was finished at 3am one day and I haven't gone back to it to make it any more sane, but can probably sample some useful things out of there if you go SVG with
[01:56:25] *** FenikkusuOsiris has joined #angularjs
[01:57:13] *** Croves has joined #angularjs
[01:57:15] <C0nundrum> o neat. i'll take note of it.
[01:57:24] <wafflejock> C0nundrum: feel like dealing with CSS is at least as bad in most cases :)
[01:57:50] <C0nundrum> lol, true
[01:58:05] *** Aliks_ has joined #angularjs
[01:58:48] <Croves> Guys, what's wrong with this post? In my PHP, there's no POST in the request http://pastie.org/10638999
[01:59:15] *** Aliks has quit IRC
[01:59:42] *** shoelessone has quit IRC
[02:00:03] *** devPaul has quit IRC
[02:00:17] *** charuru has quit IRC
[02:00:28] *** yky_ has quit IRC
[02:01:48] *** owenjones has quit IRC
[02:02:50] *** gho5t has quit IRC
[02:03:08] *** charuru has joined #angularjs
[02:03:21] *** charuru has left #angularjs
[02:03:43] <sqwishy> In a unit test, is there any way to do a $digest but leave some http requests outstanding/without responses?
[02:04:02] *** speeddra_ has quit IRC
[02:05:02] <godlycow78> wafflejock: Well, it turns out I'm just very silly. I was bundling a whole directory and did *js rather than *css
[02:05:13] *** Aliks has joined #angularjs
[02:05:17] <godlycow78> so now I'm getting proper (ish) bootstrap
[02:05:45] *** Aliks_ has quit IRC
[02:05:59] <tritian> Hello, howcome when I update property on a service dependency I have, the things that watch that property elsewhere in my code dont get updated automatically?
[02:06:03] *** zeezey has quit IRC
[02:06:03] *** zeezey has joined #angularjs
[02:08:12] *** TyrfingMjolnir has quit IRC
[02:09:23] *** Aliks_ has joined #angularjs
[02:09:26] *** evilaliv3 has quit IRC
[02:09:36] <tritian> i have a controller that reads a property on the service that is in the same module, and it assigns it to $scope, and i use that in an ng-repeat in my template. That all works fine - but when I change that property from a different controller in a different module it doesn't seem to have any affect
[02:10:11] <tritian> both controllers fetch the same service
[02:10:15] *** Aliks has quit IRC
[02:10:43] <tritian> hmm, maybe it's creating a new instance of the service for each one?
[02:11:56] *** Foxandxss has quit IRC
[02:12:32] *** owenjones has joined #angularjs
[02:13:01] *** nya_ has joined #angularjs
[02:13:03] *** owenjones has quit IRC
[02:15:23] *** s00pcan has quit IRC
[02:15:57] *** speeddra_ has joined #angularjs
[02:16:14] *** damoncasale has quit IRC
[02:16:19] *** buzzedword has joined #angularjs
[02:16:22] *** damoncasale has joined #angularjs
[02:17:52] *** loplin has joined #angularjs
[02:17:57] *** Aliks_ has quit IRC
[02:17:59] *** Aliks has joined #angularjs
[02:18:00] *** peterR`` has quit IRC
[02:18:18] *** gho5t has joined #angularjs
[02:18:43] *** speeddra_ has quit IRC
[02:19:05] *** qwebirc650070 has quit IRC
[02:19:54] <C0nundrum> Also wafflejock is something like this but done for ngAnimate ? https://daneden.github.io/animate.css/
[02:21:11] <wafflejock> C0nundrum: this looks relevant https://divshot.com/blog/tips-and-tricks/angular-1-2-and-animate-css/ have heard of people using that but haven't really used it myself
[02:21:48] <C0nundrum> ah
[02:22:10] *** ojtua has left #angularjs
[02:23:48] *** speeddra_ has joined #angularjs
[02:25:06] *** loplin has quit IRC
[02:26:25] *** tristanp has quit IRC
[02:27:02] *** beakman has quit IRC
[02:27:28] *** Ugolin has joined #angularjs
[02:27:55] *** icfantv has quit IRC
[02:28:10] *** ron_frown has quit IRC
[02:28:20] *** owenjones has joined #angularjs
[02:28:28] *** Aliks_ has joined #angularjs
[02:28:35] *** ron_frown has joined #angularjs
[02:29:05] *** gho5t has quit IRC
[02:29:05] *** marr has quit IRC
[02:29:48] *** k1ng440 has quit IRC
[02:29:55] *** Aliks has quit IRC
[02:30:09] *** FenikkusuOsiris has quit IRC
[02:31:36] *** DavidDudson has joined #angularjs
[02:32:35] *** frem has quit IRC
[02:32:46] *** Ugolin has quit IRC
[02:33:08] *** thatslifeson has quit IRC
[02:33:48] <damoncasale> When defining a custom directive, do I need to use dataCustom as my directive name if the attribute name is data-custom?
[02:33:54] *** Aliks has joined #angularjs
[02:33:57] <damoncasale> Or can I just use custom as the directive name?
[02:34:19] <damoncasale> Trying with custom (not the actual name, of course) and it doesn't seem to be working. Not sure if I'm missing something or not.
[02:34:42] *** k1ng440 has joined #angularjs
[02:34:43] *** k1ng440 has joined #angularjs
[02:34:55] *** Aliks_ has quit IRC
[02:34:58] *** madhums has quit IRC
[02:37:03] <wafflejock> damoncasale: shouldn't need the dataCustom custom should work https://docs.angularjs.org/api/ng/type/$compile.directive.Attributes#$normalize
[02:38:15] *** iraj has quit IRC
[02:38:44] *** baweaver has quit IRC
[02:38:59] *** phrozensilver has joined #angularjs
[02:38:59] *** Aliks_ has joined #angularjs
[02:39:03] *** fedenunez has joined #angularjs
[02:39:26] *** Aliks has quit IRC
[02:41:20] *** shinnya has quit IRC
[02:41:43] *** speeddra_ has quit IRC
[02:41:56] *** sbellina has quit IRC
[02:41:59] *** macabre has joined #angularjs
[02:42:37] *** phrozensilver_ has quit IRC
[02:43:28] *** FenikkusuOsiris has joined #angularjs
[02:44:00] *** Aliks has joined #angularjs
[02:44:15] *** Aliks_ has quit IRC
[02:44:31] *** nya_ has quit IRC
[02:44:56] *** nya_ has joined #angularjs
[02:45:07] *** Uptime has quit IRC
[02:45:07] *** Uptime has joined #angularjs
[02:45:24] *** s3shs has joined #angularjs
[02:45:42] *** mellernoia has joined #angularjs
[02:45:45] *** amiarobot has joined #angularjs
[02:46:20] *** Aliks_ has joined #angularjs
[02:46:46] *** Aliks has quit IRC
[02:46:54] <amiarobot> I'm working through the 5 Min Quickstart for 2.0.0-beta and am confused about the usage of semicolons. Sometimes they are used at the end of lines and sometimes they are not. Is there a reason for this inconsistency?
[02:47:08] *** hefox has quit IRC
[02:48:21] *** speeddra_ has joined #angularjs
[02:49:26] *** fedenunez has quit IRC
[02:49:58] *** fedenunez has joined #angularjs
[02:50:01] *** fotoflo has quit IRC
[02:50:44] *** mellernoia has quit IRC
[02:51:11] *** ycon_ has quit IRC
[02:51:52] *** Gberde has joined #angularjs
[02:51:58] *** MrBaboon has quit IRC
[02:52:18] *** owenjones has quit IRC
[02:52:33] *** Gberde has left #angularjs
[02:52:42] *** one_zero has joined #angularjs
[02:53:57] *** skcin7 has joined #angularjs
[02:56:46] *** damoncasale has quit IRC
[02:56:55] *** fedenunez has quit IRC
[02:57:07] *** Aliks has joined #angularjs
[02:57:17] *** _matix has quit IRC
[02:57:24] *** Aliks_ has quit IRC
[02:58:10] *** fotoflo has joined #angularjs
[02:58:21] *** codeitloadit has quit IRC
[03:00:00] *** npx_jp has joined #angularjs
[03:00:24] *** shoelessone has joined #angularjs
[03:00:46] *** Croves has quit IRC
[03:01:41] <npx_jp> angular2: i really really really cant get component outputs (former events) get to work. i declared "onSave" as an input in my component. if i do not assign it an EventEmitter i get an error. so when i emit/next with that emitter, the parent component which does (onSave)="doSomething()" does not do anything
[03:03:17] *** speeddra_ has quit IRC
[03:03:27] *** tristanp has joined #angularjs
[03:03:33] *** yanivkalfa has joined #angularjs
[03:04:00] *** empyreanx has joined #angularjs
[03:04:12] *** jun_ has joined #angularjs
[03:04:13] <npx_jp> as an output*
[03:05:16] *** shoelessone has quit IRC
[03:05:24] *** cotko has quit IRC
[03:06:51] *** speeddra_ has joined #angularjs
[03:07:45] *** FenikkusuOsiris has quit IRC
[03:08:20] *** greatdex has quit IRC
[03:08:41] *** sqwishy has left #angularjs
[03:09:29] *** FenikkusuOsiris has joined #angularjs
[03:10:04] *** Croves has joined #angularjs
[03:10:20] *** s3shs has quit IRC
[03:10:41] *** speeddragon has quit IRC
[03:10:53] *** Aliks has quit IRC
[03:11:28] *** Aliks has joined #angularjs
[03:12:05] *** rickmak has joined #angularjs
[03:12:44] *** gho5t has joined #angularjs
[03:12:52] *** fedenunez has joined #angularjs
[03:13:08] *** saysora has quit IRC
[03:14:33] *** fotoflo has quit IRC
[03:14:38] *** phrozensilver has quit IRC
[03:14:49] *** mdedetrich has quit IRC
[03:15:06] *** speeddra_ has quit IRC
[03:15:32] *** vader699 has joined #angularjs
[03:15:34] *** michaelo123456 has quit IRC
[03:15:34] *** jun_ has quit IRC
[03:16:01] *** rickmak has quit IRC
[03:16:04] *** n00bdev has joined #angularjs
[03:16:14] *** Getzel has joined #angularjs
[03:16:31] *** Croves has quit IRC
[03:16:41] <npx_jp> it works in my plunkr but not in my code o.o
[03:17:22] *** rickmak has joined #angularjs
[03:18:40] *** rickmak has quit IRC
[03:18:51] *** lnrdo has quit IRC
[03:18:52] *** tristanp has quit IRC
[03:19:28] *** buzzedword has quit IRC
[03:19:53] *** yanivkalfa has quit IRC
[03:21:46] *** greatdex has joined #angularjs
[03:23:55] *** prbc has quit IRC
[03:24:19] *** npx_jp has quit IRC
[03:24:20] *** godlycow78 has quit IRC
[03:24:28] *** tristanp has joined #angularjs
[03:24:57] *** Aliks_ has joined #angularjs
[03:25:35] *** Aliks has quit IRC
[03:25:41] *** thatslifeson has joined #angularjs
[03:26:36] *** cotko has joined #angularjs
[03:27:31] *** jr3 has quit IRC
[03:27:56] *** dex has joined #angularjs
[03:28:13] *** dbclk has joined #angularjs
[03:28:20] *** dex is now known as Guest34129
[03:29:18] *** greatdex has quit IRC
[03:30:48] *** tristanp has quit IRC
[03:31:27] *** burzum has joined #angularjs
[03:32:40] *** burzum2 has quit IRC
[03:32:48] *** owenjones has joined #angularjs
[03:33:28] *** tristanp has joined #angularjs
[03:34:58] *** aghiuru has joined #angularjs
[03:36:10] *** rickmak has joined #angularjs
[03:36:16] *** gho5t has quit IRC
[03:36:29] *** tristanp has quit IRC
[03:36:46] *** aghiuru_ has joined #angularjs
[03:36:52] *** nya_ has quit IRC
[03:37:01] *** nya_ has joined #angularjs
[03:37:23] *** Dmitri has joined #angularjs
[03:38:44] *** aghiuru__ has joined #angularjs
[03:39:54] *** OtherAllan has quit IRC
[03:40:11] *** Aliks has joined #angularjs
[03:40:15] *** aghiuru has quit IRC
[03:40:26] *** aghiuru has joined #angularjs
[03:40:56] *** kvnm has joined #angularjs
[03:41:15] *** s3shs has joined #angularjs
[03:41:26] *** MistahKurtz has joined #angularjs
[03:42:17] *** aghiuru_ has quit IRC
[03:42:20] *** Dmitri has quit IRC
[03:42:30] *** aghiuru_ has joined #angularjs
[03:43:45] *** Aliks_ has quit IRC
[03:43:51] *** gho5t has joined #angularjs
[03:44:26] *** aghiur___ has joined #angularjs
[03:44:29] *** aghiuru__ has quit IRC
[03:44:53] *** kvnm has quit IRC
[03:45:55] *** aghiuru has quit IRC
[03:46:10] *** AimerPaddle has joined #angularjs
[03:46:24] *** aghiuru has joined #angularjs
[03:46:48] *** tristanp has joined #angularjs
[03:48:18] *** aghiuru__ has joined #angularjs
[03:48:21] *** aghiuru_ has quit IRC
[03:48:25] *** kkthxbye has quit IRC
[03:49:00] *** gho5t has quit IRC
[03:49:35] *** aghiur___ has quit IRC
[03:50:11] *** aghiuru_ has joined #angularjs
[03:51:26] *** kvnm has joined #angularjs
[03:51:41] *** Rebirth has joined #angularjs
[03:52:04] *** aghiur___ has joined #angularjs
[03:52:13] *** aghiuru has quit IRC
[03:52:53] *** joshontheweb has joined #angularjs
[03:54:01] *** aghiuru has joined #angularjs
[03:54:10] *** aghiuru__ has quit IRC
[03:54:37] *** Lynxium has joined #angularjs
[03:54:44] *** Aliks has quit IRC
[03:55:05] *** owenjones has quit IRC
[03:55:17] *** gho5t has joined #angularjs
[03:55:17] *** Aliks has joined #angularjs
[03:55:35] *** aghiuru_ has quit IRC
[03:55:59] *** aghiuru_ has joined #angularjs
[03:57:25] *** ome has quit IRC
[03:57:38] *** aghiur___ has quit IRC
[03:57:46] *** aghiuru__ has joined #angularjs
[03:58:45] *** tristanp has quit IRC
[03:59:26] *** aghiuru has quit IRC
[03:59:45] *** aghiuru has joined #angularjs
[04:01:32] *** mary5030 has quit IRC
[04:01:41] *** aghiur___ has joined #angularjs
[04:01:46] *** skcin7 has quit IRC
[04:01:53] *** aghiuru_ has quit IRC
[04:02:54] *** tristanp has joined #angularjs
[04:03:17] *** aghiuru__ has quit IRC
[04:03:31] *** aghiuru_ has joined #angularjs
[04:03:44] *** shoelessone has joined #angularjs
[04:03:52] *** gho5t has quit IRC
[04:05:20] *** aghiuru has quit IRC
[04:06:37] *** aghiuru has joined #angularjs
[04:07:20] *** aghiur___ has quit IRC
[04:07:28] *** aghiuru__ has joined #angularjs
[04:07:46] *** ril has joined #angularjs
[04:08:30] *** ril is now known as ril[away]
[04:08:50] *** shoelessone has quit IRC
[04:09:17] *** aghiur___ has joined #angularjs
[04:09:25] *** aghiuru_ has quit IRC
[04:10:33] *** junmin has quit IRC
[04:11:13] *** aghiuru_ has joined #angularjs
[04:11:33] *** aghiuru has quit IRC
[04:12:20] *** sbellina has joined #angularjs
[04:12:29] *** gho5t has joined #angularjs
[04:12:40] *** speeddragon has joined #angularjs
[04:12:44] *** aghiuru__ has quit IRC
[04:13:00] *** quakephil has quit IRC
[04:13:08] *** aghiuru has joined #angularjs
[04:14:39] *** _matix has joined #angularjs
[04:15:04] *** aghiur___ has quit IRC
[04:15:05] *** aghiuru__ has joined #angularjs
[04:15:38] *** phrozensilver has joined #angularjs
[04:16:22] *** kvnm has quit IRC
[04:16:31] *** s3shs has quit IRC
[04:16:46] *** sbellina has quit IRC
[04:16:47] *** aghiuru_ has quit IRC
[04:16:55] *** speeddragon has quit IRC
[04:18:05] *** aghiuru_ has joined #angularjs
[04:18:19] *** kvnm has joined #angularjs
[04:18:20] *** amiarobot has quit IRC
[04:18:45] *** aghiuru has quit IRC
[04:18:57] *** aghiuru has joined #angularjs
[04:19:02] *** _matix has quit IRC
[04:19:31] *** kvnm has quit IRC
[04:19:40] *** s3shs has joined #angularjs
[04:20:44] *** aghiur___ has joined #angularjs
[04:20:46] *** aghiuru__ has quit IRC
[04:22:38] *** aghiuru_ has quit IRC
[04:22:43] *** aghiuru__ has joined #angularjs
[04:24:06] *** aghiuru has quit IRC
[04:24:12] *** johnzorn has quit IRC
[04:24:42] *** aghiuru has joined #angularjs
[04:25:03] *** Aliks_ has joined #angularjs
[04:26:02] *** aghiur___ has quit IRC
[04:26:26] *** aghiuru_ has joined #angularjs
[04:27:14] *** skcin7 has joined #angularjs
[04:27:40] *** FenikkusuOsiris has quit IRC
[04:27:44] *** cotko has quit IRC
[04:28:14] *** gweedo767|away is now known as gweedo767
[04:28:15] *** Aliks has quit IRC
[04:28:30] *** aghiur___ has joined #angularjs
[04:28:40] *** aghiuru__ has quit IRC
[04:28:51] *** baweaver has joined #angularjs
[04:28:52] *** skcin7 has quit IRC
[04:29:28] *** Ugolin has joined #angularjs
[04:29:34] *** skcin7 has joined #angularjs
[04:30:06] *** aghiuru has quit IRC
[04:30:19] *** ron_frown has quit IRC
[04:30:24] *** aghiuru has joined #angularjs
[04:31:04] *** mdedetrich has joined #angularjs
[04:32:10] *** aghiuru_ has quit IRC
[04:32:13] *** aghiuru__ has joined #angularjs
[04:32:25] *** wontoner has quit IRC
[04:33:28] *** hefox has joined #angularjs
[04:33:37] *** dszmaj has joined #angularjs
[04:33:44] *** aghiur___ has quit IRC
[04:33:54] *** Ugolin has quit IRC
[04:34:12] *** aghiuru_ has joined #angularjs
[04:34:53] *** _matix has joined #angularjs
[04:34:56] *** tplaner has quit IRC
[04:35:10] *** one_zero has quit IRC
[04:36:04] *** aghiur___ has joined #angularjs
[04:36:08] *** aghiuru has quit IRC
[04:36:28] *** kvnm has joined #angularjs
[04:37:26] *** aghiuru__ has quit IRC
[04:37:51] *** ycon_ has joined #angularjs
[04:38:02] *** ril[away] is now known as ril
[04:38:02] *** aghiuru has joined #angularjs
[04:38:18] *** rchavik has joined #angularjs
[04:38:22] <ycon_> Hi, I want a smart way to do an ng-repeat grid (2 images per row). Ive looked up several methods- whats a smart way to do it? http://dpaste.com/1G06S0F
[04:38:31] *** kvnm has quit IRC
[04:39:06] *** Aliks_ has quit IRC
[04:39:15] *** ril has quit IRC
[04:39:45] *** aghiuru_ has quit IRC
[04:39:54] *** aghiuru_ has joined #angularjs
[04:40:09] *** one_zero has joined #angularjs
[04:41:15] *** aghiur___ has quit IRC
[04:41:53] *** aghiuru__ has joined #angularjs
[04:42:58] *** {DV8} has quit IRC
[04:43:32] *** _matix has quit IRC
[04:43:41] <ycon_> This is my attempt at ng repeat- is my directive wrong or something? I'm using $scope.split
[04:43:43] <ycon_> http://dpaste.com/0EVA0DB
[04:43:46] *** aghiur___ has joined #angularjs
[04:44:12] *** aghiuru has quit IRC
[04:44:51] *** Bloomer has joined #angularjs
[04:45:36] *** aghiuru_ has quit IRC
[04:45:42] *** aghiuru has joined #angularjs
[04:45:46] <Arc__> your inner ng-repeat should be "store in items"... i think?
[04:45:54] *** jr3 has joined #angularjs
[04:45:56] *** RangerRick has quit IRC
[04:46:57] *** syzygy_ has joined #angularjs
[04:47:06] *** aghiuru__ has quit IRC
[04:47:36] *** aghiuru_ has joined #angularjs
[04:48:19] <ycon_> Arc__: items was wrong I think- I've tried this http://dpaste.com/2WSGJ78
[04:48:38] *** gho5t has quit IRC
[04:48:54] <Arc__> hmm
[04:49:27] *** aghiuru__ has joined #angularjs
[04:49:31] <Arc__> sorry i'm still kinda new to angular... not sure what do :\
[04:49:39] <ycon_> Like, it seems to work, but not in a grid (just rpeats them
[04:49:44] *** aghiur___ has quit IRC
[04:49:51] <ycon_> Arc__: all good- I started yesterday. It's amazing
[04:49:57] <Arc__> hmm
[04:50:07] <Arc__> agreed. i'm loving it :)
[04:50:38] <Arc__> it's not working with the bootstrap grid because you don't have a closing </div>?
[04:50:46] <Arc__> for the inner div
[04:51:06] *** aghiuru has quit IRC
[04:51:23] *** aghiuru has joined #angularjs
[04:52:17] *** cacts has joined #angularjs
[04:53:08] *** kvnm has joined #angularjs
[04:53:20] <ycon_> Arc__: yeh thank- tried it, no luck
[04:53:20] *** aghiur___ has joined #angularjs
[04:53:36] *** aghiuru_ has quit IRC
[04:53:43] <Arc__> argh
[04:55:09] *** aghiuru_ has joined #angularjs
[04:55:26] *** aghiuru__ has quit IRC
[04:56:48] *** ome has joined #angularjs
[04:56:50] *** aghiuru has quit IRC
[04:56:53] *** jimvideo has quit IRC
[04:56:58] *** sbellina has joined #angularjs
[04:57:10] *** aghiuru has joined #angularjs
[04:59:05] *** aghiuru__ has joined #angularjs
[04:59:05] *** aghiur___ has quit IRC
[04:59:35] *** kvnm has quit IRC
[04:59:58] *** Getzel has quit IRC
[05:00:26] *** aghiuru_ has quit IRC
[05:00:54] *** aghiuru_ has joined #angularjs
[05:01:20] *** FenikkusuOsiris has joined #angularjs
[05:02:21] *** baweaver has quit IRC
[05:02:41] *** aghiuru has quit IRC
[05:02:48] *** LabCoatNomad has quit IRC
[05:02:50] *** aghiuru has joined #angularjs
[05:03:17] *** FenikkusuOsiris has quit IRC
[05:04:28] *** s3shs has quit IRC
[05:04:32] *** shoelessone has joined #angularjs
[05:04:43] *** aghiuru__ has quit IRC
[05:04:48] *** aghiur___ has joined #angularjs
[05:05:14] *** rho has joined #angularjs
[05:05:30] *** Jardayn has quit IRC
[05:06:10] *** {DV8} has joined #angularjs
[05:06:28] *** n00bdev has quit IRC
[05:06:35] *** aghiuru_ has quit IRC
[05:06:38] *** aghiuru__ has joined #angularjs
[05:06:59] *** dbclk has quit IRC
[05:07:01] *** FIFOd has quit IRC
[05:07:37] *** ctanga has quit IRC
[05:08:23] *** aghiuru has quit IRC
[05:08:37] *** aghiuru has joined #angularjs
[05:08:50] *** jr3 has quit IRC
[05:09:26] *** shoelessone has quit IRC
[05:09:36] <ycon_> Now I'm attempting the grid using $index- still not there. Works in a plunkr, but not in my code http://dpaste.com/33RT262
[05:10:06] *** aghiur___ has quit IRC
[05:10:31] *** aghiuru_ has joined #angularjs
[05:12:20] *** aghiur___ has joined #angularjs
[05:12:25] *** aghiuru__ has quit IRC
[05:13:22] *** b0x has joined #angularjs
[05:13:43] *** Ugolin has joined #angularjs
[05:14:10] *** aghiuru has quit IRC
[05:14:17] *** aghiuru has joined #angularjs
[05:15:16] *** FenikkusuOsiris has joined #angularjs
[05:15:17] *** Ugolin has quit IRC
[05:15:30] *** Ugolin has joined #angularjs
[05:15:55] *** aghiuru_ has quit IRC
[05:16:16] *** aghiuru_ has joined #angularjs
[05:16:44] *** devPaul has joined #angularjs
[05:17:56] *** Ugolin has quit IRC
[05:18:07] *** Z3R0 has joined #angularjs
[05:18:08] *** aghiuru__ has joined #angularjs
[05:18:24] *** aghiur___ has quit IRC
[05:18:38] *** Ugolin has joined #angularjs
[05:18:45] *** jr3 has joined #angularjs
[05:19:07] *** danieli has joined #angularjs
[05:20:00] *** aghiuru has quit IRC
[05:20:05] *** aghiur___ has joined #angularjs
[05:20:17] *** Josh-Star has quit IRC
[05:21:35] *** aghiuru_ has quit IRC
[05:22:00] *** aghiuru has joined #angularjs
[05:22:41] *** yeshacker has joined #angularjs
[05:23:12] *** Ugolin has quit IRC
[05:23:26] *** jr3 has quit IRC
[05:23:26] *** aghiuru__ has quit IRC
[05:23:32] *** jr3_ has joined #angularjs
[05:23:51] *** aghiuru_ has joined #angularjs
[05:24:00] *** Aliks has joined #angularjs
[05:24:55] *** rickmak has quit IRC
[05:25:50] *** aghiur___ has quit IRC
[05:25:50] *** aghiuru__ has joined #angularjs
[05:27:15] *** aghiuru has quit IRC
[05:27:41] *** aghiuru has joined #angularjs
[05:28:45] *** Aliks has quit IRC
[05:29:31] *** aghiur___ has joined #angularjs
[05:29:48] *** aghiuru_ has quit IRC
[05:30:05] *** aghiuru__ has quit IRC
[05:31:22] <ycon_> Can anyone help- my directive is not arriving working- but I have the layout right (for a grid). http://dpaste.com/0TXF3VZ
[05:31:32] *** aghiuru_ has joined #angularjs
[05:33:18] *** aghiuru has quit IRC
[05:33:26] *** aghiuru has joined #angularjs
[05:34:13] *** rickmak has joined #angularjs
[05:34:46] *** aghiur___ has quit IRC
[05:35:17] *** aghiuru__ has joined #angularjs
[05:35:35] *** FenikkusuOsiris has quit IRC
[05:36:06] *** rchavik_ has joined #angularjs
[05:36:31] *** charuru_ has joined #angularjs
[05:37:05] *** aghiuru_ has quit IRC
[05:37:17] *** aghiuru_ has joined #angularjs
[05:38:14] *** rickmak has quit IRC
[05:38:24] *** jun_ has joined #angularjs
[05:39:08] *** aghiuru has quit IRC
[05:39:10] *** aghiur___ has joined #angularjs
[05:39:35] *** rchavik has quit IRC
[05:40:46] *** aghiuru__ has quit IRC
[05:40:47] *** doppio|Laptop has joined #angularjs
[05:42:11] *** aghiuru has joined #angularjs
[05:42:45] *** aghiuru_ has quit IRC
[05:42:57] *** aghiuru_ has joined #angularjs
[05:44:08] *** fotoflo has joined #angularjs
[05:44:35] *** aghiur___ has quit IRC
[05:44:42] *** syzygy_ has quit IRC
[05:44:54] *** aghiuru__ has joined #angularjs
[05:45:08] *** fotoflo has quit IRC
[05:46:35] *** aghiur___ has joined #angularjs
[05:46:54] *** aghiuru has quit IRC
[05:48:13] *** yeshacker has quit IRC
[05:48:35] *** aghiuru_ has quit IRC
[05:48:44] *** aghiuru has joined #angularjs
[05:48:46] *** tomfriedhof has joined #angularjs
[05:48:55] *** aghiuru__ has quit IRC
[05:49:11] *** Arc__ has quit IRC
[05:50:39] *** aghiuru_ has joined #angularjs
[05:50:48] *** tomfriedhof has quit IRC
[05:50:58] *** ron_frown has joined #angularjs
[05:51:07] *** illume has joined #angularjs
[05:52:29] *** aghiuru__ has joined #angularjs
[05:52:36] *** aghiur___ has quit IRC
[05:54:25] *** aghiuru has quit IRC
[05:54:28] *** aghiur___ has joined #angularjs
[05:55:55] *** aghiuru_ has quit IRC
[05:57:29] *** aghiuru has joined #angularjs
[05:58:18] *** aghiuru__ has quit IRC
[05:58:22] *** aghiuru_ has joined #angularjs
[06:00:02] *** aghiur___ has quit IRC
[06:00:17] *** aghiuru__ has joined #angularjs
[06:00:39] *** brodul has joined #angularjs
[06:00:43] *** hefox has quit IRC
[06:01:55] *** ycon_ has quit IRC
[06:02:00] *** aghiuru has quit IRC
[06:02:06] *** aghiur___ has joined #angularjs
[06:03:35] *** aghiuru_ has quit IRC
[06:03:59] *** aghiuru has joined #angularjs
[06:04:02] *** illume has quit IRC
[06:05:31] *** shoelessone has joined #angularjs
[06:05:35] *** aghiuru__ has quit IRC
[06:06:00] *** aghiuru_ has joined #angularjs
[06:06:11] *** Aliks has joined #angularjs
[06:06:48] *** illume has joined #angularjs
[06:06:48] *** kvnm has joined #angularjs
[06:07:48] *** aghiur___ has quit IRC
[06:07:58] *** aghiuru__ has joined #angularjs
[06:08:59] *** asteele has quit IRC
[06:09:13] *** macabre has quit IRC
[06:09:38] *** aghiuru has quit IRC
[06:09:45] *** aghiuru has joined #angularjs
[06:09:55] *** shoelessone has quit IRC
[06:11:26] *** aghiuru_ has quit IRC
[06:11:47] *** aghiuru_ has joined #angularjs
[06:12:27] *** smccarthy has joined #angularjs
[06:12:45] *** baweaver has joined #angularjs
[06:13:05] *** rho has quit IRC
[06:13:19] *** SomeKittens has quit IRC
[06:13:46] *** aghiur___ has joined #angularjs
[06:13:50] *** aghiuru__ has quit IRC
[06:15:20] *** aghiuru has quit IRC
[06:15:37] *** aghiuru has joined #angularjs
[06:17:19] *** ril has joined #angularjs
[06:17:20] *** aghiuru_ has quit IRC
[06:17:37] *** aghiuru_ has joined #angularjs
[06:18:38] *** rickmak has joined #angularjs
[06:19:11] *** aghiur___ has quit IRC
[06:19:31] *** aghiuru__ has joined #angularjs
[06:21:06] *** aghiuru has quit IRC
[06:21:22] *** aghiuru has joined #angularjs
[06:22:56] *** aghiuru_ has quit IRC
[06:23:22] *** aghiuru_ has joined #angularjs
[06:23:54] *** ril has quit IRC
[06:23:59] *** fedenunez has quit IRC
[06:25:03] *** aghiuru__ has quit IRC
[06:25:21] *** aghiuru__ has joined #angularjs
[06:26:46] *** aghiuru has quit IRC
[06:27:11] *** aghiuru has joined #angularjs
[06:27:52] *** rickmak has quit IRC
[06:29:11] *** aghiur___ has joined #angularjs
[06:29:20] *** aghiuru_ has quit IRC
[06:30:18] *** rickmak_ has joined #angularjs
[06:30:31] *** codeitloadit has joined #angularjs
[06:30:38] *** aghiuru__ has quit IRC
[06:30:48] *** macobo has joined #angularjs
[06:31:02] *** aghiuru_ has joined #angularjs
[06:31:07] *** Z3R0 has quit IRC
[06:32:42] *** aghiuru has quit IRC
[06:32:54] *** aghiuru has joined #angularjs
[06:34:02] *** illume has quit IRC
[06:34:35] *** aghiur___ has quit IRC
[06:34:36] *** juddey has quit IRC
[06:34:53] *** aghiuru__ has joined #angularjs
[06:34:57] *** MJD has quit IRC
[06:35:37] *** MJD has joined #angularjs
[06:36:51] *** aghiur___ has joined #angularjs
[06:36:56] *** aghiuru_ has quit IRC
[06:37:20] *** illume has joined #angularjs
[06:38:20] *** aghiuru has quit IRC
[06:38:36] *** aghiuru has joined #angularjs
[06:38:47] *** ril has joined #angularjs
[06:39:39] *** prbc has joined #angularjs
[06:40:08] *** MistahKurtz has quit IRC
[06:40:08] *** Aliks_ has joined #angularjs
[06:40:30] *** aghiuru__ has quit IRC
[06:40:38] *** aghiuru_ has joined #angularjs
[06:42:15] *** aghiur___ has quit IRC
[06:42:33] *** aghiuru__ has joined #angularjs
[06:43:15] *** Aliks has quit IRC
[06:43:22] *** punknroll has joined #angularjs
[06:43:48] *** aks has joined #angularjs
[06:44:24] *** aghiur___ has joined #angularjs
[06:44:32] *** aghiuru has quit IRC
[06:45:36] *** KAsp3rd has quit IRC
[06:46:05] *** rubyronin has joined #angularjs
[06:46:11] *** aghiuru_ has quit IRC
[06:46:23] *** aghiuru has joined #angularjs
[06:46:35] *** rubyronin has left #angularjs
[06:47:14] *** Oleander has quit IRC
[06:47:46] *** aghiuru__ has quit IRC
[06:47:51] *** smccarthy has quit IRC
[06:48:16] *** mdedetrich has quit IRC
[06:48:18] *** aghiuru_ has joined #angularjs
[06:48:31] *** hefox has joined #angularjs
[06:48:52] *** dszmaj has quit IRC
[06:49:36] *** suvdeep has joined #angularjs
[06:49:46] *** dszmaj has joined #angularjs
[06:50:01] *** jr3_ has quit IRC
[06:50:05] *** aghiur___ has quit IRC
[06:50:07] *** aghiuru__ has joined #angularjs
[06:50:18] *** mdedetrich has joined #angularjs
[06:51:20] *** rchavik_ has quit IRC
[06:51:38] *** aghiuru has quit IRC
[06:52:11] *** aghiuru has joined #angularjs
[06:52:51] *** lite_ has joined #angularjs
[06:53:18] *** VaticanCameos has joined #angularjs
[06:53:51] *** aghiuru_ has quit IRC
[06:54:04] *** aghiuru_ has joined #angularjs
[06:54:28] *** ron_frown has quit IRC
[06:55:08] *** ril has quit IRC
[06:55:26] *** aghiuru__ has quit IRC
[06:55:26] *** Renesansz has joined #angularjs
[06:55:49] *** Renesansz has quit IRC
[06:55:57] *** aghiuru__ has joined #angularjs
[06:57:12] *** aghiuru has quit IRC
[06:57:24] *** yeshacker has joined #angularjs
[06:57:57] *** aghiuru has joined #angularjs
[06:59:20] *** aghiuru_ has quit IRC
[06:59:51] *** aghiuru_ has joined #angularjs
[07:01:29] *** aghiuru__ has quit IRC
[07:01:42] *** aghiuru__ has joined #angularjs
[07:03:04] *** GeekJon has quit IRC
[07:03:31] *** GeekJon has joined #angularjs
[07:03:42] *** aghiur___ has joined #angularjs
[07:03:50] *** aghiuru has quit IRC
[07:04:25] *** codeitloadit has quit IRC
[07:05:15] *** aghiuru_ has quit IRC
[07:05:40] *** aghiuru has joined #angularjs
[07:06:19] *** shoelessone has joined #angularjs
[07:06:54] *** syphar has quit IRC
[07:07:20] *** Lowell has quit IRC
[07:07:24] *** kvnm has quit IRC
[07:07:25] *** ome has quit IRC
[07:07:28] *** ikevin_ has quit IRC
[07:07:28] *** kaseoga_ has quit IRC
[07:07:32] *** aghiuru_ has joined #angularjs
[07:07:35] *** erol has joined #angularjs
[07:07:48] *** rickmak_ has quit IRC
[07:07:58] *** aghiuru__ has quit IRC
[07:07:58] *** asilluron has quit IRC
[07:09:36] *** aghiuru__ has joined #angularjs
[07:09:40] *** aghiur___ has quit IRC
[07:10:04] *** rickmak_ has joined #angularjs
[07:10:22] *** ikevin_ has joined #angularjs
[07:10:26] *** asilluron has joined #angularjs
[07:10:40] *** Lowell has joined #angularjs
[07:10:45] *** syphar has joined #angularjs
[07:10:55] *** aghiuru has quit IRC
[07:11:04] *** rickmak_ has quit IRC
[07:11:25] *** shoelessone has quit IRC
[07:11:27] *** aghiuru has joined #angularjs
[07:11:32] *** kaseoga_ has joined #angularjs
[07:11:41] *** rickmak has joined #angularjs
[07:12:28] *** jun_ has quit IRC
[07:13:00] *** OnkelTem has quit IRC
[07:13:11] *** OnkelTem has joined #angularjs
[07:13:22] *** aghiur___ has joined #angularjs
[07:13:40] *** aghiuru_ has quit IRC
[07:14:11] *** Garfield-fr has joined #angularjs
[07:14:46] *** aghiuru__ has quit IRC
[07:14:47] *** phrozensilver has quit IRC
[07:15:23] *** aghiuru_ has joined #angularjs
[07:15:59] *** fotoflo has joined #angularjs
[07:17:09] *** aghiuru has quit IRC
[07:17:16] *** aghiuru has joined #angularjs
[07:18:05] *** doppio|Laptop is now known as doppio|Away
[07:18:59] *** doppio|Away is now known as doppio|Laptop
[07:19:07] *** aghiuru__ has joined #angularjs
[07:19:22] *** aghiur___ has quit IRC
[07:19:25] *** Ugolin has joined #angularjs
[07:19:32] *** dwyster has joined #angularjs
[07:20:03] *** aghiuru_ has quit IRC
[07:20:18] *** newbies_dev has joined #angularjs
[07:20:27] <newbies_dev> hello
[07:20:58] <newbies_dev> i try to do the routing
[07:21:08] *** aghiuru_ has joined #angularjs
[07:21:17] <newbies_dev> however i got stuck trying to link from one app to another app
[07:21:25] *** startupality has joined #angularjs
[07:21:40] *** marthinal has joined #angularjs
[07:21:52] *** iraj has joined #angularjs
[07:22:46] *** aghiuru has quit IRC
[07:23:02] *** aghiuru has joined #angularjs
[07:23:16] *** startupality has quit IRC
[07:23:29] *** Ugolin has quit IRC
[07:24:06] *** startupality has joined #angularjs
[07:24:27] *** diegoaguilar has joined #angularjs
[07:24:50] *** aghiuru__ has quit IRC
[07:24:53] *** aghiur___ has joined #angularjs
[07:25:21] *** Aliks_ has quit IRC
[07:26:02] *** Aliks has joined #angularjs
[07:26:35] *** aghiuru_ has quit IRC
[07:26:59] *** aghiuru_ has joined #angularjs
[07:28:50] *** aghiuru__ has joined #angularjs
[07:28:52] *** aghiuru has quit IRC
[07:28:52] *** hackel has quit IRC
[07:29:16] *** loplin has joined #angularjs
[07:29:37] *** newbies_dev has quit IRC
[07:30:29] *** aghiur___ has quit IRC
[07:30:42] *** aghiuru has joined #angularjs
[07:31:02] *** prbc has quit IRC
[07:31:30] *** ycon_ has joined #angularjs
[07:32:32] *** aghiuru_ has quit IRC
[07:32:40] *** aghiuru_ has joined #angularjs
[07:33:18] *** Danielyan has joined #angularjs
[07:33:41] *** Danielyan has quit IRC
[07:34:06] *** aghiuru__ has quit IRC
[07:34:36] *** aghiuru__ has joined #angularjs
[07:34:44] <C0nundrum> Anyone here ?
[07:34:55] <dodobrain> no
[07:35:00] * dodobrain hides
[07:35:18] <ycon_> Hallo
[07:35:20] *** illume has quit IRC
[07:35:39] <ycon_> help me get ng repeat working in two items side-by-side
[07:35:57] <ycon_> Wait, I could just use CSS blocks
[07:35:57] *** juro has joined #angularjs
[07:36:13] *** dodobrain has quit IRC
[07:36:29] *** aghiuru has quit IRC
[07:36:32] *** aghiur___ has joined #angularjs
[07:37:24] *** illume has joined #angularjs
[07:37:37] *** juddey has joined #angularjs
[07:38:23] *** aghiuru_ has quit IRC
[07:38:27] *** aghiuru has joined #angularjs
[07:40:06] *** aghiuru__ has quit IRC
[07:40:15] *** aghiuru_ has joined #angularjs
[07:40:54] *** aghiur___ has quit IRC
[07:41:33] *** empyreanx has quit IRC
[07:42:22] *** aghiuru__ has joined #angularjs
[07:42:46] *** aghiuru has quit IRC
[07:44:12] *** aghiuru has joined #angularjs
[07:44:42] *** aghiuru_ has quit IRC
[07:44:46] *** rickmak has quit IRC
[07:45:46] *** rickmak has joined #angularjs
[07:45:48] *** mdedetrich has quit IRC
[07:45:52] *** kvnm has joined #angularjs
[07:46:10] *** suvdeepb has joined #angularjs
[07:46:10] <C0nundrum> Anyone know how to use angular's animation stutter implementation ?
[07:46:11] *** aghiuru_ has joined #angularjs
[07:46:20] *** Z3R0 has joined #angularjs
[07:46:28] *** mdedetrich has joined #angularjs
[07:46:34] *** aghiuru__ has quit IRC
[07:46:48] *** kvnm has quit IRC
[07:47:26] *** suvdeep has quit IRC
[07:47:29] *** doppio|Laptop has quit IRC
[07:48:01] *** aghiuru__ has joined #angularjs
[07:48:37] *** juro has quit IRC
[07:48:44] *** aghiuru has quit IRC
[07:49:18] *** kvnm has joined #angularjs
[07:49:50] <C0nundrum> acutally nvm figured it out
[07:49:59] *** aghiuru has joined #angularjs
[07:50:14] <C0nundrum> how do i the wdith of an angular element i tried clientWidth but it wasn't accurate
[07:50:18] *** doppio has quit IRC
[07:50:26] *** aghiuru_ has quit IRC
[07:50:45] *** sun has joined #angularjs
[07:51:55] *** aghiuru_ has joined #angularjs
[07:52:25] *** mdedetrich has quit IRC
[07:52:33] <C0nundrum> neither was getBoundingClientRect()
[07:52:48] *** aghiuru__ has quit IRC
[07:54:17] *** aghiuru has quit IRC
[07:55:02] *** tristanp has quit IRC
[07:55:24] *** jun_ has joined #angularjs
[07:56:24] *** aghiuru_ has quit IRC
[07:57:32] *** george_v has joined #angularjs
[07:58:04] *** tristanp has joined #angularjs
[07:58:19] *** Leon has joined #angularjs
[07:58:52] *** kvnm has quit IRC
[08:01:36] *** diffalot has quit IRC
[08:02:17] *** jun_ has quit IRC
[08:02:27] *** diffalot has joined #angularjs
[08:02:35] *** SET002 has quit IRC
[08:03:51] *** diegoaguilar has quit IRC
[08:04:28] *** baweaver has quit IRC
[08:05:23] *** drag0niu1 has joined #angularjs
[08:05:26] *** suvdeepb has quit IRC
[08:06:00] *** illume_ has joined #angularjs
[08:06:09] *** illume has quit IRC
[08:06:13] *** suvdeepb has joined #angularjs
[08:07:05] *** shoelessone has joined #angularjs
[08:08:35] *** drag0nius has quit IRC
[08:10:02] *** robdubya has joined #angularjs
[08:11:10] *** dopesong has joined #angularjs
[08:11:46] *** shoelessone has quit IRC
[08:11:52] *** p0k0 has joined #angularjs
[08:13:10] *** jdo_dk has joined #angularjs
[08:13:42] *** startupality has quit IRC
[08:14:23] *** speeddragon has joined #angularjs
[08:14:24] *** mac_ified has quit IRC
[08:14:47] *** juro has joined #angularjs
[08:14:57] <jdo_dk> V123.net
[08:16:45] *** dopesong has quit IRC
[08:17:06] *** suvdeepb has quit IRC
[08:17:34] *** ahaeger has joined #angularjs
[08:18:13] *** suvdeepb has joined #angularjs
[08:18:46] *** speeddragon has quit IRC
[08:19:04] *** soee_ has joined #angularjs
[08:21:16] *** macabre has joined #angularjs
[08:21:47] *** svycka has joined #angularjs
[08:23:24] *** yanivkalfa has joined #angularjs
[08:24:06] *** suvdeepb has quit IRC
[08:25:17] *** tuskkk___ has quit IRC
[08:25:35] *** macabre has quit IRC
[08:25:40] *** sbellina has quit IRC
[08:26:14] *** drag0nius has joined #angularjs
[08:28:58] *** Tennis has quit IRC
[08:29:25] *** Tennis has joined #angularjs
[08:29:35] *** drag0niu1 has quit IRC
[08:29:35] *** Aliks has quit IRC
[08:29:39] *** Aliks_ has joined #angularjs
[08:30:14] *** robdubya has quit IRC
[08:33:21] *** sbellina has joined #angularjs
[08:33:22] *** robdubya has joined #angularjs
[08:33:32] *** yky_ has joined #angularjs
[08:35:25] *** Aliks_ has quit IRC
[08:36:37] *** tuskkk___ has joined #angularjs
[08:36:54] *** george_v has quit IRC
[08:37:09] *** hefox has quit IRC
[08:37:43] *** xwid has joined #angularjs
[08:37:48] <wafflejock> C0nundrum: usually can use offsetWidth on the DOM Node itself
[08:39:44] *** george_v has joined #angularjs
[08:40:35] *** yanivkalfa has quit IRC
[08:41:17] *** icebox has joined #angularjs
[08:43:37] *** Z3R0 has quit IRC
[08:47:48] *** juro has quit IRC
[08:48:05] *** fscala has quit IRC
[08:48:18] *** juro has joined #angularjs
[08:50:53] *** fscala has joined #angularjs
[08:52:47] *** rscata has joined #angularjs
[08:53:38] *** ayan_ has joined #angularjs
[08:54:21] *** hi has joined #angularjs
[08:54:24] <ayan_> can anybody help me over using bootstrap with angularjs
[08:54:36] <hi> i need help with paypal
[08:54:40] <hi> integration
[08:54:43] <hi> in angularjs
[08:54:45] *** hi is now known as Guest97602
[08:54:58] *** yanivkalfa has joined #angularjs
[08:54:59] *** tarnus has quit IRC
[08:55:09] *** dopesong has joined #angularjs
[08:55:12] <Guest97602> i need help with paypal integration in angularjs
[08:55:17] *** juro has quit IRC
[08:55:52] *** kk_drop has joined #angularjs
[08:55:55] <ayan_> as far as I know , bootstrap needs jQuery for the responsive design to become full-fledged . but we cant use jQuery along with angular js
[08:56:01] *** plekplek has joined #angularjs
[08:56:08] *** Aliks has joined #angularjs
[08:56:10] *** start has joined #angularjs
[08:56:14] *** Ugolin has joined #angularjs
[08:56:24] <ayan_> so any alternative solution to bring the responsive design using angularjs
[08:56:25] <ayan_> ?
[08:56:51] *** asteele has joined #angularjs
[08:57:08] *** start has quit IRC
[08:57:42] <robdubya> did you trying googling "angular bootstrap"
[08:58:26] <robdubya> because literally the first result is https://angular-ui.github.io/bootstrap/
[08:58:46] *** nya_ has quit IRC
[08:58:50] *** ahhhndi has joined #angularjs
[08:58:54] *** nya has joined #angularjs
[08:58:57] *** marthinal has quit IRC
[08:59:07] *** mosulica has joined #angularjs
[08:59:18] *** nya is now known as Guest36763
[09:00:25] *** GetzelR has joined #angularjs
[09:00:30] *** dopesong has quit IRC
[09:00:53] *** jdo_dk has left #angularjs
[09:01:18] *** Aliks has quit IRC
[09:02:52] <ayan_> yeah I tried but that ui-angular-bootstrap is not serving my purpose
[09:03:12] *** dopesong has joined #angularjs
[09:04:26] *** dutis has joined #angularjs
[09:04:43] <ayan_> just for the sake of a single task, taking another dependency is not what I want. is there any alternative solution which wont take dependency , will work on existing bootstrap and angular.min.js?
[09:05:07] <icebox> ayan_: angularjs and bootstrap are not exclusive
[09:05:36] <icebox> ayan_: import jquery, angularjs, bootstrap and you are in business for your use case
[09:05:46] *** ahaeger has quit IRC
[09:06:09] <ayan_> there wont be any problem having jQuery and Angularjs at the same time ?@icebox
[09:06:14] <icebox> ayan_: no
[09:06:23] <ayan_> thanks a lot
[09:06:41] *** TyrfingMjolnir has joined #angularjs
[09:07:01] *** robdubya has quit IRC
[09:07:23] *** xyz__ has joined #angularjs
[09:07:48] *** shoelessone has joined #angularjs
[09:07:49] *** ahhhndi has quit IRC
[09:07:57] *** dopesong has quit IRC
[09:08:13] *** xyz__ has quit IRC
[09:10:24] *** ahaeger has joined #angularjs
[09:11:00] *** kvnm has joined #angularjs
[09:11:00] *** dpicky has quit IRC
[09:12:01] *** DoubleAW has joined #angularjs
[09:12:10] *** fees has joined #angularjs
[09:12:20] *** shoelessone has quit IRC
[09:14:30] *** dszmaj has quit IRC
[09:14:46] *** Karotte has joined #angularjs
[09:14:58] *** Ugolin has quit IRC
[09:15:22] *** dszmaj has joined #angularjs
[09:17:03] *** jstroem has joined #angularjs
[09:19:23] *** Karotte_ has joined #angularjs
[09:19:37] *** Karotte has left #angularjs
[09:19:40] *** Karotte_ has quit IRC
[09:20:03] *** Karotte has joined #angularjs
[09:20:07] *** Karotte_ has joined #angularjs
[09:20:14] *** brollypop has joined #angularjs
[09:20:22] *** imZEH has joined #angularjs
[09:20:23] *** Dmitri has joined #angularjs
[09:20:27] *** Karotte has quit IRC
[09:21:22] *** illume_ has quit IRC
[09:21:58] *** imZEH has quit IRC
[09:23:44] *** illume has joined #angularjs
[09:25:29] *** Poppabear has quit IRC
[09:25:55] *** juddey has quit IRC
[09:26:08] *** dutis has joined #angularjs
[09:27:03] <wafflejock> icebox: ayan_ that's not true entirely there will be issues with how bootstrap.js runs that's why ui-bootstrap (and angular-strap) exists, the bootstrap.css won't cause any problems but in terms of handling the changes that need to be done to the DOM with JS it requires using directives to work properly with angular
[09:27:49] <wafflejock> you can certainly fill some of the gaps yourself like the navigation is pretty easy to implement yourself just using ng-class and ng-click but other components require more work
[09:27:59] <C0nundrum> wafflejock
[09:28:04] <wafflejock> o/
[09:28:08] <icebox> wafflejock: sure... the premise was... "if you know how to do it" :)
[09:28:16] <C0nundrum> were you the one who told me about angular.extend ?
[09:28:27] <wafflejock> C0nundrum: I don't think so but I'm aware of it
[09:28:48] *** moep has joined #angularjs
[09:28:59] <C0nundrum> while i got my sliding animited table working
[09:29:09] <C0nundrum> the problem i have now is that the model thats it using
[09:29:10] <icebox> C0nundrum: at last! nice!
[09:29:19] <C0nundrum> ikr
[09:29:34] <C0nundrum> so happy except for this last bug which has to do with loosing the reference i think
[09:30:52] *** Bayangan has joined #angularjs
[09:31:01] *** Hounddog has joined #angularjs
[09:31:06] *** Poppabear has joined #angularjs
[09:31:07] *** Poppabear has joined #angularjs
[09:31:12] *** Mizar has joined #angularjs
[09:31:27] <wafflejock> I gotta crash out for the night have to be up at a relatively normal person time
[09:31:53] *** tristanp has quit IRC
[09:32:07] *** AndrewIsh has joined #angularjs
[09:32:44] <C0nundrum> man you linking to the animation.css page and the one to get it to work with angular solved 99% of my problems :)
[09:33:26] *** Mizar has left #angularjs
[09:33:45] <wafflejock> ah cool glad that worked out, if you're still having whatever bug tomorrow can take a look but too tired now to think straight
[09:34:04] *** tom_ has joined #angularjs
[09:34:11] <C0nundrum> yea np man you saved me for today :)
[09:34:30] <tom_> wow
[09:34:55] *** davi has joined #angularjs
[09:34:56] *** davi has joined #angularjs
[09:35:10] *** illume has quit IRC
[09:35:30] *** tom_ has quit IRC
[09:35:32] *** startupality has joined #angularjs
[09:36:03] *** ayan_ has quit IRC
[09:36:23] *** pimlu has joined #angularjs
[09:36:40] *** yanivkalfa has quit IRC
[09:37:13] *** Guest97602 has quit IRC
[09:38:20] *** yanivkalfa has joined #angularjs
[09:39:06] *** joshontheweb has quit IRC
[09:39:29] *** rani has joined #angularjs
[09:40:20] *** Slizz3r has joined #angularjs
[09:40:45] *** Slizz3r has joined #angularjs
[09:41:23] *** airtonix has joined #angularjs
[09:43:12] <C0nundrum> icebox still there ?
[09:43:26] *** DavidDudson has quit IRC
[09:45:11] *** marthinal has joined #angularjs
[09:46:24] <C0nundrum> in my directive children doubles every iteration thats my problem just not sure why O.o
[09:47:53] *** rani has quit IRC
[09:48:52] <C0nundrum> ah so remove() isn't working
[09:49:07] *** mchammer has joined #angularjs
[09:49:40] *** dopesong has joined #angularjs
[09:49:51] <C0nundrum> see any reason remove() shouldn't work here ? http://pastebin.com/vvEixxVb
[09:50:05] *** guilbep has joined #angularjs
[09:50:24] *** d3m0n has joined #angularjs
[09:50:25] *** d3m0n has joined #angularjs
[09:50:49] *** Slizz3r has quit IRC
[09:51:13] *** Guest36763 has quit IRC
[09:51:33] *** nya has joined #angularjs
[09:51:57] *** nya is now known as Guest87894
[09:52:16] *** Slizz3r has joined #angularjs
[09:52:47] *** cacts has quit IRC
[09:53:32] *** ycon_ has quit IRC
[09:54:45] *** dopesong has quit IRC
[09:55:52] <icebox> C0nundrum: sorry... I am here, but I am busy
[09:55:59] *** ahhhndi has joined #angularjs
[09:56:05] *** drager has quit IRC
[09:56:09] *** soee has joined #angularjs
[09:56:11] *** erms has joined #angularjs
[09:57:16] *** drager has joined #angularjs
[09:58:14] *** Atul has joined #angularjs
[09:58:20] *** senayar has joined #angularjs
[09:58:21] *** senayar has quit IRC
[09:58:21] *** senayar has joined #angularjs
[09:58:55] <Atul> hi
[09:59:36] *** Atul has left #angularjs
[09:59:44] *** soee_ has quit IRC
[10:00:29] *** dpicky has joined #angularjs
[10:01:51] *** c00ljs has joined #angularjs
[10:01:51] *** Aliks has joined #angularjs
[10:01:56] *** jlebrech has joined #angularjs
[10:02:20] *** yanivkalfa has quit IRC
[10:04:08] *** Daerist has joined #angularjs
[10:04:30] *** Slizz3r has quit IRC
[10:04:48] *** juro has joined #angularjs
[10:04:52] *** PeterBooker has joined #angularjs
[10:05:05] *** baweaver has joined #angularjs
[10:05:35] *** juro has quit IRC
[10:06:25] *** Aliks has quit IRC
[10:06:39] *** c00ljs has quit IRC
[10:06:55] *** ahaeger has quit IRC
[10:07:06] *** lnrdo has joined #angularjs
[10:07:33] *** aks has quit IRC
[10:07:59] *** drptbl has joined #angularjs
[10:08:14] *** drager has quit IRC
[10:09:03] *** drager has joined #angularjs
[10:09:16] *** Debnet has joined #angularjs
[10:09:55] *** kvnm has quit IRC
[10:10:36] *** \du has joined #angularjs
[10:10:36] *** \du has joined #angularjs
[10:11:38] *** aks has joined #angularjs
[10:11:43] *** vrockai has joined #angularjs
[10:11:51] *** baweaver has quit IRC
[10:13:26] *** drptbl has quit IRC
[10:13:27] *** Jone has joined #angularjs
[10:15:06] *** speeddragon has joined #angularjs
[10:16:55] *** Jone_ has joined #angularjs
[10:16:58] <Jone_> Hello all I am facing one interesting error with my directive communication from child to parent. I am really few step back from result but :( http://dojo.telerik.com/oHIrI
[10:17:08] *** drptbl has joined #angularjs
[10:17:38] *** devmetal has joined #angularjs
[10:17:49] *** b0x has quit IRC
[10:17:51] <devmetal> Hi all
[10:17:54] *** Jone has quit IRC
[10:18:08] *** b0x has joined #angularjs
[10:18:09] *** b0x has joined #angularjs
[10:18:41] <devmetal> Hi there. Somebody can help me a little?
[10:18:57] *** Aliks has joined #angularjs
[10:19:00] *** thatslifeson has quit IRC
[10:19:17] *** devmetal has quit IRC
[10:19:34] *** iraj has quit IRC
[10:19:52] *** speeddragon has quit IRC
[10:20:33] *** VaticanCameos has quit IRC
[10:22:14] *** bengillies has joined #angularjs
[10:22:23] *** bengillies has joined #angularjs
[10:22:27] *** mynameiswhat has joined #angularjs
[10:22:30] *** jONE has joined #angularjs
[10:22:31] <jONE> Hello all I am facing one interesting error with my directive communication from child to parent. I am really few step back from result but :( http://dojo.telerik.com/oHIrI
[10:23:35] *** davi has quit IRC
[10:25:36] *** Jone_ has quit IRC
[10:25:47] *** aks has quit IRC
[10:26:13] *** speeddragon has joined #angularjs
[10:26:35] *** illume has joined #angularjs
[10:26:46] *** juro has joined #angularjs
[10:28:50] *** Mohaideen has joined #angularjs
[10:28:59] <Mohaideen> JOIN
[10:29:15] <senayar> jONE: what is wrong inside your directive ?
[10:29:24] *** aks has joined #angularjs
[10:29:27] *** jONE has quit IRC
[10:29:55] *** DavidDudson has joined #angularjs
[10:32:02] *** speeddragon has quit IRC
[10:32:03] *** Mohaideen has quit IRC
[10:33:27] *** iraj has joined #angularjs
[10:34:04] *** VaticanCameos has joined #angularjs
[10:34:30] *** suvdeep has joined #angularjs
[10:37:13] *** ahhhndi has quit IRC
[10:37:51] *** Aliks has quit IRC
[10:39:12] *** ngbot has joined #angularjs
[10:39:13] <ngbot> [angular.js] petebacondarwin pushed 1 new commit to v1.3.x: http://git.io/v0bUm
[10:39:13] <ngbot> angular.js/v1.3.x ebc5a47 Peter Bacon Darwin: chore(npm-shrinkwrap): update protractor dependency
[10:39:13] *** ngbot has left #angularjs
[10:39:19] *** evilaliv3 has joined #angularjs
[10:40:08] *** fotoflo has quit IRC
[10:40:25] *** Seich has quit IRC
[10:42:05] *** qdk has quit IRC
[10:43:19] *** clivejo has joined #angularjs
[10:44:41] *** sbasso has joined #angularjs
[10:45:36] *** ahhhndi has joined #angularjs
[10:46:11] *** sbasso_ has joined #angularjs
[10:46:27] *** citizen-stig has quit IRC
[10:47:37] *** rickmak___ has joined #angularjs
[10:47:50] *** cotko has joined #angularjs
[10:48:35] *** step1ste_ has joined #angularjs
[10:49:00] *** tomphp has joined #angularjs
[10:49:33] *** juro has quit IRC
[10:49:35] *** sbasso has quit IRC
[10:49:46] *** rickmak has quit IRC
[10:49:46] *** rickmak___ is now known as rickmak
[10:50:15] *** davi has joined #angularjs
[10:50:15] *** davi has joined #angularjs
[10:50:33] *** d3m0n has quit IRC
[10:50:35] *** tomphp has quit IRC
[10:51:23] *** tomphp has joined #angularjs
[10:51:23] *** step1step2 has quit IRC
[10:54:38] *** amrit__ has joined #angularjs
[10:55:10] *** Bayangan has quit IRC
[10:55:41] *** tarnus has joined #angularjs
[10:57:19] *** Fiona has joined #angularjs
[10:57:58] *** Fiona has quit IRC
[10:59:11] *** Ron__ has joined #angularjs
[10:59:28] *** rickmak has quit IRC
[11:00:03] *** Ron__ has quit IRC
[11:00:40] *** tarnus has quit IRC
[11:02:56] *** drager has quit IRC
[11:07:44] *** illume has quit IRC
[11:08:00] *** DavidDudson has quit IRC
[11:09:36] *** shoelessone has joined #angularjs
[11:10:49] *** illume has joined #angularjs
[11:11:50] *** dopesong has joined #angularjs
[11:13:13] *** marr has joined #angularjs
[11:13:36] *** juro has joined #angularjs
[11:14:58] *** shoelessone has quit IRC
[11:18:36] *** yky_ has quit IRC
[11:20:58] *** squeakytoy2 has quit IRC
[11:22:29] *** squeakytoy2 has joined #angularjs
[11:24:15] *** evilaliv3 has quit IRC
[11:24:32] *** dopesong has quit IRC
[11:24:55] *** illume has quit IRC
[11:26:10] *** nya has joined #angularjs
[11:26:18] *** Guest87894 has quit IRC
[11:26:30] *** illume has joined #angularjs
[11:26:34] *** nya is now known as Guest4801
[11:27:03] *** speeddragon has joined #angularjs
[11:28:57] *** b0x has quit IRC
[11:30:08] *** speeddragon has quit IRC
[11:30:57] *** elsevero has joined #angularjs
[11:32:09] *** speeddragon has joined #angularjs
[11:32:13] *** empyreanx has joined #angularjs
[11:33:58] <lite_> tick tick tock
[11:34:15] *** dopesong has joined #angularjs
[11:34:20] *** startupality has quit IRC
[11:34:29] *** juro has quit IRC
[11:38:22] *** evilaliv3 has joined #angularjs
[11:38:28] *** TyrfingMjolnir has quit IRC
[11:38:38] *** senayar has quit IRC
[11:38:49] *** maikowblue has joined #angularjs
[11:39:15] *** davi has quit IRC
[11:41:33] *** d0x has joined #angularjs
[11:41:49] *** dan2k3k4 has joined #angularjs
[11:41:57] <d0x> i have problem for print json repeat on html :(
[11:42:05] *** dopesong has quit IRC
[11:42:47] *** aks has quit IRC
[11:43:53] *** asteele has quit IRC
[11:44:21] <d0x> http://pastebin.com/Abxf6eAQ
[11:49:54] *** aks has joined #angularjs
[11:50:04] *** senayar has joined #angularjs
[11:50:04] *** senayar has joined #angularjs
[11:50:13] *** lnrdo has quit IRC
[11:51:24] *** crusty has quit IRC
[11:51:31] *** crusty has joined #angularjs
[11:51:32] *** crusty has joined #angularjs
[11:51:46] *** ekarlso has quit IRC
[11:51:47] *** ekarlso has joined #angularjs
[11:53:42] *** smok3 has joined #angularjs
[11:53:51] *** illume has quit IRC
[11:54:17] *** illume has joined #angularjs
[11:54:21] *** lnrdo_ has joined #angularjs
[11:54:29] *** Meow-J has joined #angularjs
[11:54:38] *** dan2k3k4 has quit IRC
[11:55:36] *** c00ljs has joined #angularjs
[11:56:23] *** usman has joined #angularjs
[11:56:32] *** usman has left #angularjs
[12:01:02] *** startupality has joined #angularjs
[12:01:19] *** Magnusart has joined #angularjs
[12:01:41] *** rickmak has joined #angularjs
[12:02:04] *** Danielyan has joined #angularjs
[12:02:15] *** lnrdo_ has quit IRC
[12:07:49] *** smok3 has quit IRC
[12:09:02] *** startupality has quit IRC
[12:09:10] *** dan2k3k4 has joined #angularjs
[12:09:37] *** davi has joined #angularjs
[12:09:38] *** davi has joined #angularjs
[12:09:43] *** Magnusart has quit IRC
[12:10:22] *** shoelessone has joined #angularjs
[12:10:26] *** dan2k3k4 has quit IRC
[12:10:32] *** kvnm has joined #angularjs
[12:10:32] *** sbasso_ has quit IRC
[12:13:02] *** tiagoboldt has joined #angularjs
[12:13:17] *** juro has joined #angularjs
[12:13:49] *** vrockai has quit IRC
[12:14:13] *** tiagoboldt has quit IRC
[12:15:02] *** shoelessone has quit IRC
[12:15:07] *** tiagoboldt has joined #angularjs
[12:17:00] *** TyrfingMjolnir has joined #angularjs
[12:18:18] *** sbellina has quit IRC
[12:20:37] *** juro has quit IRC
[12:20:40] *** Vladimirski has joined #angularjs
[12:20:52] <Vladimirski> Could anyone recommend a good ionic or angular course on udemy?
[12:21:52] *** c00ljs has quit IRC
[12:28:15] *** davi has quit IRC
[12:29:52] *** ngbot has joined #angularjs
[12:29:52] <ngbot> [angular.js] lgalfaso pushed 1 new commit to master: http://git.io/v0baV
[12:29:52] <ngbot> angular.js/master b3ef5e0 thorn0: fix($q): make instanceof work for $q promises...
[12:29:53] *** ngbot has left #angularjs
[12:30:21] *** Swaps has joined #angularjs
[12:30:37] <Swaps> hi
[12:31:01] *** ngbot has joined #angularjs
[12:31:01] <ngbot> [angular.js] lgalfaso pushed 1 new commit to master: http://git.io/v0bVT
[12:31:01] <ngbot> angular.js/master 9877648 Alexander Zagumennikov: fix(ngInclude): do not compile template if original scope is destroyed...
[12:31:01] *** ngbot has left #angularjs
[12:31:18] *** illume has quit IRC
[12:31:27] *** Swaps has left #angularjs
[12:32:26] *** tristanp has joined #angularjs
[12:37:54] *** yanivkalfa has joined #angularjs
[12:38:18] *** yanivkalfa has joined #angularjs
[12:38:18] *** Leon has quit IRC
[12:38:26] *** vandyk has joined #angularjs
[12:38:38] *** mellernoia has joined #angularjs
[12:38:53] *** jlebrech has quit IRC
[12:38:58] *** tristanp has quit IRC
[12:41:05] *** dan2k3k4 has joined #angularjs
[12:41:46] *** NP_ has joined #angularjs
[12:42:18] *** c00ljs has joined #angularjs
[12:42:21] <NP_> How can i call Restful api in Angular 2.0 with javascript, not type script
[12:42:31] *** Aliks has joined #angularjs
[12:42:44] *** bengilli_ has joined #angularjs
[12:43:13] *** bengillies has quit IRC
[12:43:20] *** dpicky has quit IRC
[12:43:38] *** iceball has joined #angularjs
[12:43:44] <NP_> How can i call Restful api in Angular 2.0 with javascript, not type script
[12:44:06] *** drptbl has quit IRC
[12:44:56] *** LabCoatNomad has joined #angularjs
[12:45:05] *** NP_ has quit IRC
[12:45:45] *** aks has quit IRC
[12:46:01] *** madhums has joined #angularjs
[12:46:10] *** dan2k3k4 has quit IRC
[12:46:40] *** dopesong has joined #angularjs
[12:46:51] *** pellekrogholt has quit IRC
[12:47:33] *** drptbl has joined #angularjs
[12:47:40] *** madhums has quit IRC
[12:48:48] *** Aliks has quit IRC
[12:49:24] *** sbasso has joined #angularjs
[12:50:55] *** Danielyan has quit IRC
[12:52:05] *** dopesong has quit IRC
[12:52:26] *** illume has joined #angularjs
[12:55:29] *** yanivkalfa has quit IRC
[12:56:05] *** kk_drop has quit IRC
[12:56:31] *** illume has quit IRC
[12:56:48] *** TyrfingMjolnir has quit IRC
[12:57:00] *** tarnus has joined #angularjs
[13:00:42] *** one_zero has quit IRC
[13:02:00] *** tarnus has quit IRC
[13:05:16] *** Toto_ has joined #angularjs
[13:06:56] <Toto_> Hello everyone, since release of beta 0 I'm not able to use Observable, I use the 'fromEvent' observer but it doesn't work is someone knows why ?
[13:07:08] *** Morteza has joined #angularjs
[13:07:30] <Morteza> hello
[13:07:36] *** vandyk has quit IRC
[13:07:40] *** speeddragon has quit IRC
[13:08:25] *** Morteza has quit IRC
[13:08:57] *** fedenunez has joined #angularjs
[13:09:11] *** vesper_ has joined #angularjs
[13:09:23] *** speeddragon has joined #angularjs
[13:09:27] <vesper_> hi new to angularjs
[13:10:26] <vesper_> anyone?
[13:11:08] *** shoelessone has joined #angularjs
[13:11:16] *** elyssonmr has joined #angularjs
[13:13:17] *** Guest4801 has quit IRC
[13:13:38] *** nya_ has joined #angularjs
[13:14:30] *** illume has joined #angularjs
[13:14:46] *** Guest34129 has quit IRC
[13:15:27] *** tiagoboldt has quit IRC
[13:16:00] *** vesper_ has quit IRC
[13:16:00] *** shoelessone has quit IRC
[13:16:49] *** aks has joined #angularjs
[13:18:07] *** vandyk has joined #angularjs
[13:19:35] *** _matix has joined #angularjs
[13:20:02] *** Sadu has joined #angularjs
[13:20:18] *** corioliss has quit IRC
[13:20:40] *** yanivkalfa has joined #angularjs
[13:20:54] *** Sadu has quit IRC
[13:20:59] *** Christer|w has joined #angularjs
[13:21:07] *** yanivkalfa has joined #angularjs
[13:21:33] *** Christer|w_ has joined #angularjs
[13:21:34] *** Christer|w_ has joined #angularjs
[13:21:53] *** c00ljs has quit IRC
[13:22:35] *** c00ljs has joined #angularjs
[13:23:04] *** Leon has joined #angularjs
[13:23:12] *** yanivkalfa has joined #angularjs
[13:23:16] *** pellekrogholt has joined #angularjs
[13:23:21] *** yanivkalfa has quit IRC
[13:24:01] *** doodlehaus has joined #angularjs
[13:24:10] *** realies has quit IRC
[13:24:11] *** Christer has quit IRC
[13:24:16] *** Christer|w_ is now known as Christer
[13:25:00] *** realz has quit IRC
[13:25:17] *** realz has joined #angularjs
[13:25:19] *** skakri has quit IRC
[13:25:55] *** Christer|w has quit IRC
[13:26:22] *** yanivkalfa has joined #angularjs
[13:26:56] *** yanivkalfa has joined #angularjs
[13:27:15] *** simion314 has joined #angularjs
[13:28:26] <simion314> hi, how could I create a data binding or detect object change in angular but using Javascript and not inside templates
[13:29:18] *** realies has joined #angularjs
[13:29:18] *** realies has joined #angularjs
[13:29:37] *** anthony23 has joined #angularjs
[13:30:48] <anthony23> hello.... doe anyone know how to inject something similar to $interval service in Angular 2?
[13:30:53] <anthony23> *does
[13:32:35] *** jlebrech has joined #angularjs
[13:32:43] *** Kwoth has joined #angularjs
[13:33:01] <Kwoth> Hello
[13:33:15] <Kwoth> are there some angular 2 up-to-date tutorials with node server?
[13:33:55] <Kwoth> I used the code from the tutorial, it works fine with lite-server but i don't know how to include those files from the html because they are being targeted in the node_modules
[13:33:55] *** Karotte_ has quit IRC
[13:34:26] <Kwoth> i don't want to serve static files from my node_modules folder >.<
[13:35:34] *** fedenunez has quit IRC
[13:35:35] *** dpicky has joined #angularjs
[13:38:49] <anthony23> Kwoth: why not make the node_modules form that you use for public different than the back office one? that's what I'm doing
[13:39:04] <anthony23> folder, not form sorry
[13:39:45] *** d0x has quit IRC
[13:39:52] *** senayar has quit IRC
[13:40:05] *** illume has quit IRC
[13:40:26] *** senayar has joined #angularjs
[13:42:02] *** fedenunez has joined #angularjs
[13:42:05] *** qdk has joined #angularjs
[13:42:25] *** quakephil has joined #angularjs
[13:42:25] *** skakri has joined #angularjs
[13:42:31] *** p0k0 has quit IRC
[13:42:54] <icebox> Kwoth: hey
[13:43:44] <Kwoth> anthony23: oh that is a good idea actually!
[13:43:47] *** illume has joined #angularjs
[13:44:02] <Kwoth> anthony23: i will do npm init in public folder
[13:44:13] <Kwoth> icebox: yo
[13:44:39] <anthony23> Kwoth: what I did was simply set the index html in the same directory as the node_modules, then installed the real back office one directory behind that
[13:44:41] *** lmatteis has quit IRC
[13:44:44] *** senayar has quit IRC
[13:44:59] *** senayar has joined #angularjs
[13:45:08] *** marthinal has quit IRC
[13:45:29] <Kwoth> yes that is what i will do too
[13:45:30] <Kwoth> thx
[13:45:38] <anthony23> Kwoth: you're welcome
[13:45:45] *** doodlehaus has quit IRC
[13:46:26] <anthony23> Kwoth: the docs are not fully good yet, have to search the web and even open the source to figure out some stuff as of now
[13:46:35] *** lmatteis has joined #angularjs
[13:47:17] <Kwoth> Api changed so much in the recent months, I hope beta will be much less volatile :)
[13:50:08] *** above has quit IRC
[13:51:26] *** skakri has quit IRC
[13:51:46] *** aghiuru has joined #angularjs
[13:52:13] *** above has joined #angularjs
[13:54:19] *** VeeWee has joined #angularjs
[13:54:22] *** Meow-J has quit IRC
[13:54:59] *** speeddragon has quit IRC
[13:55:00] *** skakri has joined #angularjs
[13:57:23] *** ngbot has joined #angularjs
[13:57:23] <ngbot> [angular.js] lgalfaso pushed 1 new commit to master: http://git.io/v0bjB
[13:57:23] <ngbot> angular.js/master dec8a0e thorn0: refactor($parse): remove unused variables...
[13:57:23] *** ngbot has left #angularjs
[13:57:25] *** nya_ has quit IRC
[13:57:51] *** nya_ has joined #angularjs
[13:59:39] *** shiriru has joined #angularjs
[13:59:46] *** fedenunez has quit IRC
[14:00:26] *** tarnus has joined #angularjs
[14:00:37] *** kk_drop has joined #angularjs
[14:00:53] *** Toto_ has quit IRC
[14:01:08] *** Debnet`Work has joined #angularjs
[14:01:32] *** c00ljs has quit IRC
[14:01:48] *** Debnet has quit IRC
[14:02:16] *** nya_ has quit IRC
[14:02:45] *** aks has quit IRC
[14:03:26] *** kuadrosx has quit IRC
[14:04:53] *** aks has joined #angularjs
[14:06:03] *** Debnet`Work has quit IRC
[14:06:26] *** suvdeep has quit IRC
[14:06:58] *** c00ljs has joined #angularjs
[14:08:17] *** _matix has quit IRC
[14:08:30] *** kk_drop has quit IRC
[14:08:59] *** anthony23 has quit IRC
[14:09:00] *** baweaver has joined #angularjs
[14:09:49] *** Arc__ has joined #angularjs
[14:10:00] *** aks has quit IRC
[14:10:02] <Arc__> can someone help me with a simple problem with ui-router?
[14:10:39] <Arc__> whenever i refresh on http://site.com/#/... my view doesn't reload
[14:10:48] *** k1ng4400 has joined #angularjs
[14:10:49] *** k1ng4400 has joined #angularjs
[14:10:52] <Arc__> ideas?
[14:11:17] *** illume_ has joined #angularjs
[14:11:19] <Arc__> but if i refresh on http://site.com/ - the view *does* reload
[14:11:40] *** illume has quit IRC
[14:11:54] *** shoelessone has joined #angularjs
[14:12:07] <Arc__> argh! nevermind just figured it out
[14:12:24] <Arc__> i had url: ''... had to change it to url: '/'
[14:12:46] *** codegenie has joined #angularjs
[14:12:46] *** codegenie has joined #angularjs
[14:13:02] *** aks has joined #angularjs
[14:13:12] *** laraveltoohard has joined #angularjs
[14:13:29] *** baweaver has quit IRC
[14:14:44] *** k1ng440 has quit IRC
[14:16:06] *** jdo_dk has joined #angularjs
[14:16:26] *** k1ng4400 has quit IRC
[14:16:38] *** shoelessone has quit IRC
[14:16:58] <jdo_dk> I have this service/resource: https://dpaste.de/OjVx when i hit User.auth.login() i dont see the Authorization or Test headers. Am i missing something ?
[14:17:53] *** Dmitri has quit IRC
[14:19:11] *** FIFOd has joined #angularjs
[14:20:10] *** marr has quit IRC
[14:23:01] *** Vladimirski has quit IRC
[14:23:44] *** Vladimirski has joined #angularjs
[14:24:04] *** FIFOd has quit IRC
[14:24:05] *** laraveltoohard has quit IRC
[14:24:30] *** aghiuru has quit IRC
[14:25:17] *** tuskkk___ has quit IRC
[14:26:38] *** svycka has quit IRC
[14:27:37] *** delgiudices has joined #angularjs
[14:28:01] <delgiudices> Why if i use ng-options the default value ofr a select is not set
[14:28:11] <delgiudices> But if i put the options in the html directly it is
[14:28:18] *** morissette has joined #angularjs
[14:30:09] <icebox> jdo_dk: missing return data;
[14:30:58] <icebox> jdo_dk: and I think headers is an object not an array
[14:33:33] *** c00ljs has quit IRC
[14:34:02] *** sylvainpv has joined #angularjs
[14:35:33] *** Riidio has joined #angularjs
[14:36:27] *** rv has joined #angularjs
[14:36:41] *** diegoaguilar has joined #angularjs
[14:37:07] *** anthony23 has joined #angularjs
[14:37:11] *** c00ljs has joined #angularjs
[14:37:12] *** dopesong has joined #angularjs
[14:38:11] *** kp666 has joined #angularjs
[14:39:01] *** kp666 has joined #angularjs
[14:39:51] *** kp666 has joined #angularjs
[14:39:58] *** kp666 has quit IRC
[14:40:34] *** kp666 has joined #angularjs
[14:40:40] *** raijin has joined #angularjs
[14:40:50] *** kp666 has quit IRC
[14:41:33] *** kp666 has joined #angularjs
[14:42:04] *** pimlu has quit IRC
[14:43:44] *** sylvainpv has quit IRC
[14:44:13] *** kp666 has quit IRC
[14:44:45] *** kp666 has joined #angularjs
[14:45:14] *** kp666 has quit IRC
[14:45:15] *** Dmitri has joined #angularjs
[14:45:22] *** RangerRick has joined #angularjs
[14:47:14] *** kp666 has joined #angularjs
[14:47:59] *** nya_ has joined #angularjs
[14:49:12] *** dk_ has joined #angularjs
[14:49:52] *** batch4225 has joined #angularjs
[14:50:10] *** Danielyan has joined #angularjs
[14:51:18] *** kp666 has joined #angularjs
[14:51:39] <dk_> hi
[14:52:08] *** mosulica has quit IRC
[14:52:33] *** speeddragon has joined #angularjs
[14:53:06] *** tplaner has joined #angularjs
[14:53:21] * dk_ slaps Atlas around a bit with a large fishbot
[14:54:02] *** dk_ has quit IRC
[14:55:11] *** VeeWee has quit IRC
[14:55:45] *** illume_ has quit IRC
[14:56:00] <merpnderp> why would ng-pattern="/\d+/" keep the ng-model from ever having a value in an input?
[14:58:20] *** encryptd_fractal has joined #angularjs
[14:58:37] *** davi has joined #angularjs
[14:58:38] *** davi has joined #angularjs
[14:58:41] *** bayousoft has joined #angularjs
[14:58:42] *** illume has joined #angularjs
[14:59:26] *** sixr420 has quit IRC
[14:59:28] *** airtonix has quit IRC
[15:01:00] *** raijin has quit IRC
[15:01:49] *** step1ste_ has quit IRC
[15:01:49] *** peterR`` has joined #angularjs
[15:02:14] *** step1step2 has joined #angularjs
[15:02:40] *** lite_ has quit IRC
[15:02:52] *** zeezey has quit IRC
[15:03:31] *** ESpiney has joined #angularjs
[15:03:55] *** crusty has quit IRC
[15:05:05] *** airtonix has joined #angularjs
[15:05:41] <batch4225> i don't know that it would merpnderp
[15:05:50] *** yeshacker has quit IRC
[15:05:55] <batch4225> i thought ng-pattern was purely for validation's sake
[15:06:17] <batch4225> like if the pattern does or does not match the ng-valid ng-invalid classes would be added
[15:06:19] <batch4225> is that not the case?
[15:06:24] <merpnderp> batch4225: if I remove the ng-pattern my test {{search.inputField}} shows text when I type. When I keep the ng-pattern nothing shows up even though there is text int he field.
[15:06:26] *** fscala has quit IRC
[15:06:44] <merpnderp> batch4225: it appears there's some sort of issue, at least in my version of angular.
[15:06:52] *** devPaul has joined #angularjs
[15:07:04] <merpnderp> But I remove the ng-pattern the ng-model is populated. Put it in, the ng-model never gets the value int he input field.
[15:07:18] <batch4225> lets step back a sec, what are you trying to do?
[15:07:24] *** Debnet has joined #angularjs
[15:07:38] <batch4225> you have a field
[15:07:49] <batch4225> and you want it to show a default value?
[15:07:50] <merpnderp> I have 3 search fields, search.pcn/gem/keyword
[15:07:51] *** DV8_ has joined #angularjs
[15:07:55] *** davi has quit IRC
[15:08:01] <merpnderp> Each one has an ng-pattern to validate it's content.
[15:08:06] *** mandric has joined #angularjs
[15:08:07] *** crusty has joined #angularjs
[15:08:08] *** crusty has joined #angularjs
[15:08:18] <batch4225> so you have three fields
[15:08:23] *** fscala has joined #angularjs
[15:08:24] *** {DV8} has quit IRC
[15:08:54] <merpnderp> yes, all part of search = {pcn..., keyword..., gem}
[15:08:59] *** vrockai has joined #angularjs
[15:09:09] <batch4225> and what do you want to have happen when the user types in the first fielt
[15:09:11] <batch4225> field
[15:09:29] <merpnderp> Here's the actual line of code
[15:09:31] <merpnderp> <input class="form-control" ng-disabled="search.keyword || search.gem" ng-pattern="/^\d+$/" ng-model="search.pcn" />
[15:10:02] <batch4225> ok
[15:10:19] <merpnderp> Each field will disable the other two, and then if the field has an error, I set an error css for the form-group
[15:10:24] <merpnderp> using bootstrap
[15:10:38] <batch4225> so if you inspect that field
[15:10:45] <batch4225> without entering anything
[15:10:52] <batch4225> it is pristine
[15:11:06] <batch4225> you start to type something
[15:11:07] <merpnderp> batch4225: I'm an idiot
[15:11:11] <merpnderp> really, just really dumb
[15:11:16] *** Dmitri has quit IRC
[15:11:18] <merpnderp> I never tested it with valid data
[15:11:20] *** george_v has quit IRC
[15:11:25] <batch4225> ahhh
[15:11:32] <batch4225> great
[15:11:33] <merpnderp> if the ng-pattern doesn't match the ng-model never gets populated.
[15:11:35] <batch4225> so it works
[15:11:49] <batch4225> nice man!
[15:11:52] <batch4225> or girl!
[15:11:54] <merpnderp> if it matches, the ng-model gets populated
[15:11:58] <batch4225> awesome
[15:12:09] <batch4225> and when it doesn't the input gets flagged as invalid?
[15:12:12] *** c00ljs has quit IRC
[15:12:13] *** Riidio has quit IRC
[15:12:24] <merpnderp> Yeah what is IRC protocol on not knowing gender? (deflecting from my really horribly embarrassing mistake).
[15:12:41] <merpnderp> batch4225: yes, works perfectly
[15:12:44] *** shoelessone has joined #angularjs
[15:12:48] *** c00ljs has joined #angularjs
[15:12:53] *** illume has quit IRC
[15:13:17] <batch4225> that is great man
[15:13:27] <batch4225> its all good dude, better to have those kinds of problems
[15:13:34] <merpnderp> yeah
[15:13:49] <merpnderp> no kidding
[15:13:51] <batch4225> i wish my issue was similar
[15:14:04] <batch4225> i am trying to load a bunch of images and content via json
[15:14:20] <merpnderp> oh, that sounds like a sticky problem.
[15:14:32] <batch4225> i can get everything just fine
[15:14:43] <batch4225> the problem is i need to get the images to work in a carousel
[15:14:57] <batch4225> but the carousel jquery is firing before the json is delivered
[15:15:56] *** Christer has quit IRC
[15:16:00] <merpnderp> I don't know about the jquery carousel, but are you setting its values in the json request callback?
[15:16:17] *** PentLab has joined #angularjs
[15:16:26] *** Slizz3r has joined #angularjs
[15:17:22] <batch4225> yes
[15:18:30] <batch4225> like http.get(somejsonfile.json).success(function(data){ $scope.crap = data;}).error(function(data){console.log("errrrrr");});
[15:18:46] *** gambl0re has quit IRC
[15:19:31] <PentLab> that doesnt seem right
[15:20:29] *** VaticanCameos has quit IRC
[15:20:30] <merpnderp> batch4225: I don't thihnk you can set jquery elements inside a digest cycle
[15:20:41] *** doodlehaus has joined #angularjs
[15:21:18] <merpnderp> you'd need something like http.get(somejsonfile.json).success(function(data){ $('#mycarasoulupdateel').src=data.image[0].url;}
[15:22:28] <merpnderp> there have to be some sort of methods jquery needs to run on the elements when images are added. Maybe run all the jquery code after all the images have been added to the dom
[15:22:50] <batch4225> thats what i have been trying to figure out
[15:23:02] *** walden|afk is now known as walden
[15:23:07] <batch4225> how i can get everything besides angular to wait for the json to return
[15:23:46] *** sixr420 has joined #angularjs
[15:23:48] *** doodlehaus has quit IRC
[15:24:18] <jdo_dk> How do i "inject" headers in a resource ? Looks like transformRequest is buggy in 1.4
[15:24:58] <merpnderp> batch4225: if you could throw up a plunker I could take a look. But I have two more features that have to be added to my app today, so under the gun.
[15:25:00] *** airtonix has quit IRC
[15:25:14] <batch4225> its all good man, take care of your stuff
[15:25:19] <batch4225> i will keep trying
[15:25:27] *** airtonix has joined #angularjs
[15:25:33] *** D9 has quit IRC
[15:26:16] *** devPaul has quit IRC
[15:28:14] *** bbankes has joined #angularjs
[15:28:59] *** vandyk has quit IRC
[15:30:19] *** anthony23 has quit IRC
[15:30:36] *** doodlehaus has joined #angularjs
[15:31:10] *** junmin has joined #angularjs
[15:31:59] *** macabre has joined #angularjs
[15:32:26] *** yanivkalfa has quit IRC
[15:32:35] *** bbankes has quit IRC
[15:33:27] *** illume has joined #angularjs
[15:34:42] <edrocks> would anyone recommend using mocha for tests over jasmine?
[15:35:27] *** zigzagzig has joined #angularjs
[15:36:32] *** shinnya has joined #angularjs
[15:36:40] <icebox> jdo_dk: did you read what I wrote you the first time you asked tha?
[15:37:05] *** Pspfolio has joined #angularjs
[15:38:20] *** JBreit has joined #angularjs
[15:41:37] *** edrocks has quit IRC
[15:42:15] *** edrocks has joined #angularjs
[15:42:20] <rv> hi
[15:42:22] *** marthinal has joined #angularjs
[15:42:33] <rv> is this good place to ask about angular2 :) ?
[15:42:58] <senayar> everywhere is a good place to talk about angular2 :p
[15:43:20] *** Oleander has joined #angularjs
[15:43:38] *** punknroll has quit IRC
[15:45:19] <caitp> not on my twitter timeline thx
[15:45:46] *** fedenunez has joined #angularjs
[15:45:47] <rv> i try to complete this guide: https://angular.io/docs/ts/latest/guide/router.html everythink works except when i try to reload browser on localhost:3000/hero/:id url
[15:46:39] <rv> browser try to load js files relative to path /hero/
[15:47:52] *** Dmitri has joined #angularjs
[15:48:07] <rv> i think i missing something in systemjs config file?
[15:48:23] *** Danielyan has quit IRC
[15:49:20] *** andricDu has joined #angularjs
[15:49:44] *** c00ljs has quit IRC
[15:50:07] *** dbclk has joined #angularjs
[15:50:26] *** c00ljs has joined #angularjs
[15:50:31] *** Bubo has joined #angularjs
[15:50:44] *** plekplek has quit IRC
[15:52:21] *** Garfield-fr has quit IRC
[15:53:20] *** aghiuru has joined #angularjs
[15:53:53] *** kuadrosx has joined #angularjs
[15:54:55] *** jason_ has joined #angularjs
[15:55:06] <jason_> hello
[15:55:31] *** jason_ has quit IRC
[15:56:45] *** madhums has joined #angularjs
[15:57:49] *** swordfish has joined #angularjs
[15:58:10] *** aghiuru has quit IRC
[15:58:45] *** Anatoli_k has joined #angularjs
[15:59:24] *** ASUChander has joined #angularjs
[15:59:42] *** rscata has quit IRC
[16:00:12] *** davi has joined #angularjs
[16:00:19] *** erms has quit IRC
[16:00:29] *** swordfish has quit IRC
[16:00:35] *** swordfis_ has joined #angularjs
[16:01:15] *** lmatteis has quit IRC
[16:03:09] *** maxvasil has joined #angularjs
[16:04:09] *** elsevero has quit IRC
[16:04:36] *** anthony23 has joined #angularjs
[16:04:42] *** lmatteis has joined #angularjs
[16:04:46] *** marr has joined #angularjs
[16:05:07] *** fedenunez has quit IRC
[16:05:13] *** junmin has quit IRC
[16:05:14] <anthony23> hello, I'm having an issue trying to implement an interval type call in Angular 2. If I try to change the loading state of an element using a function and say processResponse () { this.loading = false } it works fine... however, if it's a very fast response, it just flickers…so I’m trying to add setInterval or something similar, but can't figure out how to do it without 'this.loading' becoming out of scope or inaccessible..
[16:05:14] *** fedenunez has joined #angularjs
[16:06:12] <icebox> anthony23: var that = this; // outer... that.loading; // inside
[16:06:21] *** empyreanx has quit IRC
[16:09:04] *** jr3 has joined #angularjs
[16:09:17] *** dpicky_ has joined #angularjs
[16:09:35] *** aks has quit IRC
[16:09:58] *** ril_ has joined #angularjs
[16:10:14] *** ramiroaraujo has joined #angularjs
[16:10:35] *** dpicky has quit IRC
[16:11:51] <anthony23> icebox: I've tried that, but it doesn't change the original this.loading... and webstorm says "the value assigned to primitive will be lost
[16:11:57] *** macobo has quit IRC
[16:12:14] *** KnightsOfNi has joined #angularjs
[16:12:18] <anthony23> icebox: I put: var that = this.loading; var please = function () { that.loading = false; };
[16:12:59] *** hans_ has joined #angularjs
[16:13:11] <icebox> anthony23: no... it is not what I said... :)
[16:13:11] *** smccarthy has joined #angularjs
[16:13:24] <anthony23> icebox: how do you format it?
[16:13:47] <icebox> anthony23: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Closures
[16:13:53] *** jlebrech has quit IRC
[16:14:26] *** hans_ has left #angularjs
[16:14:26] *** bayousoft has quit IRC
[16:15:06] *** aghiuru has joined #angularjs
[16:16:14] *** raijin has joined #angularjs
[16:16:34] *** cacts has joined #angularjs
[16:17:18] *** aks has joined #angularjs
[16:19:10] *** vekkev69 has joined #angularjs
[16:19:36] *** ASUchander1 has joined #angularjs
[16:20:14] *** aghiuru has quit IRC
[16:20:21] *** ASUChand_ has joined #angularjs
[16:20:53] *** vekkev69 has quit IRC
[16:21:00] *** icebox has quit IRC
[16:21:11] *** jstroem has quit IRC
[16:21:14] <anthony23> icebox: I think I see what you're saying, but this.loading is on the component class that's controlling the dom... I don't think I can put it inside of that and it still be used as a property of the input element
[16:21:16] *** dcherman has joined #angularjs
[16:23:15] *** ASUChander has quit IRC
[16:23:46] *** ASUchander1 has quit IRC
[16:23:58] *** ferr has joined #angularjs
[16:24:45] *** speeddragon has quit IRC
[16:24:52] *** CAPITANOOO has joined #angularjs
[16:24:57] *** rho has joined #angularjs
[16:24:57] *** rho has joined #angularjs
[16:26:45] *** speeddragon has joined #angularjs
[16:27:10] *** ctanga has joined #angularjs
[16:28:37] *** madhums has quit IRC
[16:29:00] *** Es0teric has joined #angularjs
[16:29:32] *** KAsp3rd has joined #angularjs
[16:29:55] *** raijin has quit IRC
[16:30:08] *** Junior has quit IRC
[16:30:44] *** amitev has quit IRC
[16:31:29] *** aghiuru has joined #angularjs
[16:32:18] <KAsp3rd> anyone have any input on how to use the included directive to augment the default input directive without taking about the ability for ng-disabled? http://plnkr.co/edit/1eNYqVJmC3xSYWO8O3Lm?p=preview
[16:32:34] *** Leon has quit IRC
[16:33:15] *** c00ljs has quit IRC
[16:33:25] *** bayousoft has joined #angularjs
[16:34:05] *** madhums has joined #angularjs
[16:34:26] *** delgiudices has quit IRC
[16:34:30] *** xylen_ has joined #angularjs
[16:35:10] *** brollypop has quit IRC
[16:35:20] *** aks has quit IRC
[16:35:47] *** aghiuru has quit IRC
[16:36:05] *** kvnm has quit IRC
[16:36:08] *** ctanga has quit IRC
[16:36:32] *** dutis has quit IRC
[16:37:00] *** tristanp has joined #angularjs
[16:37:12] *** illume has quit IRC
[16:37:36] *** vandyk has joined #angularjs
[16:37:41] *** aks has joined #angularjs
[16:38:25] *** c00ljs has joined #angularjs
[16:38:41] *** overtime has joined #angularjs
[16:38:49] *** aks has quit IRC
[16:39:16] *** codeitloadit has joined #angularjs
[16:40:11] *** suspicious_e has quit IRC
[16:40:31] *** suspicious_e has joined #angularjs
[16:40:34] *** aks has joined #angularjs
[16:41:06] *** junmin has joined #angularjs
[16:41:41] *** tristanp has quit IRC
[16:42:03] *** jdo_dk has left #angularjs
[16:44:16] *** Dmitri has quit IRC
[16:45:02] *** Dmitri has joined #angularjs
[16:45:25] *** illume has joined #angularjs
[16:46:02] *** dcherman has quit IRC
[16:46:49] *** dcherman has joined #angularjs
[16:47:18] *** schneider has joined #angularjs
[16:48:35] *** PentLab has left #angularjs
[16:50:02] *** jspeck has joined #angularjs
[16:50:09] *** icfantv has joined #angularjs
[16:51:52] *** Sky[x] has joined #angularjs
[16:52:42] *** ramiroaraujo has quit IRC
[16:53:18] *** morissette has quit IRC
[16:53:43] *** killa_kyle has joined #angularjs
[16:54:19] <soee> usng ui-router, what woudl be the best way to check if user is authenticated and can load given state >
[16:56:34] *** diegoaguilar has quit IRC
[16:56:48] *** DoubleAW has quit IRC
[16:57:17] *** madhums has quit IRC
[16:58:27] *** Bloomer has quit IRC
[17:00:23] *** Oleander has quit IRC
[17:00:47] *** Oleander has joined #angularjs
[17:01:16] *** mynameiswhat has quit IRC
[17:02:23] *** c00ljs_ has joined #angularjs
[17:02:30] *** morissette has joined #angularjs
[17:02:37] *** Kwoth has quit IRC
[17:02:56] *** c00ljs has quit IRC
[17:03:44] *** bbarke1 has joined #angularjs
[17:03:57] *** mellernoia-work has joined #angularjs
[17:04:02] *** mellernoia has quit IRC
[17:04:27] *** Sky[x] has quit IRC
[17:04:28] *** ditoglez has joined #angularjs
[17:04:53] *** cacts has quit IRC
[17:05:09] *** diosney has joined #angularjs
[17:05:29] *** mellernoia-work has quit IRC
[17:05:37] *** mellernoia has joined #angularjs
[17:06:11] *** Oleander has quit IRC
[17:06:16] *** shiriru has quit IRC
[17:06:22] *** kvnm has joined #angularjs
[17:06:28] *** LeBlaaanc has quit IRC
[17:07:30] *** madhums has joined #angularjs
[17:08:11] *** doodlehaus has quit IRC
[17:08:22] *** th2389_______ has quit IRC
[17:08:58] *** platonic has joined #angularjs
[17:08:59] *** Jardayn has joined #angularjs
[17:09:00] *** tae has quit IRC
[17:09:13] *** kvnm has quit IRC
[17:10:48] *** kvnm has joined #angularjs
[17:11:08] *** pol has joined #angularjs
[17:11:16] *** senayar has quit IRC
[17:11:28] <pol> hi
[17:11:38] <pol> buenas
[17:12:07] *** workboy has joined #angularjs
[17:12:54] *** tae has joined #angularjs
[17:13:10] *** zeezey has joined #angularjs
[17:13:19] *** th2389_______ has joined #angularjs
[17:14:26] *** skakri has quit IRC
[17:15:39] *** ril_ is now known as ril[away]
[17:16:34] *** devPaul has joined #angularjs
[17:16:38] *** ril[away] is now known as ril_
[17:16:41] *** junmin has joined #angularjs
[17:16:44] *** lucha has joined #angularjs
[17:17:04] <lucha> Hello there!
[17:17:06] <lucha> How can I debug a ng-select directive?
[17:17:27] *** gambl0re has joined #angularjs
[17:18:07] <lucha> sorry, what I want is to debug a ng-selected directive
[17:20:38] *** platonic has quit IRC
[17:20:56] *** kvnm has quit IRC
[17:21:00] *** skakri has joined #angularjs
[17:21:03] *** delgiudices has joined #angularjs
[17:21:14] *** platonic has joined #angularjs
[17:21:21] *** swordfis_ has quit IRC
[17:21:44] *** tomphp has quit IRC
[17:22:36] *** cebor has quit IRC
[17:23:36] *** cebor has joined #angularjs
[17:25:16] *** platonic has quit IRC
[17:25:39] *** c00ljs_ has quit IRC
[17:26:42] *** dbclk has quit IRC
[17:27:06] *** iray has joined #angularjs
[17:27:20] *** speeddragon has quit IRC
[17:27:48] *** speeddragon has joined #angularjs
[17:28:14] *** vandyk has quit IRC
[17:28:32] *** delgiudices has quit IRC
[17:28:39] *** Slizz3r has quit IRC
[17:28:45] *** Hounddog has quit IRC
[17:29:39] *** Oleander has joined #angularjs
[17:31:10] *** c00ljs has joined #angularjs
[17:31:13] *** Oleander has quit IRC
[17:31:13] *** Debnet has quit IRC
[17:31:23] *** cacts|works has joined #angularjs
[17:32:29] <KAsp3rd> anyone have any input on how to use the included directive to augment the default input directive without taking about the ability for ng-disabled? http://plnkr.co/edit/1eNYqVJmC3xSYWO8O3Lm?p=preview
[17:32:38] *** delgiudices has joined #angularjs
[17:33:01] *** Sky[x] has joined #angularjs
[17:33:08] *** peterR`` has quit IRC
[17:35:34] *** madhums has quit IRC
[17:38:03] *** mchammer has quit IRC
[17:38:10] *** bicranial has quit IRC
[17:38:55] *** delgiudices has quit IRC
[17:38:59] *** doodlehaus has joined #angularjs
[17:39:02] *** illume has quit IRC
[17:39:02] *** dopesong has quit IRC
[17:39:06] *** jlebrech has joined #angularjs
[17:39:24] *** madhums has joined #angularjs
[17:40:46] *** aghiuru has joined #angularjs
[17:40:51] *** Oleander has joined #angularjs
[17:42:16] *** bicranial has joined #angularjs
[17:42:54] *** madhums has quit IRC
[17:43:41] *** delgiudices has joined #angularjs
[17:43:43] *** sbasso has quit IRC
[17:44:19] *** Pspfolio has quit IRC
[17:44:46] *** mellernoia has quit IRC
[17:45:15] *** aghiuru has quit IRC
[17:46:13] *** dbclk has joined #angularjs
[17:46:25] *** c00ljs has quit IRC
[17:46:28] *** diegoaguilar has joined #angularjs
[17:46:53] *** ycon__ has joined #angularjs
[17:46:56] *** atomi has quit IRC
[17:47:16] *** ril_ has quit IRC
[17:47:20] *** iateadonut has joined #angularjs
[17:47:44] *** atomi has joined #angularjs
[17:47:49] *** iateadonut has quit IRC
[17:48:54] *** delgiudices has quit IRC
[17:49:54] *** lucha has quit IRC
[17:51:15] *** cotko has quit IRC
[17:51:52] *** xwid has quit IRC
[17:52:37] *** swordfish has joined #angularjs
[17:53:39] *** steven_ has joined #angularjs
[17:53:40] *** \du has quit IRC
[17:54:01] *** Dmitri has quit IRC
[17:56:08] *** mimov has joined #angularjs
[17:56:10] *** workboy has quit IRC
[17:56:21] *** c00ljs has joined #angularjs
[17:56:23] *** yanivkalfa has joined #angularjs
[17:56:42] <mimov> hello everyone, I'm looking for help, I had a quick question
[17:57:25] *** Marble68 has joined #angularjs
[17:57:35] *** LeBlaaanc has joined #angularjs
[17:57:35] *** dipk has joined #angularjs
[17:57:46] *** mischat has joined #angularjs
[17:58:23] *** loplin has quit IRC
[17:59:09] *** mimov has quit IRC
[17:59:37] *** ferr has quit IRC
[18:00:16] *** Es0teric has quit IRC
[18:00:18] *** tkdaj1 has joined #angularjs
[18:01:13] <tkdaj1> When a page loads what loads first, the DOM or the controller?
[18:01:19] *** dpicky_ has quit IRC
[18:01:23] <tkdaj1> or do they both load simultaneously?
[18:01:25] *** buzzedword has joined #angularjs
[18:01:36] *** Daerist has quit IRC
[18:04:14] *** hefox has joined #angularjs
[18:04:32] <tkdaj1> for example, when I'm using bootstrap modals can I just try to do this on load: $("#modalID").modal("show");
[18:04:37] *** dan2k3k4 has joined #angularjs
[18:05:42] *** Seich has joined #angularjs
[18:06:45] *** wonder95 has joined #angularjs
[18:07:04] *** Oleander has quit IRC
[18:07:41] *** madhums has joined #angularjs
[18:08:10] *** doodlehaus has quit IRC
[18:08:35] *** Anatoli_k has quit IRC
[18:08:44] *** Poeticode has joined #angularjs
[18:08:57] *** devPaul_ has joined #angularjs
[18:09:35] *** c00ljs has quit IRC
[18:10:28] *** devPaul has quit IRC
[18:10:44] *** c00ljs has joined #angularjs
[18:11:49] *** fakingfantastic has joined #angularjs
[18:12:35] *** loplin has joined #angularjs
[18:13:01] <fakingfantastic> Hey smart people. Let’s say I have a page of products. I conditions need to be satified to be able to add the items to a Cart (let’s say, you need to click a checkbox to update a property to product.isAddable = true ). Does that mean there should be a product service which returns instances, and not a product singleton?
[18:13:34] *** aghiuru has joined #angularjs
[18:13:36] *** yanivkalfa has quit IRC
[18:13:45] <fakingfantastic> I’m looking at http://stackoverflow.com/questions/16626075/non-singleton-services-in-angular - and it’s suggested instances are an antipattern
[18:14:32] *** drptbl has quit IRC
[18:15:36] *** asteele has joined #angularjs
[18:17:08] *** ferr has joined #angularjs
[18:18:14] *** aks has quit IRC
[18:18:17] *** aghiuru has quit IRC
[18:19:09] *** dan2k3k4 has quit IRC
[18:19:32] *** fotoflo has joined #angularjs
[18:19:51] *** dan2k3k4 has joined #angularjs
[18:20:10] *** aks has joined #angularjs
[18:20:46] *** ipihm has joined #angularjs
[18:21:09] *** Tennis has quit IRC
[18:21:14] *** schneider has quit IRC
[18:21:16] *** ipihm is now known as schneider
[18:21:24] *** c00ljs has quit IRC
[18:23:11] *** c00ljs has joined #angularjs
[18:25:41] *** schneider has quit IRC
[18:26:51] *** yanivkalfa has joined #angularjs
[18:27:01] *** CJulien has joined #angularjs
[18:27:22] *** yanivkalfa has joined #angularjs
[18:27:35] *** devPaul_ has quit IRC
[18:27:56] *** yanivkalfa has joined #angularjs
[18:28:29] *** c00ljs has quit IRC
[18:28:38] *** steven_ has quit IRC
[18:29:03] *** yanivkalfa has joined #angularjs
[18:29:31] *** yanivkalfa has joined #angularjs
[18:30:35] *** yanivkalfa has joined #angularjs
[18:30:41] *** c00ljs has joined #angularjs
[18:31:03] *** yanivkalfa has joined #angularjs
[18:31:08] *** ferr has quit IRC
[18:31:08] *** Zalabinsky has joined #angularjs
[18:31:14] *** schneider has joined #angularjs
[18:31:58] *** yanivkalfa has joined #angularjs
[18:32:11] *** jhirley has joined #angularjs
[18:32:18] *** ycon__ has quit IRC
[18:32:58] *** ril has joined #angularjs
[18:33:08] *** ferr has joined #angularjs
[18:33:13] *** raijin has joined #angularjs
[18:33:21] *** buzzedword has quit IRC
[18:33:28] *** dan2k3k4 has quit IRC
[18:33:51] *** OtherAllan has joined #angularjs
[18:34:11] *** ril has quit IRC
[18:35:38] *** daslicht has joined #angularjs
[18:38:36] *** codeman has joined #angularjs
[18:39:39] *** doodlehaus has joined #angularjs
[18:39:52] *** guilbep has quit IRC
[18:42:05] *** devPaul has joined #angularjs
[18:42:18] *** c00ljs has quit IRC
[18:42:28] *** vrockai has quit IRC
[18:43:45] *** jstroem has joined #angularjs
[18:44:40] *** delgiudices has joined #angularjs
[18:44:48] *** diegoaguilar has quit IRC
[18:46:00] *** Josh-Star has joined #angularjs
[18:46:32] *** fotoflo has quit IRC
[18:46:50] *** bengilli_ has quit IRC
[18:46:55] *** aghiuru has joined #angularjs
[18:47:18] *** buzzedword has joined #angularjs
[18:47:43] *** fotoflo has joined #angularjs
[18:48:03] *** _matix has joined #angularjs
[18:48:14] *** c00ljs has joined #angularjs
[18:50:53] *** madhums has quit IRC
[18:51:06] *** aghiuru has quit IRC
[18:51:17] *** speeddragon has quit IRC
[18:51:20] *** jiggliemon has quit IRC
[18:51:35] *** evilaliv3 has quit IRC
[18:51:43] *** tkdaj1 has left #angularjs
[18:52:11] *** fotoflo has quit IRC
[18:52:40] *** madhums has joined #angularjs
[18:52:52] *** buzzedword has quit IRC
[18:55:33] *** CAPITANOOO has quit IRC
[18:56:48] *** jlebrech has quit IRC
[18:58:16] *** ferr has quit IRC
[18:58:23] *** madhums has quit IRC
[18:58:28] *** speeddragon has joined #angularjs
[18:58:53] *** syzygy_ has joined #angularjs
[18:59:18] *** killa_kyle has quit IRC
[18:59:50] *** Marble68 has quit IRC
[18:59:56] *** ronz has joined #angularjs
[19:00:04] *** Assaf has joined #angularjs
[19:00:42] *** fotoflo has joined #angularjs
[19:00:44] *** madhums has joined #angularjs
[19:01:37] *** illume has joined #angularjs
[19:01:54] *** glosoli has joined #angularjs
[19:01:56] *** glosoli has joined #angularjs
[19:02:14] *** CJulien has quit IRC
[19:02:56] *** madhums has quit IRC
[19:03:04] *** aks has quit IRC
[19:03:29] *** aghiuru has joined #angularjs
[19:03:51] <ronz> Hi, trying to convert an existing angular 1.4.8 to angular2. I see that there are no interceptors, how do I handle default http errors (such as 401 error that should navigate to login screen or 404 that should show 404 error)?
[19:04:16] *** marthinal has quit IRC
[19:04:24] <Assaf> Hi is any one know good practice guide for angular google material?
[19:04:38] *** tm_X has joined #angularjs
[19:04:56] *** c00ljs_ has joined #angularjs
[19:04:59] *** c00ljs has quit IRC
[19:05:10] *** swordfish has quit IRC
[19:05:16] *** dan2k3k4 has joined #angularjs
[19:05:30] *** dan2k3k4 has quit IRC
[19:05:42] <Assaf> Is any one know good practice guide for angular google material?
[19:07:00] *** gho5t has joined #angularjs
[19:07:35] *** Oleander has joined #angularjs
[19:08:00] *** swordfish has joined #angularjs
[19:08:08] *** aghiuru has quit IRC
[19:08:32] *** junmin_ has joined #angularjs
[19:09:56] *** pol has quit IRC
[19:10:03] *** junmin has quit IRC
[19:11:11] *** c00ljs_ has quit IRC
[19:12:44] *** gho5t has quit IRC
[19:12:58] *** Oleander has quit IRC
[19:13:04] *** anthony23 has quit IRC
[19:13:16] *** illume has quit IRC
[19:13:27] *** patcito has joined #angularjs
[19:13:45] *** ronz has quit IRC
[19:14:18] *** marthinal has joined #angularjs
[19:16:08] *** c00ljs has joined #angularjs
[19:16:10] *** sbellina has joined #angularjs
[19:16:26] *** speeddragon has quit IRC
[19:17:27] *** killa_kyle has joined #angularjs
[19:18:03] *** speeddragon has joined #angularjs
[19:18:44] *** killa_kyle has quit IRC
[19:19:41] *** madhums has joined #angularjs
[19:19:57] *** aghiuru has joined #angularjs
[19:21:16] *** jr3 has quit IRC
[19:22:26] *** cacts|works has quit IRC
[19:22:31] *** MrBaboon has joined #angularjs
[19:22:55] *** va19 has joined #angularjs
[19:23:30] *** AndrewIsh has quit IRC
[19:24:05] *** frem has joined #angularjs
[19:24:06] *** aghiuru has quit IRC
[19:24:23] *** ken has joined #angularjs
[19:24:47] *** ken is now known as Guest83638
[19:25:18] *** adpirz has joined #angularjs
[19:25:46] *** cacts|works has joined #angularjs
[19:25:59] *** Guest83638 has quit IRC
[19:26:40] *** FlavioZ_ has joined #angularjs
[19:29:28] *** Oleander has joined #angularjs
[19:30:10] *** doodlehaus has quit IRC
[19:30:39] *** buzzedword has joined #angularjs
[19:30:52] *** ateter has joined #angularjs
[19:31:57] *** hussain_ has joined #angularjs
[19:32:00] *** thatslifeson has joined #angularjs
[19:34:01] *** madhums has quit IRC
[19:34:03] *** Dmitri has joined #angularjs
[19:34:16] *** daslicht has quit IRC
[19:34:20] *** gho5t has joined #angularjs
[19:36:35] *** aghiuru has joined #angularjs
[19:36:42] *** Assaf has quit IRC
[19:37:12] *** shinnya has quit IRC
[19:37:50] *** adpirz has quit IRC
[19:38:13] *** tristanp has joined #angularjs
[19:38:21] *** madhums has joined #angularjs
[19:38:29] *** Dmitri has quit IRC
[19:38:55] *** deepy has quit IRC
[19:39:01] *** _matix has quit IRC
[19:39:07] <hussain_> Hi, I have been facing a really weird issue. My angular application works fine when I do grunt serve. But when I try to build it using grunt build, buid gets successful but when I open app, I get an error -- "Error: $injector:modulerrModule Error" I am not able to find the issue. I have tried suppressing minification, concat, etc but It didn't work. Please help
[19:40:46] *** aghiuru has quit IRC
[19:41:09] *** devPaul has quit IRC
[19:41:16] <soee> do you minimize app files with grunt build ?
[19:41:18] *** deepy has joined #angularjs
[19:41:51] *** jhirley has quit IRC
[19:43:21] *** tristanp has quit IRC
[19:43:28] *** bayousoft has quit IRC
[19:43:47] *** zeioth has joined #angularjs
[19:43:56] *** jstroem has quit IRC
[19:44:07] <hussain_> soee: yes
[19:45:05] *** qdk has quit IRC
[19:45:07] *** moep has quit IRC
[19:45:14] <hussain_> but I commented uglify, htmlmin and cssmin from gruntfile's registerTask. and that didn't help
[19:45:28] *** c00ljs_ has joined #angularjs
[19:45:29] *** c00ljs has quit IRC
[19:45:48] <hussain_> basically I can understand that the actual error is getting concealed due to minification/concat etc
[19:47:11] *** zeioth has quit IRC
[19:48:29] <Poeticode> https://docs.angularjs.org/tutorial/step_05 skip down to "A Note on Minification", are you specifying which DI's are required in your controllers?
[19:48:45] *** speeddragon has quit IRC
[19:49:35] *** gho5t has quit IRC
[19:50:06] *** Lynxium has quit IRC
[19:50:55] *** yanivkalfa has quit IRC
[19:51:24] *** speeddragon has joined #angularjs
[19:53:01] *** aghiuru has joined #angularjs
[19:53:05] *** yky_ has joined #angularjs
[19:53:39] *** SomeKittens has joined #angularjs
[19:55:09] *** zeioth has joined #angularjs
[19:55:25] *** syzygy_ has quit IRC
[19:55:35] *** madhums has quit IRC
[19:55:36] *** buzzedword has quit IRC
[19:56:18] *** buzzedword has joined #angularjs
[19:56:41] *** madhums has joined #angularjs
[19:57:26] *** aghiuru has quit IRC
[19:57:39] *** isacloud has quit IRC
[19:57:54] *** adpirz has joined #angularjs
[19:57:55] *** syzygy_ has joined #angularjs
[19:58:06] *** batch4225 has quit IRC
[19:59:14] *** killa_kyle has joined #angularjs
[20:00:19] *** killa_kyle has quit IRC
[20:00:23] *** shoelessone has quit IRC
[20:00:39] *** mischat has quit IRC
[20:01:15] *** jayeshsolanki has joined #angularjs
[20:03:31] *** hussain_ has quit IRC
[20:03:36] *** madhums has quit IRC
[20:03:37] *** ohmygod has joined #angularjs
[20:04:04] *** gho5t has joined #angularjs
[20:04:30] *** doodlehaus has joined #angularjs
[20:04:49] *** ohmygod has quit IRC
[20:04:55] *** testing has joined #angularjs
[20:05:04] *** mischat has joined #angularjs
[20:05:14] *** testing has left #angularjs
[20:05:19] *** c00ljs_ has quit IRC
[20:05:58] *** c00ljs has joined #angularjs
[20:06:56] *** fees has quit IRC
[20:07:16] *** ferr has joined #angularjs
[20:07:59] *** bayousoft has joined #angularjs
[20:08:38] *** tristanp has joined #angularjs
[20:09:36] *** aghiuru has joined #angularjs
[20:12:00] *** mandric has quit IRC
[20:12:20] *** startupality has joined #angularjs
[20:12:35] *** empyreanx has joined #angularjs
[20:13:07] *** _matix has joined #angularjs
[20:13:08] *** tristanp has quit IRC
[20:13:46] *** aghiuru has quit IRC
[20:13:55] *** Lynxium has joined #angularjs
[20:14:01] *** Marble68 has joined #angularjs
[20:14:04] *** phrozensilver has joined #angularjs
[20:14:12] *** aks has joined #angularjs
[20:14:50] *** speeddragon has quit IRC
[20:14:52] *** jdo_dk has joined #angularjs
[20:15:37] *** ahhhndi has quit IRC
[20:16:27] <jdo_dk> Can i "reuse" a controller multiple times on a html page ? I have a controller which is used to create my menu and when clicked on each menu, is saves "active" item in controller, and in a view i want to show "menu.name"? Does it make any sense ?
[20:18:14] *** jr3 has joined #angularjs
[20:19:00] *** aks has quit IRC
[20:21:32] *** Sky[x] has quit IRC
[20:24:12] *** zeioth has quit IRC
[20:25:37] *** qdk has joined #angularjs
[20:26:05] *** bayousoft has quit IRC
[20:27:52] *** dcherman has quit IRC
[20:27:52] *** dcherman2 has joined #angularjs
[20:27:58] *** adpirz has quit IRC
[20:29:43] *** syzygy_ has joined #angularjs
[20:29:55] *** raijin has quit IRC
[20:30:12] *** tristanp has joined #angularjs
[20:30:35] *** _matix has quit IRC
[20:30:38] *** LeBlaaanc has quit IRC
[20:30:40] *** dcherman has joined #angularjs
[20:31:24] *** bugfarmer_ has joined #angularjs
[20:31:44] *** _matix has joined #angularjs
[20:32:14] *** p0k0 has joined #angularjs
[20:32:18] <bugfarmer_> Hi everyone
[20:32:35] <bugfarmer_> I'm just gettign started with Angular and I have a question about directives
[20:32:50] *** dcherman2 has quit IRC
[20:33:02] <bugfarmer_> so I have a long index.html file I want to break up into directives
[20:33:17] <bugfarmer_> I can do this at one level
[20:33:24] <bugfarmer_> but when I try to include directives into those directives
[20:33:30] <bugfarmer_> it doesn't seem to work properly
[20:33:41] *** doodlehaus has quit IRC
[20:33:55] *** Oleander has quit IRC
[20:34:31] *** iceball has quit IRC
[20:34:57] *** syzygy_ has quit IRC
[20:35:40] *** killa_kyle has joined #angularjs
[20:35:44] *** Marble68_ has joined #angularjs
[20:36:18] *** yky_ has quit IRC
[20:37:21] <jdo_dk> bugfarmer_: Try to post your code somewhere.
[20:38:16] *** buzzedword has quit IRC
[20:38:20] *** Marble68 has quit IRC
[20:38:20] *** Marble68_ is now known as Marble68
[20:38:33] *** chizbang has quit IRC
[20:39:02] *** doodlehaus has joined #angularjs
[20:39:28] *** buzzedword has joined #angularjs
[20:39:33] *** shinnya has joined #angularjs
[20:39:59] <bugfarmer_> jdo_dk: ah never, false alarm. It was just a typo that prevented it from working
[20:40:44] <jdo_dk> ;)
[20:41:41] *** vbgfb has joined #angularjs
[20:42:23] *** killa_kyle has quit IRC
[20:43:28] *** GetzelR has quit IRC
[20:43:31] <gambl0re> people are still learning angular 1.4?
[20:43:45] <gambl0re> isnt 2.0 coming out any moment now?
[20:44:00] *** fotoflo has quit IRC
[20:45:20] *** c00ljs has quit IRC
[20:45:24] *** fotoflo has joined #angularjs
[20:45:35] *** adpirz has joined #angularjs
[20:45:45] *** davi has quit IRC
[20:45:46] *** adpirz has quit IRC
[20:45:56] *** adpirz has joined #angularjs
[20:46:44] *** sbellina has quit IRC
[20:47:53] <merpnderp> In a $q.all will the results be ordered in the way they were added, or in the order they returned?
[20:49:30] *** marthinal has quit IRC
[20:49:30] *** killa_kyle has joined #angularjs
[20:50:54] *** yky_ has joined #angularjs
[20:51:21] *** bayousoft has joined #angularjs
[20:51:34] *** sbellina has joined #angularjs
[20:51:42] *** c00ljs has joined #angularjs
[20:51:45] <Poeticode> @gambl0re: some NgCordova plugins, and some other stuffz, don't work with v2 yet.
[20:52:02] *** killa_kyle has quit IRC
[20:52:15] *** killa_kyle has joined #angularjs
[20:52:50] *** swordfis_ has joined #angularjs
[20:53:16] <Poeticode> plus I'd argue it's better to learn 1.4 first, until 2.0 is stable and most plugins have been updated for it. even though you have to unlearn some things.
[20:55:56] *** raijin has joined #angularjs
[20:56:07] *** aghiuru has joined #angularjs
[20:56:11] *** swordfish has quit IRC
[20:56:55] <merpnderp> I've got a tough one. I need to combine each employee object with the results of the getDepartmentTree call in the $q.all results. ANyone know how to do this? http://pastebin.com/Nt8umzPD
[20:58:02] *** gho5t has quit IRC
[20:58:54] *** elyssonmr has quit IRC
[20:59:56] <jdo_dk> Im having trouble getting "member.name" later on my page: See my code here: https://dpaste.de/nEzY
[21:00:26] *** aghiuru has quit IRC
[21:03:06] *** delgiudices has quit IRC
[21:04:14] *** dcherman2 has joined #angularjs
[21:05:38] *** gho5t has joined #angularjs
[21:06:15] *** raijin has quit IRC
[21:06:25] *** DerkDW has joined #angularjs
[21:06:28] *** DerkDW_ has joined #angularjs
[21:06:49] *** raijin has joined #angularjs
[21:07:29] *** dcherman has quit IRC
[21:08:08] *** baweaver has joined #angularjs
[21:08:33] *** LeBlaaanc has joined #angularjs
[21:08:47] *** Aliks has joined #angularjs
[21:08:51] *** adpirz has quit IRC
[21:08:55] *** buzzedword has quit IRC
[21:10:50] *** tm_X has quit IRC
[21:10:57] *** magellanicloud has joined #angularjs
[21:11:03] *** adpirz has joined #angularjs
[21:11:31] *** swordfis_ has quit IRC
[21:11:54] *** buzzedword has joined #angularjs
[21:11:56] *** swordfish has joined #angularjs
[21:11:58] *** speeddragon has joined #angularjs
[21:12:40] *** aghiuru has joined #angularjs
[21:14:08] *** cornerma1 has joined #angularjs
[21:14:26] *** speeddragon has quit IRC
[21:14:33] *** lemur has joined #angularjs
[21:14:56] *** speeddragon has joined #angularjs
[21:15:08] *** startupality has quit IRC
[21:15:30] *** adpirz has quit IRC
[21:16:46] *** aghiuru has quit IRC
[21:17:00] *** Oleander has joined #angularjs
[21:17:06] *** cornerman has quit IRC
[21:17:15] *** cornerma1 is now known as cornerman
[21:17:26] *** baweaver has quit IRC
[21:19:33] *** DavidDudson has joined #angularjs
[21:19:55] *** c00ljs has quit IRC
[21:19:57] *** swordfish has quit IRC
[21:20:55] <KAsp3rd> anyone have any input on how to use the included directive to augment the default input directive without taking about the ability for ng-disabled? http://plnkr.co/edit/1eNYqVJmC3xSYWO8O3Lm?p=preview
[21:21:20] *** gho5t has quit IRC
[21:23:44] *** fscala has quit IRC
[21:24:09] *** DavidDudson has quit IRC
[21:24:30] *** c00ljs has joined #angularjs
[21:25:04] *** DavidDudson has joined #angularjs
[21:25:17] *** Aliks has quit IRC
[21:25:38] *** macmod has joined #angularjs
[21:25:47] *** Marble68 has quit IRC
[21:25:54] *** fscala has joined #angularjs
[21:26:04] *** Marble68 has joined #angularjs
[21:26:21] *** Marble68 has quit IRC
[21:26:40] *** chizbang has joined #angularjs
[21:27:16] *** jiggliemon has joined #angularjs
[21:27:40] *** buzzedword has quit IRC
[21:27:47] <ekarlso> https://github.com/flatlogic/angular-material-dashboard < any of you got a clue on what I would need to do to convert this to ES6 ?
[21:29:08] *** aghiuru has joined #angularjs
[21:31:23] *** fakingfantastic has quit IRC
[21:32:17] *** skcin7 has quit IRC
[21:33:26] *** aghiuru has quit IRC
[21:33:38] *** jiggliemon has joined #angularjs
[21:34:58] *** va19 has quit IRC
[21:35:37] *** buzzedword has joined #angularjs
[21:35:53] *** jayeshsolanki has quit IRC
[21:37:03] *** adpirz has joined #angularjs
[21:40:22] *** Aliks has joined #angularjs
[21:43:13] *** vbgfb has quit IRC
[21:43:19] *** maikowblue has quit IRC
[21:44:30] *** devPaul has joined #angularjs
[21:45:06] *** nya_ has quit IRC
[21:45:37] *** nya_ has joined #angularjs
[21:45:44] *** aghiuru has joined #angularjs
[21:46:34] *** adpirz has quit IRC
[21:48:14] *** jiggliemon has quit IRC
[21:50:06] *** aghiuru has quit IRC
[21:50:14] *** nya_ has quit IRC
[21:51:06] *** adpirz has joined #angularjs
[21:52:06] *** adpirz has quit IRC
[21:52:14] *** FIFOd has joined #angularjs
[21:52:16] *** juddey has joined #angularjs
[21:52:33] *** doppio|Laptop has joined #angularjs
[21:55:58] *** lemur is now known as baweaver
[21:56:01] *** adpirz has joined #angularjs
[21:56:20] *** fedenunez has quit IRC
[21:56:21] *** w00tner has joined #angularjs
[21:56:57] *** jstroem has joined #angularjs
[21:56:58] *** adpirz has quit IRC
[21:57:45] *** FIFOd has quit IRC
[21:58:26] *** c00ljs has quit IRC
[21:58:59] *** buzzedword has quit IRC
[21:59:42] *** buzzedword has joined #angularjs
[22:00:35] *** PeterBooker has quit IRC
[22:02:12] *** aghiuru has joined #angularjs
[22:02:39] *** macmod has quit IRC
[22:03:18] *** c00ljs has joined #angularjs
[22:03:22] *** junmin_ has quit IRC
[22:03:46] *** adpirz has joined #angularjs
[22:06:26] *** aghiuru has quit IRC
[22:07:00] *** termleech has joined #angularjs
[22:08:28] *** corioliss has joined #angularjs
[22:08:48] *** illume has joined #angularjs
[22:09:14] *** adpirz has quit IRC
[22:09:15] *** Aliks has quit IRC
[22:09:47] *** ferr has quit IRC
[22:10:14] *** jstroem has joined #angularjs
[22:10:55] *** asteele has quit IRC
[22:11:31] *** buzzedword has quit IRC
[22:13:06] *** illume has quit IRC
[22:13:08] *** Siraris has joined #angularjs
[22:13:21] *** vpr has joined #angularjs
[22:13:48] <Siraris> Is there a way to call digest on a directive that is outside the ng-view directive?
[22:14:02] *** tplaner has quit IRC
[22:14:07] *** sergey_ has joined #angularjs
[22:14:13] <Siraris> I have a header that stays constant throughout the site in a layout template, and it doesn’t have digest called on it when the page changes
[22:14:36] *** soee has quit IRC
[22:14:48] *** soee has joined #angularjs
[22:16:30] <Siraris> /route changes
[22:17:55] *** sergey_ has quit IRC
[22:18:49] *** aghiuru has joined #angularjs
[22:20:24] *** swordfish has joined #angularjs
[22:21:07] *** sergey_ has joined #angularjs
[22:22:23] *** erol has quit IRC
[22:22:26] *** sergey_ has quit IRC
[22:22:33] <wafflejock> Siraris: believe the calls for $apply that trigger digest from things like $http are executed on the $rootScope so they trigger digests for everything regardless of where it's at basically but not sure about ngRoute or ui-router believe they will just get the template compile it and insert it where they find the corresponding ui-view or ng-view directive but not sure they actually trigger a $digest themselves
[22:22:38] *** cliluw has quit IRC
[22:22:43] *** hackel has joined #angularjs
[22:23:06] *** aghiuru has quit IRC
[22:23:22] <Siraris> wafflejock: When I navigate through the app, the only time my directive is ever digested is on the first page load
[22:23:25] <wafflejock> Siraris: you can use the $routeChangeSuccess or $stateChangeSuccess events to know when some route or state has changed though
[22:23:46] *** vpr has quit IRC
[22:23:50] <Siraris> I’d like it to digest on every route change
[22:24:06] <Siraris> But again, it lies outside the ng-view, so it’s not recompiled
[22:24:20] <wafflejock> Siraris: why not just have the directive in your header part listen for the route or state change events instead?
[22:24:30] *** sergey_ has joined #angularjs
[22:24:36] <wafflejock> Siraris: seems if that's what you're concerned with it's more efficient to just listen for those
[22:25:36] *** Estratega has joined #angularjs
[22:26:00] *** ESpiney has quit IRC
[22:26:03] *** Aliks has joined #angularjs
[22:26:19] *** dcherman has joined #angularjs
[22:27:34] *** dcherman2 has quit IRC
[22:28:16] *** syzygy_ has joined #angularjs
[22:29:29] *** sergey_ has quit IRC
[22:29:57] *** vpr has joined #angularjs
[22:29:59] *** GetzelR has joined #angularjs
[22:30:56] *** buzzedword has joined #angularjs
[22:31:15] *** sergey_ has joined #angularjs
[22:31:52] *** doppio|Laptop has quit IRC
[22:32:14] <jsheely> One day I will remember how ng-options works
[22:32:20] <jsheely> But that day is not today
[22:34:46] *** DerkDW has quit IRC
[22:34:50] *** swordfish has quit IRC
[22:34:53] *** DerkDW_ has quit IRC
[22:35:44] *** prbc has joined #angularjs
[22:35:47] *** aghiuru has joined #angularjs
[22:36:02] *** siba has joined #angularjs
[22:36:14] *** buzzedword has quit IRC
[22:36:16] *** sergey_ has quit IRC
[22:36:51] *** bayousoft has quit IRC
[22:37:32] *** sergey_ has joined #angularjs
[22:37:40] *** andricDu has quit IRC
[22:38:45] *** w00tner has quit IRC
[22:38:53] *** adpirz has joined #angularjs
[22:39:14] *** Siraris has quit IRC
[22:40:06] *** aghiuru has quit IRC
[22:41:06] *** marie1972 has quit IRC
[22:42:46] *** raijin has quit IRC
[22:43:16] *** buzzedword has joined #angularjs
[22:44:08] *** clivejo has quit IRC
[22:44:20] *** Kwoth has joined #angularjs
[22:47:07] *** adpirz has quit IRC
[22:47:20] *** xtreamwayz has quit IRC
[22:47:34] *** hefox has quit IRC
[22:48:46] *** buzzedword has quit IRC
[22:49:45] *** c00ljs has quit IRC
[22:52:18] *** aghiuru has joined #angularjs
[22:53:06] *** spagoop has joined #angularjs
[22:53:16] *** c1v0 has joined #angularjs
[22:53:53] *** dpicky has joined #angularjs
[22:53:59] *** adpirz_ has joined #angularjs
[22:55:25] *** adpirz_ has quit IRC
[22:56:26] *** aghiuru has quit IRC
[22:56:58] *** fakingfantastic has joined #angularjs
[22:57:44] *** phrozensilver has quit IRC
[22:58:05] *** c00ljs has joined #angularjs
[22:58:08] *** clivejo has joined #angularjs
[22:58:37] *** adpirz has joined #angularjs
[23:00:08] *** bayousoft has joined #angularjs
[23:00:22] *** yanivkalfa has joined #angularjs
[23:01:06] *** Aliks has quit IRC
[23:01:07] <fakingfantastic> How can you make instances of items? like if I have a service like $scope.tasks = todoService.getTasks() , and then i do ng-repeat=“task in tasks”, how can I just do <a ng-click=“task.markAsDeleted()”;
[23:01:08] *** gambl0re has quit IRC
[23:01:12] *** raijin has joined #angularjs
[23:01:47] *** dpicky has quit IRC
[23:02:31] *** p0k0 has quit IRC
[23:02:57] *** beakman has joined #angularjs
[23:03:24] *** jstroem has quit IRC
[23:04:16] *** cc0_1 is now known as cc0_
[23:04:37] *** cc0_ has quit IRC
[23:05:04] *** cc0_ has joined #angularjs
[23:05:12] *** baweaver has quit IRC
[23:05:43] *** baweaver has joined #angularjs
[23:07:19] *** sergey_ has quit IRC
[23:07:36] *** edrocks has quit IRC
[23:08:56] *** aghiuru has joined #angularjs
[23:09:05] *** cavallari has joined #angularjs
[23:09:51] *** sergey_ has joined #angularjs
[23:10:43] *** zigzagzig has quit IRC
[23:10:48] *** morissette has quit IRC
[23:11:21] *** Sky[x] has joined #angularjs
[23:11:59] *** jspeck has quit IRC
[23:13:06] *** aghiuru has quit IRC
[23:13:14] *** raza has quit IRC
[23:14:07] *** bbarke1 has left #angularjs
[23:15:10] *** c00ljs has quit IRC
[23:15:20] *** dcherman has quit IRC
[23:16:26] *** c00ljs has joined #angularjs
[23:17:23] *** Aliks has joined #angularjs
[23:19:11] *** mandric has joined #angularjs
[23:19:53] *** beakman has quit IRC
[23:20:38] *** sergey_ has quit IRC
[23:23:16] *** jdo_dk has quit IRC
[23:23:35] *** cavallari has quit IRC
[23:25:11] *** encryptd_fractal has quit IRC
[23:25:24] *** aghiuru has joined #angularjs
[23:25:36] *** bayousoft has quit IRC
[23:27:22] *** speeddra_ has joined #angularjs
[23:28:52] *** Z3R0 has joined #angularjs
[23:28:55] *** marie1972 has joined #angularjs
[23:29:26] *** aghiuru has quit IRC
[23:29:49] *** speeddra_ has quit IRC
[23:30:15] *** hefox has joined #angularjs
[23:31:54] *** swordfish has joined #angularjs
[23:32:30] *** Poeticode has left #angularjs
[23:34:33] *** Z3R0 has quit IRC
[23:36:55] *** jiggliemon has joined #angularjs
[23:37:02] *** Aliks has quit IRC
[23:37:46] *** c00ljs has quit IRC
[23:38:21] <fakingfantastic> Show stopper, huh?
[23:38:30] *** doodlehaus has quit IRC
[23:39:02] *** phrozensilver has joined #angularjs
[23:40:51] <zomg> fakingfantastic: just keep track of the same objects
[23:40:54] *** asteele has joined #angularjs
[23:41:04] <zomg> every time return same objects from getTasks
[23:41:38] <fakingfantastic> zomg: I don’t follow - can you ellaborate a but?
[23:41:56] *** aghiuru has joined #angularjs
[23:41:59] <zomg> I don't really know what the problem with it is :)
[23:42:01] <fakingfantastic> haha, “but” …. I meant bit #growup
[23:42:20] <zomg> var tasks = [a, b, c]; return { getTasks: function() { return tasks } }
[23:42:21] <zomg> or something
[23:42:47] <fakingfantastic> I’m speaking specifically about have methods on the instances in the collection
[23:42:58] <fakingfantastic> “.markAsDeleted()” part
[23:43:20] <zomg> Uhh, just put a function into the object?
[23:43:24] <fakingfantastic> doesn’t that require me to instantiate a “task” object of some kind
[23:43:37] *** Aliks has joined #angularjs
[23:43:52] <zomg> You can just put functions into objects the same way as you put any values
[23:44:03] <fakingfantastic> zomg: let me whip up a pastie
[23:44:38] *** dszmaj has quit IRC
[23:44:49] *** simion314 has quit IRC
[23:45:07] *** vpr has quit IRC
[23:45:35] *** empyreanx has quit IRC
[23:45:46] *** Oleander has quit IRC
[23:45:51] *** adpirz has quit IRC
[23:46:06] *** aghiuru has quit IRC
[23:46:11] *** cliluw has joined #angularjs
[23:47:06] *** iraj has quit IRC
[23:47:29] *** c00ljs has joined #angularjs
[23:47:42] <fakingfantastic> zomg: http://pastie.org/10640768
[23:47:49] <fakingfantastic> is a pattern like that correct?
[23:48:44] *** diosney has quit IRC
[23:49:26] *** swordfish has quit IRC
[23:50:26] *** _matix has quit IRC
[23:50:26] *** Aliks has quit IRC
[23:50:50] *** jiggliemon has quit IRC
[23:51:14] <zomg> seems reasonable
[23:51:39] *** dcherman has joined #angularjs
[23:51:42] <zomg> you can simplify it a little bit by using map, ie. `return tasks.map(function(t) { return new Task(t); });`
[23:51:59] <fakingfantastic> zomg: ok, so my Task class … is that POJO? Or is there a more ng way to do it
[23:52:12] *** leolrrj has joined #angularjs
[23:52:15] <zomg> doing it like that is fine
[23:52:23] <zomg> no need to make it more complicated :)
[23:52:33] <zomg> as a rule of thumb, do the simplest thing that works
[23:52:47] <fakingfantastic> I hear that
[23:53:00] *** c00ljs has quit IRC
[23:53:41] <fakingfantastic> But, if pojo, don’t I still need to be concerned with DI for the Task class?
[23:53:59] <fakingfantastic> I want to seperate my concerns, for testing, etc
[23:54:19] *** joshontheweb has joined #angularjs
[23:54:53] <zomg> I suppose you could wrap it as a factory
[23:55:13] *** beakman has joined #angularjs
[23:55:45] <zomg> personally I tend to use sinon just to override things which works quite easily even without needing to use DI
[23:56:18] *** madhums has joined #angularjs
[23:56:44] *** c00ljs has joined #angularjs
[23:57:03] *** gambl0re has joined #angularjs
[23:57:16] <fakingfantastic> isn’t instantiating an ng factory an antipattern? I’m not trying to be padantic; I’m really trying to learn the best practices here
[23:58:03] <fakingfantastic> What I just walked you through is kind of where my heads at now… I need to instantiate n number of items, but angular seems to frown on instantiation and is all “singleton all of the things”
[23:58:34] *** aghiuru has joined #angularjs
[23:59:32] *** jr3 has quit IRC
[23:59:43] *** madhums has quit IRC
top

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