mirror of https://github.com/apache/archiva.git
use knockout final 2.0.0
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1224631 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
0d068bde61
commit
324cfd1d3c
|
@ -1,4 +1,4 @@
|
|||
// Knockout JavaScript library v2.0.0rc3
|
||||
// Knockout JavaScript library v2.0.0
|
||||
// (c) Steven Sanderson - http://knockoutjs.com/
|
||||
// License: MIT (http://www.opensource.org/licenses/mit-license.php)
|
||||
|
||||
|
@ -316,7 +316,7 @@ ko.utils = new (function () {
|
|||
'innerText' in element ? element.innerText = value
|
||||
: element.textContent = value;
|
||||
|
||||
if (ieVersion) {
|
||||
if (ieVersion >= 9) {
|
||||
// Believe it or not, this actually fixes an IE9 rendering bug. Insane. https://github.com/SteveSanderson/knockout/issues/209
|
||||
element.innerHTML = element.innerHTML;
|
||||
}
|
||||
|
@ -3220,4 +3220,4 @@ ko.exportSymbol('ko.nativeTemplateEngine', ko.nativeTemplateEngine);(function()
|
|||
ko.setTemplateEngine(jqueryTmplTemplateEngineInstance);
|
||||
|
||||
ko.exportSymbol('ko.jqueryTmplTemplateEngine', ko.jqueryTmplTemplateEngine);
|
||||
})();})(window);
|
||||
})();})(window);
|
||||
|
|
Loading…
Reference in New Issue