diff options
author | redmatrix <redmatrix@redmatrix.me> | 2015-05-14 22:01:02 -0700 |
---|---|---|
committer | redmatrix <redmatrix@redmatrix.me> | 2015-05-14 22:01:02 -0700 |
commit | bceef58584a5753482412e7029f59710afe94a20 (patch) | |
tree | 90e6d35708946a3154a18c2b91b6210b8c8202e9 /library/sprintf.js/demo/angular.html | |
parent | 47564d4310da9a494cafcaba2741d6974dfcb9ce (diff) | |
parent | d5803cfd0221cccc2456d72f15f39cf4f891a1da (diff) | |
download | volse-hubzilla-bceef58584a5753482412e7029f59710afe94a20.tar.gz volse-hubzilla-bceef58584a5753482412e7029f59710afe94a20.tar.bz2 volse-hubzilla-bceef58584a5753482412e7029f59710afe94a20.zip |
Merge https://github.com/redmatrix/redmatrix into pending_merge
Diffstat (limited to 'library/sprintf.js/demo/angular.html')
-rw-r--r-- | library/sprintf.js/demo/angular.html | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/library/sprintf.js/demo/angular.html b/library/sprintf.js/demo/angular.html new file mode 100644 index 000000000..3559efd76 --- /dev/null +++ b/library/sprintf.js/demo/angular.html @@ -0,0 +1,20 @@ +<!doctype html> +<html ng-app="app"> +<head> + <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.0-rc.3/angular.min.js"></script> + <script src="../src/sprintf.js"></script> + <script src="../src/angular-sprintf.js"></script> +</head> +<body> + <pre>{{ "%+010d"|sprintf:-123 }}</pre> + <pre>{{ "%+010d"|vsprintf:[-123] }}</pre> + <pre>{{ "%+010d"|fmt:-123 }}</pre> + <pre>{{ "%+010d"|vfmt:[-123] }}</pre> + <pre>{{ "I've got %2$d apples and %1$d oranges."|fmt:4:2 }}</pre> + <pre>{{ "I've got %(apples)d apples and %(oranges)d oranges."|fmt:{apples: 2, oranges: 4} }}</pre> + + <script> + angular.module("app", ["sprintf"]) + </script> +</body> +</html> |