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
0 |
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
(function () { | |
document.addEventListener('DOMContentLoaded', function () { | |
var script = document.createElement("script"); | |
script.text = "window.Silverlight = { isInstalled: function() { return true; }, createObject: function() {}, };"; | |
document.head.appendChild(script); | |
}, false); | |
})(); |
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
<!-- | |
Warning: The stuff below will only work if whatever is in type.name has matching string mappings in your .po files. | |
For instance, if columnTypes is an array in your controller, annotate the strings: | |
http://angular-gettext.rocketeer.be/dev-guide/annotate-js/ | |
--> | |
<select ng-model="column.type" ng-options="type.id as translate(type.name) for type in columnTypes"></select> |
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
grunt.initConfig({ | |
nggettext_extract: { | |
pot: { | |
options: { | |
extensions: { | |
aspx: 'html', | |
js: 'js' | |
} | |
}, | |
files: { |