1
vote
0answers
13 views

Looking for improvement of slide down animation with angular.js

I do have a running code sample (http://jsfiddle.net/Fuunq/) which shows a slide down animation using angular.js (1.2.0). But there are two issues that I don't know how to solve: a) When clicking on ...
0
votes
1answer
51 views

How to start programming something like mohiomap? [on hold]

I'm thinking about creating a mindmap webapp for my own purpouses. I would like to incorporate a layout like they do at https://www.moh.io/mohiomap/welcome.php. Can anybody give me any hints on how ...
-1
votes
1answer
38 views

Angular.js a good idea for a phone app (performance wise)? [on hold]

I'm trying to figure out if Angular would be a suitable choice for an html5 phone app w/ performance in mind and if not, what are some good alternatives? Has anyone built a high performing phone app ...
0
votes
1answer
36 views

How can I write data to and update HTML5 cached web pages while working offline?

In the application I am writing, a user captures information about a person via an online form. When they have completed the form they save their work, repeating this process several times in a ...
0
votes
0answers
43 views

How to make XPages application work Offline with HTML 5

I am trying to make an xPages desktop application work offline, the challenge is how to make all the require resource available offline. i have created the following manifest file and specified the ...
1
vote
0answers
30 views

Html link rewriting angular js

In cases like the following, links are not rewritten; instead, the browser will perform a full page reload to the original link. Links that contain target element Example: <a ...
1
vote
1answer
20 views

How to go to a url which is parent to a url where angular config is defined

let me tell about my app: I m trying to build a webpage using node and angular. on / (root) url i m providing form for sign up and login. i didnt use angular here. after successfully logged in i m ...
0
votes
0answers
33 views

HTML5 progress tag not displaying completion state

I have a simple HTML5 <progress> tag: <progress max="100" value="80"></progress> The bar displays but it is all gray, with no completion status (i.e., 80% of the bar is not blue). ...
-2
votes
0answers
43 views

Which frontend framework/library should I learn to enhance an existing site? [closed]

I have a large site that I've coded by hand over the last couple of years. It's a sports results service, and allows users to view their results, compare themselves to others, buy photographs, that ...
0
votes
1answer
36 views

Angular slash gets encoded

Im having the same issue as this guy: angularjs-slash-after-hashbang-gets-encoded The URL gets encoded an it isn´t routed correctly, it appears to fal to the otherwise in my route config. No luck ...
0
votes
0answers
23 views

Angular $sce blocking my audio blob src

I am trying to use angular ngRepeat with the html5 audio tag. I have the html: <li ng-repeat="recordings in recordinglist"> <audio controls ...
0
votes
0answers
36 views

Custom template fetching with AngularJS

I am reading about AngularJS (but not yet using it) and I cannot seem to find the following information. For example I have <ng-include src="templateName.tpl"></ng-include> I believe ...
0
votes
0answers
38 views

Angular JS carousel not working

I am having issues with the following angular carousel click here my angular controller doesn't seem to be working which is calling out the images.click here for my source code I have pretty followed ...
1
vote
1answer
29 views

One segment route for two different operations

i need to resolve a route of one segment to different behaviors with angular-ui router. For example im doing this by: $stateProvider .state('parent', { url: '/:route' template: ...
0
votes
0answers
15 views

AngularJS $location.path() breaks <audio> element?

I'm having trouble with AngularJS and can't figure out if I'm doing something wrong, or if it's a library bug. I have an element on my page, and I'm changing the MP3 file via JavaScript. This works ...
0
votes
1answer
30 views

Issue with html5Mode in angularjs

I'm trying to remove index.html of the url using html5Mode(true) in angularjs, this is the code: angular.module('myApp', [ 'ngRoute', 'myApp.filters', 'myApp.services', 'myApp.directives', ...
0
votes
1answer
71 views

AngularJS and Windows 8 route error

I'm trying to create a HTML5/JS/CSS3 App with angularJS on Windows 8.1 with visual studio 2012. I'm currently stuck on sending over parameters to other views. When googleing I see several examples ...
2
votes
1answer
93 views

What are the pros and cons of creating custom HTML5 elements/widgets using in Polymer compared to AngularJS

I know it is possible to create custom HTML5 elements/widgets in AngularJS by creating directives. I recently been looking into Polymer. Another framework that makes creating custom elements easy as ...
0
votes
0answers
24 views

Building new mobile app with AngularJS +?

Please advice what I need to choose for my mobile app. I'd like to implement my first app for mobile devise as web application. I'm selected AngularJS as for main JS framework. Question is what I ...
0
votes
0answers
48 views

dynamic load - javascript libraries

I need to separate the javascript libraries from the index.html, I mean, I have many files which contain controllers, directives, services or styles, for example: search.html, searchController.js, ...
0
votes
2answers
44 views

Is there a .data method in AngularJS?

Suppose I write a quiz like this in HTML using the data attribute: <p>The cow ran in front of the <input data-answer="car"></input>.</p> <p>Then the <input ...
0
votes
0answers
40 views

Angular Js: Typeahead

I have an input type which uses angularjs type-ahead.The problem I am facing is that it disappears when I move my mouse over it. I am able to use the arrow keys to select items from the list,but am ...
0
votes
1answer
85 views

Input type=“time” binding of value attribute doesn't update the UI with angular

I have an input tag of type="time" as below <input type='time' id='from' ng-model='data.hall.occupancy.timeRange.from' datify value="{{data.hall.occupancy.timeRange.from | propertime}}"/> the ...
0
votes
0answers
59 views

Cannot type in Internet Explorer (including version 9 and 10)

The input box loses focus on typing anything inside it. Sometimes , when I type with speed, I am able to get one or two character in the text Box. Did anyone else faced this issue and can tell me the ...
0
votes
1answer
38 views

How can I delete a dom instance in Angularjs view?

I'm making a simple mailer interface and I have a setup that looks like ... <tbody ng-controller="sentboxCtrl"> <tr ng-repeat="message in sent"> ...
0
votes
0answers
75 views

AngularJS problems with ng-repeat and animation

I have a problem with animations in a ng-repeat. By changing the data in the collection the animation works fine for all new elements, but not for the existing elements. Even when the values has ...
0
votes
2answers
101 views

Angular.js html5 file upload to grails controller

I would like to have the files that are dropped in this angularjs html5 upload example at JSFiddle: http://jsfiddle.net/danielzen/utp7j/ uploaded to a backend by a grails controller. While trying to ...
0
votes
1answer
47 views

AngularJs With i frame

Can any body tell me why this jsfiddle is not working, i am not able to get value of videoId, If i rmove 'ngRoute' from module then it is working fine. this is the jsfiddle which is not working. ...
0
votes
2answers
73 views

How do I load HTML from a string and have AngularJS bindings work

I have an angular project that will be loading external HTML from a string variable into a div that currently has a controller scoped to it. The HTML that I will be loading from the var will have ...
0
votes
0answers
46 views

the best way to build an uploader mp3 files using angularjs and nodejs?

we are trying understand the best way to build an uploader mp3 files using angularjs and nodejs without plugins like blueimp or any of that kind....pure code the objective is to give the user a form ...
0
votes
0answers
60 views

JS build tool without node

I am a fan of grunt. But unfortunately, we do not have node and hence the ability to access npm packages in our work environment. I have been creating a HTML5 application using AngularJS+Bootstrap ...
0
votes
1answer
65 views

Populate one input field based on other

I am using angular.js in my project. In the template I have : <div class='form-group'> <label>Field 1</label> <input type='text' ng-model='f1' required ...
1
vote
1answer
94 views

How to link to data URL without Firefox adding “unsafe” prefix

I'm trying to create a download link in an angular app that makes data in a model downloadable as a CSV file. I have it all working except for the actual download link. Using filesaver.js is blowing ...
0
votes
0answers
39 views

Angular: add an js file and html breaks

I am trying to reconstruct a ng-app using yeoman. Everytimes I add this js into my index.html the html node (added by an other html view) does not exist. My service js: 'use strict'; ...
1
vote
3answers
42 views

AngularJS ng-models using prototype variables within a repeater

The best way to explain this issue is by example, see here: http://jsfiddle.net/YWVDK/ Javascript String.prototype.status = {active:false} String.prototype.name = 'Testing'; var test = ...
2
votes
1answer
68 views

required attribute with dynamic radio buttons (ng-repeat)

I am getting weird result when using the HTML5 'required" attribute for radio type inputs and Angularjs form validation My input <form name="myForm"> <div ng-repeat="i in [0,1,2]"> ...
2
votes
1answer
215 views

Trying to get simple Google Maps example to work with AngularJS

I'm trying to migrate a simple Google Maps project (literally done from an example on their site) over to an AngularJS project. Let me preface this by saying that I'm new to both AngularJS and web ...
1
vote
0answers
23 views

AngularJS $resource append full webdir path to request

I have the following var API = $resource('/api/:object/:action', { action: '@action', object: '@object' }, save: { method: 'POST'}, ...
0
votes
1answer
303 views

Lightweight-as-possible UI stack for mobile HTML5 dev with Angular

I'm about to build a fairly simple 'energy use issue tracker' HTML5 mobile app (Android/iOS Webkit only) using Angular. I want to avoid frameworks like HTML5Boilerplate, and use as few js libs as ...
1
vote
1answer
113 views

VideoJS player doesn't play on iPad with AngularJS

We recently switched from a straight PHP(Laravel) app to an AngularJS app. I used VideoJS in both instances on an MP4 file. The PHP version worked and now the AngularJS version doesn't. HTML5 gives ...
0
votes
0answers
47 views

Drag and Drop file and folder uploading

I have ran into a problem: I need to allow a website visitor to drag and drop files AND folders, and handle the upload. Since it is supposed to be a image upload, I need to differentiate between those ...
0
votes
2answers
634 views

AngularJS 1.2 cross origin requests are only supported for HTTP

Is there any way to configure Angular app to make it available? Im using a factory. By the way, I'm using localhost as webserver but I'm making a request to other server (same network). ...
2
votes
1answer
192 views

Firefox html5 drag and drop not working

I know there are a lot of similar questions on here, but, when putting them to action, I still resolve in the same problem. I have 2 angular directives (drag and drop) and one angular factory ...
0
votes
1answer
39 views

Is there a library for auto-saving user input (continously)? [closed]

I am using node.js - Angularjs. I want to auto-save content both online (while user remains online) and offline (incase the user unexpectedly disconnects). I can perform the same using ng-change (to ...
1
vote
1answer
137 views

Angular JS game - Creating and destroying sub-controllers with methods

I'm creating an AngularJS and HTML5-based game that consists of users finding and clicking on birds. I want birds to appear at random places on the screen. If you click a bird - or if you wait more ...
-2
votes
2answers
111 views

AngularJS ngView not working when app deployed on server

I am using ngView of angularJS in one of my application. But it works fine on my localsystem but not working on my server.There are various views like HomeScreen,DeviceRegistration etc. When i click ...
0
votes
1answer
43 views

What is the best way to fallback to the html5 input widgets on mobile, and using widget libs on desktops?

I have a application written in Django and my front-end uses AngularJS. I'm making the application responsive; but I have some input widgets that don't play well on mobile screens (ex: datepicker, ...
0
votes
2answers
688 views

How to use ng-grid with ng-tree in angular js?

I am trying to implement a ng-grid along with tree functionality in Angular js. But I am not clear how to add dependency in it. If I am using only tree , its working fine , but when I am adding grid ...
0
votes
0answers
61 views

AngularJS and working with js/css libraries that use hash URLs

I'm using AngularJS with html5 mode on, which is making it difficult for me to use libraries, Ratchet in particular, that are dependent on using hash URLs to show/hide information. Here is an example ...
0
votes
0answers
64 views

angularjs form validation from directive

So basically i want to have a directive class called required that i have on many inputs. So instead of me going through each input adding html5 attribute required So from that class it will add the ...

15 30 50 per page