Skip to content

Commit

Permalink
release1
Browse files Browse the repository at this point in the history
release1
  • Loading branch information
KuoKongQingYun committed Jan 6, 2015
1 parent 667db64 commit 141cba1
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 12 deletions.
12 changes: 6 additions & 6 deletions FlashAndShare.xdk
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"projectTypeName": "com.intel.xdk.projecttype.jsapp",
"src": "appDesigner",
"projectGuid": "ed855410-8d0d-4ef1-b3ff-d3c4e4de0b3a",
"lastModifiedDate": 1420430356610,
"lastModifiedDate": 1420532924468,
"creationDate": 1420291580458
},
"XDK-app-designer": "true",
Expand Down Expand Up @@ -82,7 +82,7 @@
"excludedLibraries_": "",
"cordovaCLIVersion_": "3.5",
"crosswalkVersion_": "stable",
"appVersion_": "0.0.1",
"appVersion_": "1.0.0",
"appDescription_": "Take photo and share!",
"appAuthor_": "何婷",
"appVersionCode_": "1"
Expand All @@ -98,7 +98,7 @@
},
"isActive_": true,
"appName_": "FlashAndShare",
"appID_": "xdk.intel.ad.template",
"appID_": "cn.linzhihao.flashandshare.flashandshare",
"appAccess_": "*",
"icons_": [],
"splashes_": [],
Expand All @@ -107,9 +107,9 @@
"excludedLibraries_": "",
"cordovaCLIVersion_": "3.5",
"crosswalkVersion_": "stable",
"appVersion_": "0.0.1",
"appDescription_": "Template to develop a cross-platform mobile app using the App Designer UI editor.",
"appAuthor_": "",
"appVersion_": "1.0.0",
"appDescription_": "Take photo and share!",
"appAuthor_": "何婷",
"appVersionCode_": "1"
},
"iOS": {
Expand Down
2 changes: 1 addition & 1 deletion www/js/index_user_scripts.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
/* button 复制到剪切板 */
$(document).on("click", ".uib_w_6", function(evt)
{
intel.xdk.device.copyToClipboard($["#URL"].html());
intel.xdk.device.copyToClipboard($("#URL").html());
alert("已复制到剪切板");
/* your code goes here */
});
Expand Down
5 changes: 0 additions & 5 deletions www/js/taking_photo_event_handlers.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,9 @@
"use strict";
function upload_success(r) {
$("#URL").html(r.response);
console.log("Code = " + r.responseCode);
console.log("Response = " + r.response);
console.log("Sent = " + r.bytesSent);
}
function upload_fail(error) {
alert("An error has occurred: Code = " + error.code);
console.log("upload error source " + error.source);
console.log("upload error target " + error.target);
}

function onTakingPhoto(event) {
Expand Down

0 comments on commit 141cba1

Please sign in to comment.