We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a9bccd commit 5ab91a1Copy full SHA for 5ab91a1
gulpfile.js
@@ -11,7 +11,7 @@ const headerComment = require('gulp-header-comment');
11
// Settings for building packages
12
const settings = {
13
name: 'codesy',
14
- version: '0.0.0.8',
+ version: '0.0.0.9',
15
source: './src',
16
destination: './dist',
17
static_files: {
src/home.js
@@ -10,8 +10,10 @@ codesy = {};
10
codesy.storeDomain = function(domain) {
return chrome.storage.local.get(null,
function(data) {
- data.domain = domain || "";
- return chrome.storage.local.set(data);
+ if (data.domain != domain ){
+ data.domain = domain || "";
+ return chrome.storage.local.set(data);
+ }
}
18
);
19
};
0 commit comments