/**
* Created by lina on 16/4/11.
*/
require.config(config);
require(["jquery","bootstrap-typeahead","transactionsFundController","addController","modifyController"],function () {
$(function () {
angular.bootstrap($("#content"), [‘TransactionsApp‘]);
$.ajaxSetup ({
cache: false //关闭AJAX相应的缓存
});
$(‘#top‘).load(‘../../frame/view/top.html‘);
$(‘#tree‘).load(‘../../frame/view/tree.html‘);
$(‘.form_datetime‘).datetimepicker({
language: "zh-CN",
format: ‘yyyy-mm-dd‘,
minView:2,
autoclose: true,
pickerPosition: "bottom-left"
});
$("[data-toggle=‘popover‘]").popover();
});
});
时间: 2024-10-24 03:22:32