Given a HTML structure similar to this: <body> <div id="one" my-directive></div> <div> <div id="two" my-directive>
I've created a directive to open a modal dialog. Here's the code: [EDIT] JSFIDDLE HERE: http://jsfiddle.net/graphicsxp/fcQZk/8/ PROBLEM: THE CLOSE BUTTON DOE
Frontend noob here, please be nice. I have a dropdown menu using ui.bootstrap.dropdown. The users of my website are used to copy-paste stuff from this dropdown.
I am using angularjs to integrate my apis. I have a grid table and DELETE button in each row. my controller have following code: $scope.singleAppDetails = {}
Hi i have been trying to get into angular.j. I have tried the following code. But the console.log() not seems to be working. Anything am missing?? like angular
I'm trying to assing an input[date] control an initial value in the controller. From AngularJS input[date] documentation, The model must always be a Date objec
Is there way way to use Font Awesome icons inside Angular Bootstrap Tab Headers? http://valor-software.com/ngx-bootstrap/#/tabs I am only seeing a string optio
I use owl-carousel in a project angularjs I try to reinit owl-carousel after data-change with $(element).data('owlCarousel').destroy(); and remove this block:
I have the following code for rounding corners of an image: $scope.startRoundedCorners = function(e) { if ($rootScope.activePanel === 'round') return;
I am using ui-grid (ui-grid.info) with angularjs (angularjs.org) and i am trying to sync the scroll bar of two grid. If the user move the scroll bar on one grid
I'm pretty new in angular. i created a modal window to user share story and after that show it in body: html <button class="btn btn-primary new-story" n
I have worked with MVC on the back-end (Rails), and am currently working with MVC(MV*) on the front-end (Angular). I have seen Angular as considered an MV* pat
guys I did a code for knowing if my checkbox is checked and works fine: HTML: <div ng-app> <div ng-controller="UserController"> <ta
I have a very simple directive which creates a HighCharts graph. I have only included the most important for this question: angular.module('myModule').directiv
Ideally, all 3 methods ought to work. This codepen below shows all 3 methods well. Correct and working CodePen Demo app Currently, neither of the 3 methods
I'm trying to add a Font-Awsome icon to a button I added to tinyMCE thus: ed.addButton('youtube', { title: 'Add Video' , icon: 'icon-youtube',
I am trying to catch backspace press via ngKeypress, ngKeydown and ngKeyup,follwing How can I detect keydown or keypress question. Here is my HTML: <input
I added my custom attribute to my application like this 'use strict'; myApp.directive('orientable', function () { return { restrict: 'A', link: fun
I need to resolve some dependencies (fetching data for my services, etc.) in my app before it loads. I would like to separate these out, so that I have one con
My page has a link that on clicking will download a file. I just need to check if the file has been downloaded and of the correct extension.