closes #459
This commit is contained in:
4
make
4
make
@@ -5,9 +5,9 @@ import os
|
|||||||
|
|
||||||
def cat():
|
def cat():
|
||||||
print("** Combining js files")
|
print("** Combining js files")
|
||||||
cmd = 'ls src/**/*.js | grep -v couchdb | xargs cat > dist/recline.js'
|
cmd = 'ls src/*.js | grep -v couchdb | xargs cat > dist/recline.js'
|
||||||
os.system(cmd)
|
os.system(cmd)
|
||||||
cmd = 'ls src/*.js | grep -v couchdb | xargs cat >> dist/recline.js'
|
cmd = 'ls src/**/*.js | grep -v couchdb | xargs cat >> dist/recline.js'
|
||||||
os.system(cmd)
|
os.system(cmd)
|
||||||
|
|
||||||
cmd = 'cat src/model.js src/backend.memory.js > dist/recline.dataset.js'
|
cmd = 'cat src/model.js src/backend.memory.js > dist/recline.dataset.js'
|
||||||
|
|||||||
6
vendor/common-intl-wmustache.js
vendored
6
vendor/common-intl-wmustache.js
vendored
@@ -3,6 +3,7 @@
|
|||||||
*
|
*
|
||||||
* This code is licensed under GPL v3 http://choosealicense.com/licenses/gpl-3.0/
|
* This code is licensed under GPL v3 http://choosealicense.com/licenses/gpl-3.0/
|
||||||
*/
|
*/
|
||||||
|
(function (global) {
|
||||||
"use strict";
|
"use strict";
|
||||||
var I18nMessages = function(libraryID, translations, languageResolverOrLocale, appHardcodedLocale) {
|
var I18nMessages = function(libraryID, translations, languageResolverOrLocale, appHardcodedLocale) {
|
||||||
if (typeof this === 'undefined') {
|
if (typeof this === 'undefined') {
|
||||||
@@ -118,3 +119,8 @@ I18nMessages.languageResolver = function() {
|
|||||||
var h = $('html');
|
var h = $('html');
|
||||||
return h.attr('lang') || h.attr('xml:lang');
|
return h.attr('lang') || h.attr('xml:lang');
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
global.I18nMessages = I18nMessages;
|
||||||
|
|
||||||
|
}(window));
|
||||||
Reference in New Issue
Block a user