diff options
| author | Igor Minar | 2011-01-05 23:56:57 -0800 | 
|---|---|---|
| committer | Igor Minar | 2011-01-07 12:02:45 -0800 | 
| commit | bd5ec7c32a59317840121432dcd9700fefde1ffd (patch) | |
| tree | 11b2627155a4eccda4a9cc54fef0dff210c2e2a0 /src/markups.js | |
| parent | bdc251c5a59fe01e43020b8a8f298790ec404353 (diff) | |
| download | angular.js-bd5ec7c32a59317840121432dcd9700fefde1ffd.tar.bz2 | |
rename nodeName due to conflicts with jquery
Diffstat (limited to 'src/markups.js')
| -rw-r--r-- | src/markups.js | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/markups.js b/src/markups.js index 0c96d951..454f22c2 100644 --- a/src/markups.js +++ b/src/markups.js @@ -59,7 +59,7 @@ angularTextMarkup('{{}}', function(text, textNode, parentElement) {  // TODO: this should be widget not a markup  angularTextMarkup('OPTION', function(text, textNode, parentElement){ -  if (nodeName(parentElement) == "OPTION") { +  if (nodeName_(parentElement) == "OPTION") {      var select = document.createElement('select');      select.insertBefore(parentElement[0].cloneNode(true), _null);      if (!select.innerHTML.match(/<option(\s.*\s|\s)value\s*=\s*.*>.*<\/\s*option\s*>/gi)) { | 
