-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ajusta problema onde o valor preenchido dentro de uma requisição assi…
…ncrona estava sendo perdido.
- Loading branch information
Showing
7 changed files
with
41 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>Sample</title> | ||
</head> | ||
<body ng-app="sample" ng-controller="RootController as controller"> | ||
{{value}} | ||
<input n4-number-input type="text" name="name" value="" ng-model="value"> | ||
</body> | ||
<script type="text/javascript" src="../bower_components/angular/angular.js"></script> | ||
<script type="text/javascript" src="../src/n4numberinput.js"></script> | ||
<script type="text/javascript"> | ||
"use strict"; | ||
|
||
angular.module("sample", ["n4NumberInput"]) | ||
.controller("RootController", function ($rootScope, $timeout) { | ||
$timeout(function () { | ||
$rootScope.value = "21484441000186"; | ||
}); | ||
}); | ||
</script> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters