UNPKG
@df-legacy/angular-ladda
Version:
latest (0.3.10)
0.3.10
0.3.9
0.3.8
0.3.7
0.3.6
0.3.5
0.3.4
An angular directive wrapper for Ladda.
github.com/remotty/angular-ladda
remotty/angular-ladda
@df-legacy/angular-ladda
/
test
/
app
/
amd
/
app.js
15 lines
(12 loc)
•
299 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
define([
'angular'
,
'/src/angular-ladda.js'
],
function
(ng)
{
'use strict'
;
return
ng.
module
(
'testApp'
, [
'angular-ladda'
]) .
config
(
function
(laddaProvider)
{ }) .controller(
'TestController'
, [
'$scope'
,
function
($scope)
{ $scope.buttonText =
"ladda button"
; }]); });