Use .prop() instead .attr().

This commit is contained in:
Qiang Xue
2013-09-17 21:02:48 -04:00
parent 1aa836ffc7
commit 2db91187db

View File

@@ -47,14 +47,14 @@ yii = (function ($) {
* @return string|undefined the CSRF variable name. Undefined is returned is CSRF validation is not enabled.
*/
getCsrfVar: function() {
return $('meta[name=csrf-var]').attr('content');
return $('meta[name=csrf-var]').prop('content');
},
/**
* @return string|undefined the CSRF token. Undefined is returned is CSRF validation is not enabled.
*/
getCsrfToken: function() {
return $('meta[name=csrf-token]').attr('content');
return $('meta[name=csrf-token]').prop('content');
},
initModule: function (module) {