Commit a882f412 authored by Tristan Cavelier's avatar Tristan Cavelier

davstorage.js "use strict" statement added

parent 7cb308c7
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
* http://www.gnu.org/licenses/lgpl.html * http://www.gnu.org/licenses/lgpl.html
*/ */
/*jslint indent: 2, maxlen: 80, sloppy: true, nomen: true */ /*jslint indent: 2, maxlen: 80, nomen: true */
/*global jIO: true, $: true, btoa: true */ /*global jIO: true, $: true, btoa: true */
// JIO Dav Storage Description : // JIO Dav Storage Description :
...@@ -57,6 +57,7 @@ ...@@ -57,6 +57,7 @@
// The file will be saved as http:%2F%2F100%25_.json // The file will be saved as http:%2F%2F100%25_.json
jIO.addStorageType("dav", function (spec, my) { jIO.addStorageType("dav", function (spec, my) {
"use strict";
var priv = {}, that = my.basicStorage(spec, my), dav = {}; var priv = {}, that = my.basicStorage(spec, my), dav = {};
// ATTRIBUTES // // ATTRIBUTES //
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment