This file contains hidden or 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
define(['jquery', 'time2Units'], function($, time2Units) { | |
//将返回的json转化为html片段 | |
function createInnerBoxFragment(data, table) { | |
var innerBoxHTML = ""; | |
$.each(data, function(index, value) { | |
// alert(index); | |
var title = $(value).attr("title"); | |
var img_url = $(value).attr("img_url"); | |
var content = $(value).attr("content"); | |
var from = $(value).attr("from"); |
This file contains hidden or 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
<?xml version="1.0" encoding="utf-8"?> | |
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
package="com.aide.trainer.myapp" | |
android:versionCode="1" | |
android:versionName="1.0" > | |
<uses-sdk | |
android:minSdkVersion="8" | |
android:targetSdkVersion="21" /> |