Skip to content

Commit e95e641

Browse files
authored
Merge pull request #156 from AlaaN-Smadi/fix/timer
fix(CP): timer period
2 parents 42c0fc0 + c896642 commit e95e641

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

control/content/content.controller.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@
114114
if(firstTimeVisit){
115115
setTimeout(function () {
116116
saveData($scope.data);
117-
}, 500);
117+
}, 300);
118118
}
119119

120120
if (tmrDelay) clearTimeout(tmrDelay);
@@ -187,7 +187,7 @@
187187
}
188188
tmrDelay = setTimeout(function () {
189189
saveData(newObj);
190-
}, 500);
190+
}, 300);
191191
};
192192

193193
var getPluginsIds = function (plugins) {

0 commit comments

Comments
 (0)