[AngularJS] AngularJS environment

2016-03-18 Thread mike
Been trying to get a project running for a while now. I have forked the angular_seed project and have built from that. I am trying to display a simple angular object in my view1.html and it is displaying as a literal. Not sure if I am missing a dependency or what is going on. I have tried to re

[AngularJS] New to Angular2: too many rxjs requests, .map requests

2016-06-29 Thread mike
My Angular2 app takes FOREVER to load. I need help. I'm using RC3 (beta-17 works w/out these issues) and tried the advice from others: https://groups.google.com/forum/#!searchin/angular/too$20many$20requests/angular/PQmXB5-aeV4/KindJHqSGgAJ https://github.com/angular/angular/issues/8717#issueco

[AngularJS] angular2: communicating via local variable in template .. exceptions

2016-06-30 Thread mike
I can't get a simple example to work Here's what I am trying to do: (using RC3) {{service.info}} in the data-service directive, I have a public data() method public data = () => { console.log("DATA called"); return "1,2,3"; }; but when the button is clicked: I get an error: ...

[AngularJS] Re: angular2: communicating via local variable in template .. exceptions

2016-07-01 Thread mike
this shows the issue https://plnkr.co/edit/XM7gQhNqYVkXZ67YkIh6?p=preview On Friday, July 1, 2016 at 12:47:00 AM UTC-5, Sander Elias wrote: > > Hi Mike, > > Can you provide a plunker showcasing your issue. I can't reproduce your > issue with the code you are providi

[AngularJS] Re: angular2: communicating via local variable in template .. exceptions

2016-07-01 Thread mike
thanks.. So what would I need to do to make this work? mike On Friday, July 1, 2016 at 11:55:46 AM UTC-5, Sander Elias wrote: > > Hi Mike, > > Ah, now I see your problem. Your #xxx returns a reference to the element, > not to the attached controller. (with hindsight, I could

[AngularJS] Re: angular2: communicating via local variable in template .. exceptions

2016-07-01 Thread mike
Not sure if this is best practices or not, but if I attach the API to the injected ElementRef I can get it to work: inside my data-service directive, I attach the exposed api I want to use: element.nativeElement.data = function() { console.log("HIT"); } mike On Friday, July 1,

[AngularJS] Re: angular2: communicating via local variable in template .. exceptions

2016-07-05 Thread mike
Thanks for that. I appreciate it; What is the semantics (and name) of using the ? (e.g as in ds?.data() or ds?.output) in the example On Saturday, July 2, 2016 at 12:39:50 AM UTC-5, Sander Elias wrote: > > Hi Mike, > > Here is an alternative solution > <htt

[AngularJS] Re: angular2: communicating via local variable in template .. exceptions

2016-07-05 Thread mike
}} On Saturday, July 2, 2016 at 1:14:02 AM UTC-5, Sander Elias wrote: > > Hi Mike, > > I want to elaborate my last couple of msgs. Just to make sure I don't pass > my own confusion along. > There are a couple of ways to get to the children inside of a component. > Fetching

[AngularJS] Re: New to Angular2: too many rxjs requests, .map requests

2016-07-11 Thread mike
sh I had a solution. mike On Saturday, July 9, 2016 at 3:07:59 PM UTC-5, Sathish VJ wrote: > > Did you resolve this somehow? I'm seeing the same problem. > > I'm using angular-2.0.0.3rc3, typescript, ng-cli, and am on a Mac. > > So ng-cli compiles the ts to .js and

[AngularJS] How does one pull data from a component? (like nested controllers in angular1.x)

2016-07-11 Thread mike
trollerAs syntax and I was golden. I must be missing something. mike -- You received this message because you are subscribed to the Google Groups "AngularJS" group. To unsubscribe from this group and stop receiving emails from it, send an email to angular+unsubscr...@googlegroups.co

[AngularJS] Re: How does one pull data from a component? (like nested controllers in angular1.x)

2016-07-12 Thread mike
='viewData'). Thanks for getting me unstuck. I appreciate your help (again) mike On Tuesday, July 12, 2016 at 2:05:48 AM UTC-5, Sander Elias wrote: > > Hi Mike, > > Sorry, I did read your question wrong. What you want to do need is to add > the 'exportAs' a

[AngularJS] Is it possible to change the scope of a template variable?

2016-07-25 Thread mike
e for it's immediate/containing template. thanks for any help mike -- You received this message because you are subscribed to the Google Groups "AngularJS" group. To unsubscribe from this group and stop receiving emails from it, send an email to angular+unsubscr...@googlegr

[AngularJS] Re: Is it possible to change the scope of a template variable?

2016-08-23 Thread mike
anyone with any ideas? On Monday, July 25, 2016 at 10:41:13 AM UTC-5, mike wrote: > > I have a component that pulls data from a database and is used like this: > > > > Survey {{dsv?.data[0]?.getName()}} > Stats: {{dsv?.data[1]?.getMetaData()?.stats | json}} > >

[AngularJS] Help with integrating revealJS inside Angular2

2016-09-06 Thread mike
nt of view: <script> Reveal.initiatlize({ }); Questions: 1. How can I use ng-content for transclustion of the reveal content 2. How do I get reveal to initialize after is ready? Do I need to boot reveal.js using SystemJS Any words of wisdom are welcome. thanks mike -- Y

[AngularJS] angular2: Dynamic Template loading based on URL path or query

2016-09-09 Thread mike
@Component({ selector: 'my-app', templateUrl: '/reports/template/{string-from-incoming-url}/t.jade' }) thanks mike -- You received this message because you are subscribed to the Google Groups "AngularJS" group. To unsubscribe from this group and stop receiving e

[AngularJS] Firefox, .map requests for Angular2 (2.0.1) .. how to stop them?

2016-10-17 Thread mike
setup is essentially the same as the quickstart. thanks so much, mike -- You received this message because you are subscribed to the Google Groups "Angular" group. To unsubscribe from this group and stop receiving emails from it, send an email to angular+unsubscr...@googlegroups.com.

[AngularJS] AngularJS 2 + D3 + linear gradients ... not working

2016-12-07 Thread mike
. thanks mike -- You received this message because you are subscribed to the Google Groups "Angular" group. To unsubscribe from this group and stop receiving emails from it, send an email to angular+unsubscr...@googlegroups.com. To post to this group, send email to angular@googlegroups.

[AngularJS] Simple third-party lib integration into Angular project

2017-11-15 Thread Mike
Hi, I'am new to Angular and little bit stuck with Swiper integration into my project. I've installed swiper module: npm install swiper --save Then I have added paths to ".angular-cli.json" file like this: "styles": [ "../node_modules/materialize-css/dist

[AngularJS] Re: Simple third-party lib integration into Angular project

2017-11-20 Thread Mike
Hi Sander Elias, Thank you for reply. I looked at several guides but still don't get how to implement js part for swiper lib (js initialization) due to the conversion of js stuff to the typescript. I think this guides show same thing what I did (just installing dependencies), this

[AngularJS] Re: Simple third-party lib integration into Angular project

2017-11-20 Thread Mike
import { Component, OnInit } from '@angular/core'; // <-- add OnInit declare const $; // <-- declare const for jQuery $ declare const Swiper; // <-- declare const for Swiper @Component({ selector: 'app-root', templateUrl: './app.component.html', styleUrls: ['./app.component.scss'] }) export class

[AngularJS] Re: Simple third-party lib integration into Angular project

2017-11-21 Thread Mike
I don't know what about you, but solution was pretty simple. Many thanks to Sathish kumar Ramalingam for his video tutorial Short manual how to implement any js/jquery lib into your angular p

[AngularJS] Re: [angular.js] Should directive's isolation scopes affect each other?

2014-01-06 Thread mike . hayes10
+1 On Wednesday, 6 November 2013 05:45:43 UTC, Alex Buchanan wrote: > > Tossing on a +1 here. This is yet another "gotcha" on a long list when it > comes to directives, and left me scratching my head for a bit. In addition, > I think there must be tons of use cases for having many, totally unrel

Re: [AngularJS] Re: What is the difference between module.factory and module.service and how might both be applied?

2014-01-17 Thread Mike Alsup
Well said, Daniel. On Sat, Dec 28, 2013 at 5:01 PM, Daniel Tabuenca wrote: > There’s two notions at play here, one is object-oriented programming > (which javascript handles quite well), the other is a static typing system > (which javascript being a dynamic language doesn’t natively support).

Re: [AngularJS] Angular Js Vs Ember Js

2014-01-17 Thread Mike Alsup
Can your coworker defend his statement and describe how Angular doesn't scale? No, he can't, because Angular can scale quite well. As can Ember. Both are good frameworks. You need to choose the one that fits the philosophy of your team the best. If you're not sure which one that is, then you n

[AngularJS] How do I resolve and assign an inner controller from the outer's scope?

2014-01-18 Thread Mike Chamberlain
Self explanatory fiddle: http://jsfiddle.net/5FG2n/1/ Say I have a view with two controllers, one containing the other. The outer controller is static, but I need to set the inner controller based on a scope variable from the outer. The scope variable will be the inner controller's name as a

[AngularJS] How to prevent circumevent bookmarking at initialization

2014-01-19 Thread Mike Evteev
Hi group! I'm very new to angularjs and js in general, so, please forgive me silly questions. I'm researching a possibility to use angular to write wizard like web application. This application will consists from multiple steps and going to have some sort of server side session storage. I'm lo

Re: [AngularJS] Using JSP files as Angular Views

2014-01-20 Thread Mike Alsup
Yes, views can be JSPs. The client only cares about what is returned, not how. On Mon, Jan 20, 2014 at 2:37 PM, Stephen Rios wrote: > First off, I am an Angular noob, but looking to do a fairly simple > implementation as a Single Page Application by switching out views as the > user navigates

[AngularJS] Re: How to prevent circumevent bookmarking at initialization

2014-01-20 Thread Mike Evteev
bookmarking completely by simply putting angular app in frame, so that everything happens inside of that frame and user always only see url of bootstraping page. Is this something to consider? WBR On Monday, January 20, 2014 2:30:52 AM UTC-5, Sander Elias wrote: > > Hi Mike, > &g

[AngularJS] Re: request method $http.get error

2014-01-21 Thread Mike Gledhill
Have a look at this page. It shows how to get Angular to successfully call GET Web Services. http://better-inter.net/enabling-cors-in-angular-js/ (It was a life-saver for me..!) Mike http://www.mikesknowledgebase.com On Tuesday, May 15, 2012 12:42:36 AM UTC+2, Eduardo Burnay wrote

Re: [AngularJS] One directive invoking another

2014-01-27 Thread Mike Alsup
Use the $compile service to tell angular to recompile part of the DOM. http://docs.angularjs.org/api/ng.$compile On Mon, Jan 27, 2014 at 5:25 PM, Glen Maddern wrote: > Here's a contrived example: > > http://plnkr.co/edit/TmFuVYDjAWxq9YKGpCCf?p=preview > > A directive called ng-attach-click r

Re: [AngularJS] Re: Provider on a different file, not loaded in time.

2014-01-27 Thread Mike Alsup
Is my-provider.js loaded asynchronously? Both scripts need to load before angular bootstraps. On Mon, Jan 27, 2014 at 6:25 PM, Kilian Ciuffolo wrote: > If I reverse the loading order, > > angular > .module('app') > > will end up in an error since 'app' is not allocated yet > > On Monday, Ja

Re: [AngularJS] How modules are loaded automatically?

2014-01-28 Thread Mike Alsup
The statement you included simply declares an Angular module which has a dependency on a dozen other modules. Angular does not handle the loading of scripts, it only facilitates the runtime dependency. It is up to you to ensure that all of the scripts which define the dependencies for your 'app'

[AngularJS] Isolate scopes and inheritance

2014-02-05 Thread Mike Cheel
Given the following why does the directive's $parent.$id equal the controller's $id? I though isolate scopes did not inherit prototypically.: *JS*: var app = angular.module('myApp', []); app.directive('myDirective', function() { return { restrict: 'E', templateUrl: 'my-directive.html'

[AngularJS] Re: Isolate scopes and inheritance

2014-02-05 Thread Mike Cheel
a parent id. What am I missing? On Wednesday, February 5, 2014 11:30:18 AM UTC-5, Sander Elias wrote: > > Hi Mike, > > Can you put up a plunk/fiddle to illustrate what you exactly mean? > Apart from that, the scope.$parent will always give a parent, even in an > isolate scope.

[AngularJS] Re: Isolate scopes and inheritance

2014-02-05 Thread Mike Cheel
09 AM UTC-5, Mike Cheel wrote: > > Thanks for your reply Sander. The $rootScope (002) never has a parent > (undefined) yet when set scope to any value (true, false, or {}) the > $parent.$id is set either to '002' ($rootScope) or the containing scope. I > guess this con

Re: [AngularJS] services with scope < global singleton?

2014-02-06 Thread Mike Alsup
The simplest thing that comes to mind is to use a directive controller in your label directive and to place the input inside the label. .directive('myLabel', function() { return { controller: function(el, attr) { ... } } }); .directive('myInput', functi

Re: [AngularJS] Why would '@' binding need attrs.$observe()?

2014-02-06 Thread Mike Alsup
You need to use $observe to watch DOM attributes who's values contain interpolation. blah attrs.$observe('title', function() { ... }); $watch can not be used for string expressions that contain interpolation. http://ng.malsup.com/#!/$watch-vs-$observe On Fri, Jan 31, 2014 at 9:16 AM, LLo

Re: [AngularJS] Finding a backend to use with angular

2014-02-23 Thread Mike Alsup
As with most JavaScript libs, Angular.js is backend agnostic so you can use whatever backend you're most comfortable with. On Sun, Feb 23, 2014 at 2:04 PM, Jamal Martin wrote: > Hi so I am some what new to angular and to help my self learn more about > it I started a personal project. Now this p

Re: [AngularJS] Re: Directives: resolve, loading, reloading

2014-02-23 Thread Mike Alsup
This sounds like a pretty straight-forward *promise* use-case. Can you post an example or plunkr or what you're trying to do? On Sat, Feb 22, 2014 at 3:38 PM, Куракин Александр wrote: > Hello! Any updates on this? > > > суббота, 15 февраля 2014 г., 16:08:06 UTC+4 пользователь Sander Elias > нап

Re: [AngularJS] Supporting multiple screen resolutions when developing for mobile devices

2014-02-23 Thread Mike Alsup
​> ​ Does it make sense to have a single code base for phone and tablet? ​Y​es, it does. Unless you envision the tablet and phone UX to be radically different, then media queries are the way to go. -- You received this message because you are subscribed to the Google Groups "AngularJS" group.

Re: [AngularJS] XMLHttpRequest cannot load error

2014-02-23 Thread Mike Alsup
Please create a plunkr that exhibits your problem so we can better help you. On Fri, Feb 21, 2014 at 5:11 AM, Ivan Bernabucci wrote: > Hello, I read about this issue many times but i couldn't get any results > even following the suggestions around. I have problems with an application > I'm work

Re: [AngularJS] Re: Data

2014-02-23 Thread Mike Alsup
http://stackoverflow.com/help/how-to-ask On Fri, Feb 21, 2014 at 2:34 AM, Sander Elias wrote: > Hi Sok, > > euhm, windows.document? var global = {}? > angular.module('xxyy',[]).value('global',{})? > > perhaps you can add some context to your question, so we can give an > answer that has value t

[AngularJS] Trying to use ngcloak on filtered text

2014-04-09 Thread Mike Leong
Im trying to cloak some text that is filtered with a i18n filter i have but i read somewhere that ngcloak may have been completed before the filter is done. any suggestions to fix this? -- You received this message because you are subscribed to the Google Groups "AngularJS" group. To u

[AngularJS] Re: Looking For Some Advice

2014-04-09 Thread Mike Leong
Maybe use the service to get all the info once and create another db on the front end (we used Nedb). It seems quick and you can index how you need to. Keeps it to 1 call to backend. On Wednesday, April 9, 2014 6:29:14 AM UTC-7, cutey Love wrote: > > Hi Everyone, > > I'm looking for some adv

[AngularJS] Re: Looking For Some Advice

2014-04-09 Thread Mike Leong
Sorry, didnt read the second post. If it just needs the count, then ping the DB as it could process faster. I thought you needed access to all the info. On Wednesday, April 9, 2014 12:14:17 PM UTC-7, Mike Leong wrote: > > Maybe use the service to get all the info once and create another

[AngularJS] How to Upload exel list to listbox using AngularJS or Ajax

2014-06-23 Thread Andy Mike
How can I upload Excel File List to listbox using either AngularJS or AJAX please any Ideas -- You received this message because you are subscribed to the Google Groups "AngularJS" group. To unsubscribe from this group and stop receiving emails from it, send an email to angular+unsubscr...@go

[AngularJS] Re: ng-grid table height

2014-09-22 Thread Mike Petrovich
I have to point out the irony of requiring the *addition *of a hard-coded hack in order to *disable *such an opinionated feature. Creation of a scroll pane should be an optional add-on feature that's enabled by default, not one you have to hack your way to remove. Have we learned nothing from j

[AngularJS] --- Problem with Controllers ----

2014-10-18 Thread Mike Wassermann
I am using Hottowel, I defined a directive: (function() { 'use strict'; angular .module('app') .directive('directionDirective', directionDirective); directionDirective.$inject = ['$window']; function directionDirective ($window) { // Usage:

[AngularJS] Re: This fiddle does not work with AngularJS 1.01

2014-10-23 Thread Mike Gledhill
(Two years later...) I'm glad I stumbled on this thread. I was also trying to work out why *$sum* wasn't working in my Angular script. And yes, it doesn't seem to exist anymore... Mike On Wednesday, September 5, 2012 12:04:10 PM UTC+2, Dale Lotts wrote: > > HI Everyon

[AngularJS] Re: Master/Detail type example

2014-11-03 Thread Mike Gledhill
customer's orders from a second web service, and get Angular to display the products in each order. Mike On Sunday, August 14, 2011 3:30:59 PM UTC+2, Nolan Dubeau wrote: > > Hi everyone, > > I'm fairly new to angular and this is probably an easy question for the >

[AngularJS] Really need help with this

2014-11-17 Thread Mike Wassermann
When *I envoke *$scope.idLND_UpdateLender_click for a non-biz entity, when it returns I get a prop = (0) error, everytime don't know what to do or the cause. (function () { 'use strict'; var controllerId = 'dashboard'; angular.module('app').controller(controllerId, ['common', 'da

[AngularJS] Having issues with angular.extend($this, {})

2014-11-21 Thread Mike Clarke
Hello, I am just starting out with AngularjS and I have got the following example code: *test.js'use strict';myApp.factory('test', ['$q', function($q) { var $this = function() {angular.extend(this, { one: one

[AngularJS] Re: Having issues with angular.extend($this, {})

2014-11-21 Thread Mike Clarke
function one() { return 'one'; } return $this; }] ); In the controller change: console.log(test.one); To this: console.log(test.one()); And now the codebehaves as expected. Thanks On F

[AngularJS] ----- Help dynanic content ----

2014-12-03 Thread Mike Wassermann
I am trying to make my page dynamic, when check I want my Biz Fileds to display when uncheck I want my Individual fileds to dispaly, but it does not work. Can some one point me in the right direction?  

[AngularJS] wrap cucumber and chai(?) like jasminewd

2015-08-07 Thread Mike Haas
Has anyone thought about what it would take to get the same readability with cucumber testing as what is supported with jasmine? I know with cucumber I can use chai with chai-as-promised but it would be nice to not have to think about that and just know that it works with the control flow. --

[AngularJS] Re: [ANN] AngularJS Training Workshop this August

2015-08-09 Thread Mike Pann
Friends - If anyone of you are looking for AngularJS Training in Chennai <http://www.angularjstraining.in/>, please check out this site on AngularJS Training <http://www.joinfita.com/courses/angular-training-in-chennai/>. Thanks Mike On Sunday, August 4, 2013 at 8:07:33 AM UTC+5:3

[AngularJS] Angular2 change detection from outside of angular

2015-11-17 Thread Mike Loll
be updated. Works fine when I normally type text into the input as one would want to do. But for this workaround, I need to use JS. Thanks. Mike -- You received this message because you are subscribed to the Google Groups "AngularJS" group. To unsubscribe from this group and sto

[AngularJS] PDF download mangled

2015-11-23 Thread Mike Summers
Trying to download a pdf doc from behind a secure REST API with Angular, we wrote this: var _config = { headers : {'Accept' : '*/*'}, responseType : 'arraybuffer' }; var success = function(data, status, header, config) { $log.debug('Download r

[AngularJS] Re: PDF download mangled

2015-11-24 Thread Mike Summers
Thanks Sander. We tried your sample and an empty transformerReponse, no joy. On Monday, November 23, 2015 at 11:09:22 PM UTC-6, Sander Elias wrote: > > Hi Mike, > > > You need to disable the default transformer(s). > Try something like this: > > var _config = {

[AngularJS] ASP.NET oData patchValue received from Angular is nothing

2015-12-02 Thread Mike Feltman
I'm developing an app with an Angular based front-end and an ASP.NET back end using oData and Oracle. I'm at the point where I'm trying to patch records on the back end. I'm using generic boilerplate code on the back end in my controller and the patch method looks like this: Asyn

[AngularJS] AngularJS dropdown binding

2015-12-27 Thread Mike P
I have created a dropdown which is populated correctly and which captures a change in the selected value. However, in my form I have a list of objects (teams) and I want to click on a team in a list and have the dropdown populated with the correct details for that team. I think this is some

[AngularJS] best practice decoupling and passing data between controllers

2016-02-02 Thread Mike Power
I am looking to make a reusable controller and push the data I want to use as the model. Let me explain this using stack overflow as a model. I would implement an analytics dashboard for tags. It would have an outer controller that would have a list of the most common tags Then I want two

[AngularJS] Re: best practice decoupling and passing data between controllers

2016-02-10 Thread Mike Power
te: > > Hi Mike, > > You should move away from controllers and towards components > <https://docs.angularjs.org/guide/component>. Doing that alone, will > solve a couple of issues you have right away. Then for the binding of > tags.names. I assume that's an array. Ins

[AngularJS] IE 11 and $sce support

2016-05-12 Thread Mike Park
Does anyone know how to get a PDF to display in IE 11 using Angular's Strict Contextual Escaping ($sce)? I make the call to trustAsResourceUrl() which works in Firefox and Chrome, but this appears not to work in IE. Does anyone know what the equivalent call to this might be, and if so, how to

[AngularJS] IE 11 and $sce support

2016-05-12 Thread Mike Park
Does anyone know how to get a PDF to display in IE 11 using Angular's Strict Contextual Escaping ($sce)? I make the call to trustAsResourceUrl() which works in Firefox and Chrome, but this appears not to work in IE. Does anyone know what the equivalent call to this might be, and if so, how to

[AngularJS] $sce.trustAsResourceUrl not supported in IE11?

2016-05-16 Thread Mike Park
var blob = new Blob([response], {type: 'application/pdf'}); var blobURL = URL.createObjectURL(blob); $scope.content = $sce.trustAsResourceUrl(blobURL); }); Thanks, Mike -- You received this message because you are subscribed to the Google Groups "AngularJS&qu

[AngularJS] Re: export pdf in angularjs

2016-05-19 Thread Mike Park
You need this first line of code: var blob = new Blob([response], {type: 'application/pdf'}); window.saveAs(blob, "Report.pdf"); On Tuesday, March 17, 2015 at 2:22:03 AM UTC-4, Muhammad Omer wrote: > > Hello all, > > i want to know that how can i export pdf file from angularjs. ive exported

[AngularJS] Urgent Req : Sr DevOps Engineer Reston VA Contract to Hire or Fulltime

2016-08-22 Thread mike agilees
HI, This is MIKE from Agile Enterprise Solutions. This is in reference to the following position. * Please find below job description if you feel comfortable please revert with updated resume, Rate and contact details ASAP * Role: Sr.Devops Engineer Location

[AngularJS] Letting Angular know about code added by third-party libraries

2017-02-02 Thread Mike Calmus
I'm trying to integrate DropzoneJS into my Angular project. I have a component set up and it's mostly ok. I'd like to collect information (a description) of each file added and have that description put into my bound Angular object. I've updated the preview template used by Dropzone to include

[AngularJS] Visual Studio and Angular 2.0

2017-02-11 Thread Mike Kiewicz
I have been looking for an answer to this for a little bit now to no avail. Also, I have asked a similar question on stackoverflow and have gotten crickets. So maybe this is a feature request and not a usability question. We are developing an application in Angular 2.0 and I'm pretty new to P

[AngularJS] Angular 2.0 and Visual Studio

2017-02-11 Thread Mike Kiewicz
I have been looking for an answer to this for a little bit now to no avail. Also, I have asked a similar question on stackoverflow and have gotten crickets. So maybe this is a feature request and not a usability question. We are developing an application in Angular 2.0 and I'm pretty new to P

[AngularJS] md-tabs with angular ui-router not rendering grandchildren

2017-03-14 Thread Mike Feltman
I am using Angular 1.6.2 with Angular Material 1.3 and making fairly heavy use of components. I have an outer "appComponent" that wraps the rest of the app and provides a header toolbar with navigation, a footer and then my top-level app components load within a ui-view inside the app componen

[AngularJS] Re: md-tabs with angular ui-router not rendering grandchildren

2017-03-14 Thread Mike Feltman
On Tuesday, March 14, 2017 at 9:19:23 AM UTC-4, Mike Feltman wrote: > > I am using Angular 1.6.2 with Angular Material 1.3 and making fairly heavy > use of components. I have an outer "appComponent" that wraps the rest of > the

[AngularJS] Re: Letting Angular know about code added by third-party libraries

2017-04-27 Thread Mike Calmus
ox at the bottom. The box appears, but it doesn't work. The label doesn't float and the input isn't applied to a model (I didn't specify a model in the example). On Friday, February 3, 2017 at 12:31:34 AM UTC-5, Sander Elias wrote: > > Hi Mike, > > Probably the

[AngularJS] Re: Angular docs website is broken? (http://docs.angularjs.org/api)

2014-02-06 Thread Mike Stop Continues
Doesn't work on Chrome either. It used to only happen when I restarted the browser with the tab open. Now, all the time. TypeError: Object [object Array] has no method 'apply' at Object.name.(anonymous function) [as $get] (:687:32) at Object.d [as invoke] ( http://ajax.googleapis.com/ajax/libs/