Comparing version 0.1.10 to 0.1.11
@@ -5,3 +5,3 @@ { | ||
"description": "Client-side framework for structured applications.", | ||
"version": "0.1.10", | ||
"version": "0.1.11", | ||
"keywords": [ | ||
@@ -8,0 +8,0 @@ "clientside" |
@@ -89,3 +89,3 @@ define([ | ||
// Check application cache | ||
var content = cache.get(ressourcename); | ||
var content = cache.get(ressourceurl); | ||
if (content != null) { callback.resolve(content); return; } | ||
@@ -96,3 +96,3 @@ | ||
Requests.get(ressourceurl).then(function(content) { | ||
cache.set(ressourcename, content); | ||
cache.set(ressourceurl, content); | ||
callback.resolve(content); | ||
@@ -99,0 +99,0 @@ }, function() { |
Sorry, the diff of this file is too big to display
1378439