Tagged Questions
0
votes
0answers
8 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
89 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
25 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
17 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
61 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
52 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
26 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
45 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
77 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
33 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
1answer
205 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
40 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
51 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 ...
0
votes
2answers
65 views
ng-repeat with different element types
Is it possible to add different HTML elements types in an ng-repeat?
If I have an array:
['line', 'arc', 'rectangle', 'line', 'polygon', ... ]
These elements will have different SVG tags and ...
0
votes
2answers
45 views
Howto hide Credentials in a pure Javascript HTML Web App
Is there a way to hide credentials, such as password or authentication header tokens from user 's eye in a pure HTML/Javascript app?
The AngularJS App communicates against a rails backend via CORS ...