[AngularJS] angularjs pretty url is not working

2014-07-31 Thread Ashutosh Das
My problem is url is not working without # . Here is my code : angular.module('Hiren', ['ngRoute']).config(function ($routeProvider, $locationProvider) { $routeProvider .when('/', { templateUrl: 'partials/login.html', controller: 'login' }) .

[AngularJS] Simple code is not working

2014-08-03 Thread Ashutosh Das
Here is my simple hello world type code ... Dont know why this code is not working . *index.html :* ** ** * * ** ** * * * * ** * Favourite member of the Juice Crew: {{emcee}}* ** * * ** *book.js:* angular.module('book', []); var MainCtrl = function($scope) { $scope

[AngularJS] simple code is not working

2014-08-03 Thread Ashutosh Das
Here is my simple hello world type code ... Dont know why this code is not working . *index.html :* ** ** * * ** ** * * * * ** * hello: {{world}}* ** * * ** *book.js:* angular.module('book', []); var MainCtrl = function($scope) { $scope.world = 'world'; }; when I

Re: [AngularJS] Re: simple code is not working

2014-08-04 Thread Ashutosh Das
I tried but not worked On Mon, Aug 4, 2014 at 2:28 PM, Prateek Jain wrote: > use latest version of angular, it will work then. > > > On Monday, 4 August 2014 12:17:13 UTC+5:30, Ashutosh Das wrote: >> >> Here is my simple hello world type code ... Dont know why this

[AngularJS] Calling remote url for template

2013-12-24 Thread Ashutosh Das
Actually my templates in remote Url , so Is there any way to call remote url for template ? I just want to use those with $routeProvider -- You received this message because you are subscribed to the Google Groups "AngularJS" group. To unsubscribe from this group and stop receiving emails fr

[AngularJS] Scrolling in Angular partials ?

2014-01-09 Thread Ashutosh Das
Is there any way to add scrolling in specific partial ? I dont want to scroll whole page . Just enable scrolling in specific partial -- 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,

[AngularJS] Send post request from different domain

2014-01-11 Thread Ashutosh Das
How to send data using $http.post from different domain . By default it throws "Access-Control-Allow-Origin" . -- 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 ang

Re: [AngularJS] Re: Send post request from different domain

2014-01-11 Thread Ashutosh Das
ow you need it returned > will dictate which method you use. > > > On Saturday, January 11, 2014 6:22:51 AM UTC-8, Ashutosh Das wrote: >> >> How to send data using $http.post from different domain . By default it >> throws "Access-Control-Allow-Origin" . >&g